From a88c1d344c4d5a1339a35f54e59f2f54391bb4ad Mon Sep 17 00:00:00 2001 From: gahusb Date: Sun, 14 Jun 2026 21:23:52 +0900 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=EC=B9=B4=EB=93=9C=20=ED=85=8D?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EA=B0=80=EB=8F=85=EC=84=B1=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/deck/gen-slaydeck.mjs | 31 +- ui/DefaultGroup.ui | 14072 +++++++++++++++++----------------- 2 files changed, 7054 insertions(+), 7049 deletions(-) diff --git a/tools/deck/gen-slaydeck.mjs b/tools/deck/gen-slaydeck.mjs index e034731..5fac7f9 100644 --- a/tools/deck/gen-slaydeck.mjs +++ b/tools/deck/gen-slaydeck.mjs @@ -216,7 +216,8 @@ const HEAD_OFFSET_Y = 1.4; // 몬스터 월드 원점 위로 띄울 높이(머 const HP_BAR_W = 140; const WHITE = { r: 1, g: 1, b: 1, a: 1 }; -const INK = { r: 0.13, g: 0.11, b: 0.09, a: 1 }; // 밝은 배너·설명 박스 위 먹색 글자 +const CARD_NAME_TEXT = { r: 1, g: 0.92, b: 0.62, a: 1 }; +const CARD_DESC_TEXT = { r: 0.98, g: 0.96, b: 0.9, a: 1 }; // 카드 프레임(1054×1492 원본) 슬롯 레이아웃 — 픽셀 실측을 180×250 카드 좌표로 환산한 기준값을 폭 비례 스케일. // 실측(워리어·메이지·밴딧 공통): 육각 중심 (120,127)→(-70,104) · 배너 본체 y55..165, x215..1015→중심 (+15,+107) // · 설명 박스 y~1030..1480→중심 (0,-86) · 아트 영역 y260..1030→중심 (0,+17) @@ -225,9 +226,9 @@ function cardFaceLayout(W) { const r = (v) => Math.round(v * s); return { texts: [ - ['Cost', { size: { x: r(40), y: r(40) }, pos: { x: r(-70), y: r(104) }, fontSize: r(24), bold: true, color: WHITE }], - ['Name', { size: { x: r(132), y: r(24) }, pos: { x: r(15), y: r(107) }, fontSize: r(16), bold: true, color: INK }], - ['Desc', { size: { x: r(150), y: r(62) }, pos: { x: 0, y: r(-86) }, fontSize: r(16), bold: false, color: INK }], + ['Cost', { size: { x: r(40), y: r(40) }, pos: { x: r(-70), y: r(104) }, fontSize: r(24), bold: true, color: WHITE, dropShadow: true, outlineWidth: 2 }], + ['Name', { size: { x: r(142), y: r(28) }, pos: { x: r(15), y: r(106) }, fontSize: r(17), bold: true, color: CARD_NAME_TEXT, dropShadow: true, outlineWidth: 2 }], + ['Desc', { size: { x: r(158), y: r(78) }, pos: { x: 0, y: r(-82) }, fontSize: r(14), bold: true, color: CARD_DESC_TEXT, dropShadow: true, outlineWidth: 2 }], ], art: { size: { x: r(112), y: r(112) }, pos: { x: 0, y: r(17) } }, }; @@ -334,15 +335,15 @@ function button({ enabled = true } = {}) { }; } -function text({ value, fontSize, bold = false, color = { r: 1, g: 1, b: 1, a: 1 }, alignment = 4 }) { +function text({ value, fontSize, bold = false, color = { r: 1, g: 1, b: 1, a: 1 }, alignment = 4, dropShadow = false, outlineWidth = 1 }) { return { '@type': 'MOD.Core.TextComponent', Alignment: alignment, Bold: bold, - DropShadow: false, + DropShadow: dropShadow, DropShadowAngle: 30, DropShadowColor: { r: 0, g: 0, b: 0, a: 0.72 }, - DropShadowDistance: 32, + DropShadowDistance: dropShadow ? 18 : 32, Font: 0, FontColor: color, FontSize: fontSize, @@ -350,7 +351,7 @@ function text({ value, fontSize, bold = false, color = { r: 1, g: 1, b: 1, a: 1 MinSize: 8, OutlineColor: { r: 0.08, g: 0.08, b: 0.08, a: 1 }, OutlineDistance: { x: 1, y: -1 }, - OutlineWidth: 1, + OutlineWidth: outlineWidth, Overflow: 0, OverrideSorting: false, Padding: { left: 0, right: 0, top: 0, bottom: 0 }, @@ -586,7 +587,7 @@ function upsertUi() { components: [ transform({ parentW: CARD_W, parentH: CARD_H, anchor: { x: 0.5, y: 0.5 }, pivot: { x: 0.5, y: 0.5 }, size: cfg.size, pos: cfg.pos }), sprite({ color: TRANSPARENT }), - text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color }), + text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color, dropShadow: cfg.dropShadow, outlineWidth: cfg.outlineWidth }), ], }); ui.ContentProto.Entities.push(child); @@ -608,6 +609,10 @@ function upsertUi() { child.jsonString['@components'][2].FontSize = cfg.fontSize; child.jsonString['@components'][2].MaxSize = cfg.fontSize; child.jsonString['@components'][2].FontColor = cfg.color; + child.jsonString['@components'][2].Bold = cfg.bold; + child.jsonString['@components'][2].DropShadow = cfg.dropShadow === true; + child.jsonString['@components'][2].DropShadowDistance = cfg.dropShadow === true ? 18 : 32; + child.jsonString['@components'][2].OutlineWidth = cfg.outlineWidth || 1; } } @@ -877,7 +882,7 @@ function upsertUi() { components: [ transform({ parentW: INSPECT_CARD_W, parentH: INSPECT_CARD_H, anchor: { x: 0.5, y: 0.5 }, pivot: { x: 0.5, y: 0.5 }, size: cfg.size, pos: cfg.pos }), sprite({ color: TRANSPARENT }), - text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color }), + text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color, dropShadow: cfg.dropShadow, outlineWidth: cfg.outlineWidth }), ], })); } @@ -1032,7 +1037,7 @@ function upsertUi() { components: [ transform({ parentW: ALL_DECK_CARD_W, parentH: ALL_DECK_CARD_H, anchor: { x: 0.5, y: 0.5 }, pivot: { x: 0.5, y: 0.5 }, size: cfg.size, pos: cfg.pos }), sprite({ color: TRANSPARENT }), - text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color }), + text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color, dropShadow: cfg.dropShadow, outlineWidth: cfg.outlineWidth }), ], })); } @@ -1551,7 +1556,7 @@ function upsertUi() { components: [ transform({ parentW: CARD_W, parentH: CARD_H, anchor: { x: 0.5, y: 0.5 }, pivot: { x: 0.5, y: 0.5 }, size: cfg.size, pos: cfg.pos }), sprite({ color: TRANSPARENT }), - text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color }), + text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color, dropShadow: cfg.dropShadow, outlineWidth: cfg.outlineWidth }), ], })); } @@ -1775,7 +1780,7 @@ function upsertUi() { components: [ transform({ parentW: CARD_W, parentH: CARD_H, anchor: { x: 0.5, y: 0.5 }, pivot: { x: 0.5, y: 0.5 }, size: cfg.size, pos: cfg.pos }), sprite({ color: TRANSPARENT }), - text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color }), + text({ value: cfg.value, fontSize: cfg.fontSize, bold: cfg.bold, color: cfg.color, dropShadow: cfg.dropShadow, outlineWidth: cfg.outlineWidth }), ], })); } diff --git a/ui/DefaultGroup.ui b/ui/DefaultGroup.ui index a0a975e..9432b1a 100644 --- a/ui/DefaultGroup.ui +++ b/ui/DefaultGroup.ui @@ -1539,7 +1539,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -1547,7 +1547,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -1568,7 +1568,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -1623,20 +1623,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -1647,7 +1647,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 0, @@ -1727,7 +1727,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -1735,16 +1735,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -1756,7 +1756,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -1811,20 +1811,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -1835,7 +1835,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -1914,8 +1914,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -1923,16 +1923,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -1944,7 +1944,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -2295,7 +2295,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -2303,7 +2303,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -2324,7 +2324,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -2379,20 +2379,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -2403,7 +2403,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 0, @@ -2483,7 +2483,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -2491,16 +2491,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -2512,7 +2512,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -2567,20 +2567,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -2591,7 +2591,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -2670,8 +2670,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -2679,16 +2679,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -2700,7 +2700,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3051,7 +3051,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -3059,7 +3059,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -3080,7 +3080,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3135,20 +3135,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -3159,7 +3159,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 0, @@ -3239,7 +3239,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -3247,16 +3247,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -3268,7 +3268,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3323,20 +3323,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -3347,7 +3347,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -3426,8 +3426,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -3435,16 +3435,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -3456,7 +3456,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3807,7 +3807,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -3815,7 +3815,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -3836,7 +3836,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3891,20 +3891,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -3915,7 +3915,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 0, @@ -3995,7 +3995,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -4003,16 +4003,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -4024,7 +4024,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4079,20 +4079,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -4103,7 +4103,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -4182,8 +4182,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -4191,16 +4191,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.1, @@ -4212,7 +4212,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4563,7 +4563,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -4571,7 +4571,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -4592,7 +4592,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4647,20 +4647,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -4671,7 +4671,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 0, @@ -4751,7 +4751,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -4759,16 +4759,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -4780,7 +4780,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4835,20 +4835,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -4859,7 +4859,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -4938,8 +4938,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -4947,16 +4947,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -4968,7 +4968,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -6024,7 +6024,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -6032,7 +6032,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -6053,7 +6053,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -6108,20 +6108,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -6132,7 +6132,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, @@ -6212,7 +6212,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -6220,16 +6220,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -6241,7 +6241,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -6296,20 +6296,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -6320,7 +6320,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -6399,8 +6399,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -6408,16 +6408,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -6429,7 +6429,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -6921,7 +6921,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -6929,7 +6929,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -6950,7 +6950,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -7005,20 +7005,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -7029,7 +7029,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, @@ -7109,7 +7109,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -7117,16 +7117,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -7138,7 +7138,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -7193,20 +7193,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -7217,7 +7217,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -7296,8 +7296,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -7305,16 +7305,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -7326,7 +7326,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -7818,7 +7818,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -7826,7 +7826,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -7847,7 +7847,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -7902,20 +7902,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -7926,7 +7926,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, @@ -8006,7 +8006,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -8014,16 +8014,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -8035,7 +8035,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8090,20 +8090,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -8114,7 +8114,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -8193,8 +8193,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -8202,16 +8202,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -8223,7 +8223,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8715,7 +8715,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -8723,7 +8723,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -8744,7 +8744,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8799,20 +8799,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -8823,7 +8823,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, @@ -8903,7 +8903,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -8911,16 +8911,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -8932,7 +8932,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8987,20 +8987,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -9011,7 +9011,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -9090,8 +9090,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -9099,16 +9099,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -9120,7 +9120,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -9612,7 +9612,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -9620,7 +9620,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -9641,7 +9641,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -9696,20 +9696,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -9720,7 +9720,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, @@ -9800,7 +9800,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -9808,16 +9808,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -9829,7 +9829,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -9884,20 +9884,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -9908,7 +9908,7 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, @@ -9987,8 +9987,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -9996,16 +9996,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -10017,7 +10017,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -27724,7 +27724,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -27732,7 +27732,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -27753,7 +27753,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -27808,20 +27808,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -27832,11 +27832,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, - "y": 107, + "y": 106, "z": 0 }, "QuaternionRotation": { @@ -27912,7 +27912,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -27920,16 +27920,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -27941,7 +27941,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -27996,20 +27996,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -28020,11 +28020,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, - "y": -86, + "y": -82, "z": 0 }, "QuaternionRotation": { @@ -28099,8 +28099,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -28108,16 +28108,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -28129,7 +28129,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -28621,7 +28621,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -28629,7 +28629,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -28650,7 +28650,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -28705,20 +28705,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -28729,11 +28729,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, - "y": 107, + "y": 106, "z": 0 }, "QuaternionRotation": { @@ -28809,7 +28809,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -28817,16 +28817,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -28838,7 +28838,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -28893,20 +28893,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -28917,11 +28917,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, - "y": -86, + "y": -82, "z": 0 }, "QuaternionRotation": { @@ -28996,8 +28996,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -29005,16 +29005,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -29026,7 +29026,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -29518,7 +29518,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -29526,7 +29526,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -29547,7 +29547,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -29602,20 +29602,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -29626,11 +29626,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, - "y": 107, + "y": 106, "z": 0 }, "QuaternionRotation": { @@ -29706,7 +29706,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -29714,16 +29714,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -29735,7 +29735,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -29790,20 +29790,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -29814,11 +29814,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, - "y": -86, + "y": -82, "z": 0 }, "QuaternionRotation": { @@ -29893,8 +29893,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -29902,16 +29902,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -29923,7 +29923,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -63879,7 +63879,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -63887,7 +63887,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -63908,7 +63908,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -63963,20 +63963,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -63987,11 +63987,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, - "y": 107, + "y": 106, "z": 0 }, "QuaternionRotation": { @@ -64067,7 +64067,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -64075,16 +64075,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -64096,7 +64096,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -64151,20 +64151,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -64175,11 +64175,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, - "y": -86, + "y": -82, "z": 0 }, "QuaternionRotation": { @@ -64254,8 +64254,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -64263,16 +64263,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -64284,7 +64284,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -64964,7 +64964,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -64972,7 +64972,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -64993,7 +64993,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -65048,20 +65048,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -65072,11 +65072,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, - "y": 107, + "y": 106, "z": 0 }, "QuaternionRotation": { @@ -65152,7 +65152,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -65160,16 +65160,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -65181,7 +65181,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -65236,20 +65236,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -65260,11 +65260,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, - "y": -86, + "y": -82, "z": 0 }, "QuaternionRotation": { @@ -65339,8 +65339,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -65348,16 +65348,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -65369,7 +65369,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -66049,7 +66049,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -66057,7 +66057,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -66078,7 +66078,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -66133,20 +66133,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 81, - "y": 119 + "x": 86, + "y": 120 }, "OffsetMin": { - "x": -51, - "y": 95 + "x": -56, + "y": 92 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 24 + "x": 142, + "y": 28 }, "UIMode": 1, "UIScale": { @@ -66157,11 +66157,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 15, - "y": 107 + "y": 106 }, "Position": { "x": 15, - "y": 107, + "y": 106, "z": 0 }, "QuaternionRotation": { @@ -66237,7 +66237,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -66245,16 +66245,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 17, + "MaxSize": 17, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -66266,7 +66266,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -66321,20 +66321,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75, - "y": -55 + "x": 79, + "y": -43 }, "OffsetMin": { - "x": -75, - "y": -117 + "x": -79, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150, - "y": 62 + "x": 158, + "y": 78 }, "UIMode": 1, "UIScale": { @@ -66345,11 +66345,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -86 + "y": -82 }, "Position": { "x": 0, - "y": -86, + "y": -82, "z": 0 }, "QuaternionRotation": { @@ -66424,8 +66424,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -66433,16 +66433,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 16, - "MaxSize": 16, + "FontSize": 14, + "MaxSize": 14, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -66454,7 +66454,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -74820,7 +74820,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -74828,7 +74828,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -74849,7 +74849,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -74906,20 +74906,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -74930,11 +74930,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -75012,7 +75012,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -75020,16 +75020,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -75041,7 +75041,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -75098,20 +75098,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -75122,11 +75122,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -75203,8 +75203,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -75212,16 +75212,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -75233,7 +75233,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -75682,7 +75682,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -75690,7 +75690,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -75711,7 +75711,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -75768,20 +75768,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -75792,11 +75792,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -75874,7 +75874,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -75882,16 +75882,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -75903,7 +75903,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -75960,20 +75960,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -75984,11 +75984,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -76065,8 +76065,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -76074,16 +76074,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -76095,7 +76095,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -76544,7 +76544,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -76552,7 +76552,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -76573,7 +76573,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -76630,20 +76630,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -76654,11 +76654,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -76736,7 +76736,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -76744,16 +76744,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -76765,7 +76765,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -76822,20 +76822,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -76846,11 +76846,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -76927,8 +76927,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -76936,16 +76936,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -76957,7 +76957,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -77406,7 +77406,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -77414,7 +77414,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -77435,7 +77435,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -77492,20 +77492,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -77516,11 +77516,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -77598,7 +77598,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -77606,16 +77606,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -77627,7 +77627,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -77684,20 +77684,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -77708,11 +77708,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -77789,8 +77789,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -77798,16 +77798,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -77819,7 +77819,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -78268,7 +78268,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -78276,7 +78276,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -78297,7 +78297,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -78354,20 +78354,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -78378,11 +78378,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -78460,7 +78460,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -78468,16 +78468,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -78489,7 +78489,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -78546,20 +78546,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -78570,11 +78570,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -78651,8 +78651,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -78660,16 +78660,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -78681,7 +78681,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -79130,7 +79130,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -79138,7 +79138,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -79159,7 +79159,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -79216,20 +79216,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -79240,11 +79240,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -79322,7 +79322,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -79330,16 +79330,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -79351,7 +79351,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -79408,20 +79408,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -79432,11 +79432,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -79513,8 +79513,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -79522,16 +79522,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -79543,7 +79543,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -79992,7 +79992,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -80000,7 +80000,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -80021,7 +80021,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -80078,20 +80078,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -80102,11 +80102,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -80184,7 +80184,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -80192,16 +80192,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -80213,7 +80213,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -80270,20 +80270,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -80294,11 +80294,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -80375,8 +80375,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -80384,16 +80384,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -80405,7 +80405,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -80854,7 +80854,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -80862,7 +80862,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -80883,7 +80883,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -80940,20 +80940,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -80964,11 +80964,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -81046,7 +81046,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -81054,16 +81054,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -81075,7 +81075,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -81132,20 +81132,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -81156,11 +81156,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -81237,8 +81237,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -81246,16 +81246,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -81267,7 +81267,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -81716,7 +81716,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -81724,7 +81724,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -81745,7 +81745,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -81802,20 +81802,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -81826,11 +81826,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -81908,7 +81908,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -81916,16 +81916,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -81937,7 +81937,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -81994,20 +81994,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -82018,11 +82018,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -82099,8 +82099,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -82108,16 +82108,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -82129,7 +82129,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -82578,7 +82578,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -82586,7 +82586,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -82607,7 +82607,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -82664,20 +82664,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -82688,11 +82688,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -82770,7 +82770,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -82778,16 +82778,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -82799,7 +82799,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -82856,20 +82856,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -82880,11 +82880,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -82961,8 +82961,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -82970,16 +82970,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -82991,7 +82991,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -83440,7 +83440,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -83448,7 +83448,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -83469,7 +83469,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -83526,20 +83526,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -83550,11 +83550,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -83632,7 +83632,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -83640,16 +83640,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -83661,7 +83661,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -83718,20 +83718,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -83742,11 +83742,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -83823,8 +83823,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -83832,16 +83832,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -83853,7 +83853,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -84302,7 +84302,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -84310,7 +84310,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -84331,7 +84331,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -84388,20 +84388,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -84412,11 +84412,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -84494,7 +84494,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -84502,16 +84502,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -84523,7 +84523,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -84580,20 +84580,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -84604,11 +84604,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -84685,8 +84685,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -84694,16 +84694,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -84715,7 +84715,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -85164,7 +85164,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -85172,7 +85172,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -85193,7 +85193,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -85250,20 +85250,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -85274,11 +85274,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -85356,7 +85356,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -85364,16 +85364,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -85385,7 +85385,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -85442,20 +85442,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -85466,11 +85466,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -85547,8 +85547,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -85556,16 +85556,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -85577,7 +85577,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -86026,7 +86026,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -86034,7 +86034,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -86055,7 +86055,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -86112,20 +86112,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -86136,11 +86136,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -86218,7 +86218,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -86226,16 +86226,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -86247,7 +86247,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -86304,20 +86304,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -86328,11 +86328,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -86409,8 +86409,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -86418,16 +86418,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -86439,7 +86439,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -86888,7 +86888,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -86896,7 +86896,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -86917,7 +86917,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -86974,20 +86974,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -86998,11 +86998,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -87080,7 +87080,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -87088,16 +87088,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -87109,7 +87109,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -87166,20 +87166,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -87190,11 +87190,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -87271,8 +87271,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -87280,16 +87280,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -87301,7 +87301,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -87750,7 +87750,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -87758,7 +87758,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -87779,7 +87779,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -87836,20 +87836,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -87860,11 +87860,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -87942,7 +87942,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -87950,16 +87950,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -87971,7 +87971,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -88028,20 +88028,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -88052,11 +88052,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -88133,8 +88133,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -88142,16 +88142,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -88163,7 +88163,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -88612,7 +88612,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -88620,7 +88620,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -88641,7 +88641,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -88698,20 +88698,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -88722,11 +88722,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -88804,7 +88804,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -88812,16 +88812,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -88833,7 +88833,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -88890,20 +88890,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -88914,11 +88914,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -88995,8 +88995,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -89004,16 +89004,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -89025,7 +89025,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -89474,7 +89474,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -89482,7 +89482,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -89503,7 +89503,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -89560,20 +89560,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -89584,11 +89584,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -89666,7 +89666,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -89674,16 +89674,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -89695,7 +89695,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -89752,20 +89752,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -89776,11 +89776,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -89857,8 +89857,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -89866,16 +89866,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -89887,7 +89887,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -90336,7 +90336,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -90344,7 +90344,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -90365,7 +90365,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -90422,20 +90422,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -90446,11 +90446,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -90528,7 +90528,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -90536,16 +90536,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -90557,7 +90557,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -90614,20 +90614,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -90638,11 +90638,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -90719,8 +90719,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -90728,16 +90728,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -90749,7 +90749,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -91198,7 +91198,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -91206,7 +91206,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -91227,7 +91227,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -91284,20 +91284,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -91308,11 +91308,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -91390,7 +91390,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -91398,16 +91398,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -91419,7 +91419,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -91476,20 +91476,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -91500,11 +91500,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -91581,8 +91581,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -91590,16 +91590,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -91611,7 +91611,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -92060,7 +92060,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -92068,7 +92068,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -92089,7 +92089,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -92146,20 +92146,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -92170,11 +92170,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -92252,7 +92252,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -92260,16 +92260,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -92281,7 +92281,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -92338,20 +92338,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -92362,11 +92362,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -92443,8 +92443,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -92452,16 +92452,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -92473,7 +92473,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -92922,7 +92922,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -92930,7 +92930,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -92951,7 +92951,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -93008,20 +93008,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -93032,11 +93032,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -93114,7 +93114,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -93122,16 +93122,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -93143,7 +93143,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -93200,20 +93200,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -93224,11 +93224,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -93305,8 +93305,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -93314,16 +93314,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -93335,7 +93335,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -93784,7 +93784,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -93792,7 +93792,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -93813,7 +93813,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -93870,20 +93870,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -93894,11 +93894,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -93976,7 +93976,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -93984,16 +93984,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -94005,7 +94005,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -94062,20 +94062,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -94086,11 +94086,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -94167,8 +94167,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -94176,16 +94176,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -94197,7 +94197,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -94646,7 +94646,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -94654,7 +94654,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -94675,7 +94675,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -94732,20 +94732,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -94756,11 +94756,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -94838,7 +94838,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -94846,16 +94846,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -94867,7 +94867,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -94924,20 +94924,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -94948,11 +94948,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -95029,8 +95029,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -95038,16 +95038,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -95059,7 +95059,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -95508,7 +95508,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -95516,7 +95516,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -95537,7 +95537,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -95594,20 +95594,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -95618,11 +95618,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -95700,7 +95700,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -95708,16 +95708,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -95729,7 +95729,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -95786,20 +95786,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -95810,11 +95810,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -95891,8 +95891,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -95900,16 +95900,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -95921,7 +95921,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -96370,7 +96370,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -96378,7 +96378,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -96399,7 +96399,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -96456,20 +96456,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -96480,11 +96480,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -96562,7 +96562,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -96570,16 +96570,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -96591,7 +96591,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -96648,20 +96648,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -96672,11 +96672,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -96753,8 +96753,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -96762,16 +96762,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -96783,7 +96783,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -97232,7 +97232,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -97240,7 +97240,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -97261,7 +97261,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -97318,20 +97318,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -97342,11 +97342,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -97424,7 +97424,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -97432,16 +97432,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -97453,7 +97453,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -97510,20 +97510,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -97534,11 +97534,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -97615,8 +97615,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -97624,16 +97624,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -97645,7 +97645,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -98094,7 +98094,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -98102,7 +98102,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -98123,7 +98123,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -98180,20 +98180,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -98204,11 +98204,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -98286,7 +98286,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -98294,16 +98294,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -98315,7 +98315,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -98372,20 +98372,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -98396,11 +98396,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -98477,8 +98477,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -98486,16 +98486,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -98507,7 +98507,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -98956,7 +98956,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -98964,7 +98964,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -98985,7 +98985,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -99042,20 +99042,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -99066,11 +99066,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -99148,7 +99148,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -99156,16 +99156,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -99177,7 +99177,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -99234,20 +99234,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -99258,11 +99258,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -99339,8 +99339,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -99348,16 +99348,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -99369,7 +99369,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -99818,7 +99818,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -99826,7 +99826,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -99847,7 +99847,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -99904,20 +99904,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -99928,11 +99928,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -100010,7 +100010,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -100018,16 +100018,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -100039,7 +100039,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -100096,20 +100096,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -100120,11 +100120,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -100201,8 +100201,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -100210,16 +100210,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -100231,7 +100231,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -100680,7 +100680,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -100688,7 +100688,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -100709,7 +100709,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -100766,20 +100766,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -100790,11 +100790,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -100872,7 +100872,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -100880,16 +100880,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -100901,7 +100901,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -100958,20 +100958,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -100982,11 +100982,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -101063,8 +101063,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -101072,16 +101072,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -101093,7 +101093,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -101542,7 +101542,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -101550,7 +101550,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -101571,7 +101571,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -101628,20 +101628,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -101652,11 +101652,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -101734,7 +101734,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -101742,16 +101742,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -101763,7 +101763,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -101820,20 +101820,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -101844,11 +101844,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -101925,8 +101925,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -101934,16 +101934,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -101955,7 +101955,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -102404,7 +102404,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -102412,7 +102412,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -102433,7 +102433,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -102490,20 +102490,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -102514,11 +102514,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -102596,7 +102596,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -102604,16 +102604,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -102625,7 +102625,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -102682,20 +102682,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -102706,11 +102706,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -102787,8 +102787,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -102796,16 +102796,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -102817,7 +102817,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -103266,7 +103266,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -103274,7 +103274,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -103295,7 +103295,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -103352,20 +103352,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -103376,11 +103376,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -103458,7 +103458,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -103466,16 +103466,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -103487,7 +103487,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -103544,20 +103544,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -103568,11 +103568,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -103649,8 +103649,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -103658,16 +103658,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -103679,7 +103679,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -104128,7 +104128,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -104136,7 +104136,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -104157,7 +104157,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -104214,20 +104214,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -104238,11 +104238,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -104320,7 +104320,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -104328,16 +104328,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -104349,7 +104349,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -104406,20 +104406,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -104430,11 +104430,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -104511,8 +104511,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -104520,16 +104520,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -104541,7 +104541,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -104990,7 +104990,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -104998,7 +104998,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -105019,7 +105019,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -105076,20 +105076,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -105100,11 +105100,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -105182,7 +105182,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -105190,16 +105190,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -105211,7 +105211,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -105268,20 +105268,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -105292,11 +105292,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -105373,8 +105373,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -105382,16 +105382,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -105403,7 +105403,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -105852,7 +105852,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -105860,7 +105860,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -105881,7 +105881,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -105938,20 +105938,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -105962,11 +105962,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -106044,7 +106044,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -106052,16 +106052,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -106073,7 +106073,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -106130,20 +106130,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -106154,11 +106154,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -106235,8 +106235,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -106244,16 +106244,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -106265,7 +106265,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -106714,7 +106714,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -106722,7 +106722,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -106743,7 +106743,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -106800,20 +106800,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -106824,11 +106824,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -106906,7 +106906,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -106914,16 +106914,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -106935,7 +106935,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -106992,20 +106992,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -107016,11 +107016,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -107097,8 +107097,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -107106,16 +107106,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -107127,7 +107127,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -107576,7 +107576,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -107584,7 +107584,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -107605,7 +107605,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -107662,20 +107662,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -107686,11 +107686,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -107768,7 +107768,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -107776,16 +107776,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -107797,7 +107797,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -107854,20 +107854,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -107878,11 +107878,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -107959,8 +107959,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -107968,16 +107968,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -107989,7 +107989,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -108438,7 +108438,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -108446,7 +108446,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -108467,7 +108467,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -108524,20 +108524,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -108548,11 +108548,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -108630,7 +108630,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -108638,16 +108638,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -108659,7 +108659,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -108716,20 +108716,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -108740,11 +108740,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -108821,8 +108821,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -108830,16 +108830,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -108851,7 +108851,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -109300,7 +109300,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -109308,7 +109308,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -109329,7 +109329,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -109386,20 +109386,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -109410,11 +109410,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -109492,7 +109492,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -109500,16 +109500,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -109521,7 +109521,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -109578,20 +109578,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -109602,11 +109602,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -109683,8 +109683,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -109692,16 +109692,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -109713,7 +109713,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -110162,7 +110162,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -110170,7 +110170,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -110191,7 +110191,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -110248,20 +110248,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -110272,11 +110272,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -110354,7 +110354,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -110362,16 +110362,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -110383,7 +110383,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -110440,20 +110440,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -110464,11 +110464,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -110545,8 +110545,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -110554,16 +110554,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -110575,7 +110575,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -111024,7 +111024,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -111032,7 +111032,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -111053,7 +111053,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -111110,20 +111110,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -111134,11 +111134,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -111216,7 +111216,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -111224,16 +111224,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -111245,7 +111245,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -111302,20 +111302,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -111326,11 +111326,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -111407,8 +111407,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -111416,16 +111416,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -111437,7 +111437,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -111886,7 +111886,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -111894,7 +111894,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -111915,7 +111915,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -111972,20 +111972,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -111996,11 +111996,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -112078,7 +112078,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -112086,16 +112086,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -112107,7 +112107,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -112164,20 +112164,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -112188,11 +112188,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -112269,8 +112269,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -112278,16 +112278,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -112299,7 +112299,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -112748,7 +112748,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -112756,7 +112756,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -112777,7 +112777,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -112834,20 +112834,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -112858,11 +112858,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -112940,7 +112940,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -112948,16 +112948,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -112969,7 +112969,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -113026,20 +113026,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -113050,11 +113050,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -113131,8 +113131,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -113140,16 +113140,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -113161,7 +113161,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -113610,7 +113610,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -113618,7 +113618,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -113639,7 +113639,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -113696,20 +113696,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -113720,11 +113720,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -113802,7 +113802,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -113810,16 +113810,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -113831,7 +113831,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -113888,20 +113888,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -113912,11 +113912,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -113993,8 +113993,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -114002,16 +114002,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -114023,7 +114023,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -114472,7 +114472,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -114480,7 +114480,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -114501,7 +114501,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -114558,20 +114558,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -114582,11 +114582,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -114664,7 +114664,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -114672,16 +114672,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -114693,7 +114693,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -114750,20 +114750,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -114774,11 +114774,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -114855,8 +114855,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -114864,16 +114864,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -114885,7 +114885,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -115334,7 +115334,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -115342,7 +115342,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -115363,7 +115363,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -115420,20 +115420,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -115444,11 +115444,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -115526,7 +115526,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -115534,16 +115534,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -115555,7 +115555,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -115612,20 +115612,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -115636,11 +115636,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -115717,8 +115717,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -115726,16 +115726,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -115747,7 +115747,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -116196,7 +116196,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -116204,7 +116204,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -116225,7 +116225,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -116282,20 +116282,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -116306,11 +116306,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -116388,7 +116388,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -116396,16 +116396,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -116417,7 +116417,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -116474,20 +116474,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -116498,11 +116498,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -116579,8 +116579,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -116588,16 +116588,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -116609,7 +116609,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -117058,7 +117058,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -117066,7 +117066,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -117087,7 +117087,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -117144,20 +117144,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -117168,11 +117168,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -117250,7 +117250,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -117258,16 +117258,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -117279,7 +117279,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -117336,20 +117336,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -117360,11 +117360,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -117441,8 +117441,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -117450,16 +117450,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -117471,7 +117471,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -117920,7 +117920,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -117928,7 +117928,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -117949,7 +117949,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -118006,20 +118006,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -118030,11 +118030,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -118112,7 +118112,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -118120,16 +118120,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -118141,7 +118141,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -118198,20 +118198,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -118222,11 +118222,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -118303,8 +118303,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -118312,16 +118312,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -118333,7 +118333,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -118782,7 +118782,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -118790,7 +118790,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -118811,7 +118811,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -118868,20 +118868,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -118892,11 +118892,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -118974,7 +118974,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -118982,16 +118982,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -119003,7 +119003,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -119060,20 +119060,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -119084,11 +119084,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -119165,8 +119165,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -119174,16 +119174,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -119195,7 +119195,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -119644,7 +119644,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -119652,7 +119652,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -119673,7 +119673,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -119730,20 +119730,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -119754,11 +119754,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -119836,7 +119836,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -119844,16 +119844,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -119865,7 +119865,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -119922,20 +119922,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -119946,11 +119946,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -120027,8 +120027,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -120036,16 +120036,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -120057,7 +120057,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -120506,7 +120506,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -120514,7 +120514,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -120535,7 +120535,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -120592,20 +120592,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -120616,11 +120616,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -120698,7 +120698,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -120706,16 +120706,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -120727,7 +120727,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -120784,20 +120784,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -120808,11 +120808,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -120889,8 +120889,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -120898,16 +120898,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -120919,7 +120919,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -121368,7 +121368,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -121376,7 +121376,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -121397,7 +121397,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -121454,20 +121454,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -121478,11 +121478,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -121560,7 +121560,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -121568,16 +121568,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -121589,7 +121589,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -121646,20 +121646,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -121670,11 +121670,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -121751,8 +121751,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -121760,16 +121760,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -121781,7 +121781,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -122230,7 +122230,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -122238,7 +122238,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -122259,7 +122259,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -122316,20 +122316,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -122340,11 +122340,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -122422,7 +122422,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -122430,16 +122430,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -122451,7 +122451,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -122508,20 +122508,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -122532,11 +122532,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -122613,8 +122613,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -122622,16 +122622,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -122643,7 +122643,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -123092,7 +123092,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -123100,7 +123100,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -123121,7 +123121,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -123178,20 +123178,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -123202,11 +123202,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -123284,7 +123284,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -123292,16 +123292,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -123313,7 +123313,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -123370,20 +123370,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -123394,11 +123394,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -123475,8 +123475,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -123484,16 +123484,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -123505,7 +123505,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -123954,7 +123954,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -123962,7 +123962,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -123983,7 +123983,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -124040,20 +124040,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -124064,11 +124064,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -124146,7 +124146,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -124154,16 +124154,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -124175,7 +124175,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -124232,20 +124232,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -124256,11 +124256,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -124337,8 +124337,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -124346,16 +124346,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -124367,7 +124367,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -124816,7 +124816,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -124824,7 +124824,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -124845,7 +124845,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -124902,20 +124902,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -124926,11 +124926,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -125008,7 +125008,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -125016,16 +125016,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -125037,7 +125037,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -125094,20 +125094,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -125118,11 +125118,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -125199,8 +125199,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -125208,16 +125208,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -125229,7 +125229,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -125678,7 +125678,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -125686,7 +125686,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -125707,7 +125707,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -125764,20 +125764,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -125788,11 +125788,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -125870,7 +125870,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -125878,16 +125878,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -125899,7 +125899,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -125956,20 +125956,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -125980,11 +125980,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -126061,8 +126061,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -126070,16 +126070,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -126091,7 +126091,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -128363,7 +128363,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -128371,7 +128371,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -128392,7 +128392,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -128449,20 +128449,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -128473,11 +128473,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -128555,7 +128555,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -128563,16 +128563,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -128584,7 +128584,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -128641,20 +128641,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -128665,11 +128665,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -128746,8 +128746,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -128755,16 +128755,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -128776,7 +128776,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -129225,7 +129225,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -129233,7 +129233,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -129254,7 +129254,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -129311,20 +129311,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -129335,11 +129335,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -129417,7 +129417,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -129425,16 +129425,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -129446,7 +129446,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -129503,20 +129503,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -129527,11 +129527,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -129608,8 +129608,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -129617,16 +129617,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -129638,7 +129638,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -130087,7 +130087,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -130095,7 +130095,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -130116,7 +130116,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -130173,20 +130173,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -130197,11 +130197,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -130279,7 +130279,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -130287,16 +130287,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -130308,7 +130308,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -130365,20 +130365,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -130389,11 +130389,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -130470,8 +130470,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -130479,16 +130479,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -130500,7 +130500,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -130949,7 +130949,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -130957,7 +130957,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -130978,7 +130978,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -131035,20 +131035,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -131059,11 +131059,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -131141,7 +131141,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -131149,16 +131149,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -131170,7 +131170,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -131227,20 +131227,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -131251,11 +131251,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -131332,8 +131332,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -131341,16 +131341,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -131362,7 +131362,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -131811,7 +131811,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -131819,7 +131819,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -131840,7 +131840,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -131897,20 +131897,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -131921,11 +131921,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -132003,7 +132003,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -132011,16 +132011,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -132032,7 +132032,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -132089,20 +132089,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -132113,11 +132113,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -132194,8 +132194,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -132203,16 +132203,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -132224,7 +132224,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -132673,7 +132673,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -132681,7 +132681,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -132702,7 +132702,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -132759,20 +132759,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -132783,11 +132783,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -132865,7 +132865,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -132873,16 +132873,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -132894,7 +132894,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -132951,20 +132951,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -132975,11 +132975,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -133056,8 +133056,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -133065,16 +133065,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -133086,7 +133086,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -133535,7 +133535,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -133543,7 +133543,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -133564,7 +133564,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -133621,20 +133621,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -133645,11 +133645,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -133727,7 +133727,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -133735,16 +133735,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -133756,7 +133756,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -133813,20 +133813,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -133837,11 +133837,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -133918,8 +133918,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -133927,16 +133927,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -133948,7 +133948,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -134397,7 +134397,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -134405,7 +134405,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -134426,7 +134426,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -134483,20 +134483,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -134507,11 +134507,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -134589,7 +134589,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -134597,16 +134597,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -134618,7 +134618,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -134675,20 +134675,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -134699,11 +134699,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -134780,8 +134780,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -134789,16 +134789,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -134810,7 +134810,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -135259,7 +135259,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -135267,7 +135267,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -135288,7 +135288,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -135345,20 +135345,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -135369,11 +135369,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -135451,7 +135451,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -135459,16 +135459,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -135480,7 +135480,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -135537,20 +135537,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -135561,11 +135561,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -135642,8 +135642,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -135651,16 +135651,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -135672,7 +135672,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -136121,7 +136121,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -136129,7 +136129,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -136150,7 +136150,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -136207,20 +136207,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -136231,11 +136231,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -136313,7 +136313,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -136321,16 +136321,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -136342,7 +136342,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -136399,20 +136399,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -136423,11 +136423,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -136504,8 +136504,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -136513,16 +136513,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -136534,7 +136534,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -136983,7 +136983,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -136991,7 +136991,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -137012,7 +137012,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -137069,20 +137069,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -137093,11 +137093,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -137175,7 +137175,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -137183,16 +137183,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -137204,7 +137204,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -137261,20 +137261,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -137285,11 +137285,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -137366,8 +137366,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -137375,16 +137375,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -137396,7 +137396,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -137845,7 +137845,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -137853,7 +137853,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -137874,7 +137874,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -137931,20 +137931,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -137955,11 +137955,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -138037,7 +138037,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -138045,16 +138045,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -138066,7 +138066,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -138123,20 +138123,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -138147,11 +138147,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -138228,8 +138228,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -138237,16 +138237,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -138258,7 +138258,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -138707,7 +138707,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -138715,7 +138715,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -138736,7 +138736,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -138793,20 +138793,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -138817,11 +138817,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -138899,7 +138899,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -138907,16 +138907,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -138928,7 +138928,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -138985,20 +138985,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -139009,11 +139009,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -139090,8 +139090,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -139099,16 +139099,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -139120,7 +139120,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -139569,7 +139569,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -139577,7 +139577,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -139598,7 +139598,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -139655,20 +139655,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -139679,11 +139679,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -139761,7 +139761,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -139769,16 +139769,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -139790,7 +139790,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -139847,20 +139847,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -139871,11 +139871,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -139952,8 +139952,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -139961,16 +139961,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -139982,7 +139982,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -140431,7 +140431,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -140439,7 +140439,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -140460,7 +140460,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -140517,20 +140517,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -140541,11 +140541,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -140623,7 +140623,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -140631,16 +140631,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -140652,7 +140652,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -140709,20 +140709,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -140733,11 +140733,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -140814,8 +140814,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -140823,16 +140823,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -140844,7 +140844,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -141293,7 +141293,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -141301,7 +141301,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -141322,7 +141322,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -141379,20 +141379,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -141403,11 +141403,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -141485,7 +141485,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -141493,16 +141493,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -141514,7 +141514,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -141571,20 +141571,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -141595,11 +141595,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -141676,8 +141676,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -141685,16 +141685,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -141706,7 +141706,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -142155,7 +142155,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -142163,7 +142163,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -142184,7 +142184,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -142241,20 +142241,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -142265,11 +142265,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -142347,7 +142347,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -142355,16 +142355,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -142376,7 +142376,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -142433,20 +142433,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -142457,11 +142457,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -142538,8 +142538,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -142547,16 +142547,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -142568,7 +142568,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -143017,7 +143017,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -143025,7 +143025,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -143046,7 +143046,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -143103,20 +143103,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -143127,11 +143127,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -143209,7 +143209,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -143217,16 +143217,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -143238,7 +143238,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -143295,20 +143295,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -143319,11 +143319,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -143400,8 +143400,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -143409,16 +143409,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -143430,7 +143430,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -143879,7 +143879,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -143887,7 +143887,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -143908,7 +143908,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -143965,20 +143965,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -143989,11 +143989,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -144071,7 +144071,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -144079,16 +144079,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -144100,7 +144100,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -144157,20 +144157,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -144181,11 +144181,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -144262,8 +144262,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -144271,16 +144271,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -144292,7 +144292,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -144741,7 +144741,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -144749,7 +144749,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -144770,7 +144770,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -144827,20 +144827,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -144851,11 +144851,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -144933,7 +144933,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -144941,16 +144941,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -144962,7 +144962,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -145019,20 +145019,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -145043,11 +145043,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -145124,8 +145124,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -145133,16 +145133,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -145154,7 +145154,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -145603,7 +145603,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -145611,7 +145611,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -145632,7 +145632,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -145689,20 +145689,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -145713,11 +145713,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -145795,7 +145795,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -145803,16 +145803,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -145824,7 +145824,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -145881,20 +145881,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -145905,11 +145905,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -145986,8 +145986,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -145995,16 +145995,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -146016,7 +146016,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -146465,7 +146465,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -146473,7 +146473,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -146494,7 +146494,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -146551,20 +146551,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -146575,11 +146575,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -146657,7 +146657,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -146665,16 +146665,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -146686,7 +146686,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -146743,20 +146743,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -146767,11 +146767,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -146848,8 +146848,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -146857,16 +146857,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -146878,7 +146878,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -147327,7 +147327,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -147335,7 +147335,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -147356,7 +147356,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -147413,20 +147413,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -147437,11 +147437,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -147519,7 +147519,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -147527,16 +147527,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -147548,7 +147548,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -147605,20 +147605,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -147629,11 +147629,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -147710,8 +147710,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -147719,16 +147719,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -147740,7 +147740,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -148189,7 +148189,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -148197,7 +148197,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -148218,7 +148218,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -148275,20 +148275,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -148299,11 +148299,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -148381,7 +148381,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -148389,16 +148389,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -148410,7 +148410,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -148467,20 +148467,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -148491,11 +148491,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -148572,8 +148572,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -148581,16 +148581,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -148602,7 +148602,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -149051,7 +149051,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -149059,7 +149059,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -149080,7 +149080,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -149137,20 +149137,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -149161,11 +149161,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -149243,7 +149243,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -149251,16 +149251,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -149272,7 +149272,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -149329,20 +149329,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -149353,11 +149353,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -149434,8 +149434,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -149443,16 +149443,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -149464,7 +149464,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -149913,7 +149913,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -149921,7 +149921,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -149942,7 +149942,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -149999,20 +149999,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -150023,11 +150023,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -150105,7 +150105,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -150113,16 +150113,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -150134,7 +150134,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -150191,20 +150191,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -150215,11 +150215,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -150296,8 +150296,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -150305,16 +150305,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -150326,7 +150326,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -150775,7 +150775,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -150783,7 +150783,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -150804,7 +150804,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -150861,20 +150861,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -150885,11 +150885,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -150967,7 +150967,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -150975,16 +150975,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -150996,7 +150996,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -151053,20 +151053,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -151077,11 +151077,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -151158,8 +151158,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -151167,16 +151167,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -151188,7 +151188,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -151637,7 +151637,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -151645,7 +151645,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -151666,7 +151666,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -151723,20 +151723,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -151747,11 +151747,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -151829,7 +151829,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -151837,16 +151837,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -151858,7 +151858,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -151915,20 +151915,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -151939,11 +151939,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -152020,8 +152020,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -152029,16 +152029,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -152050,7 +152050,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -152499,7 +152499,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -152507,7 +152507,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -152528,7 +152528,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -152585,20 +152585,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -152609,11 +152609,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -152691,7 +152691,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -152699,16 +152699,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -152720,7 +152720,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -152777,20 +152777,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -152801,11 +152801,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -152882,8 +152882,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -152891,16 +152891,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -152912,7 +152912,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -153361,7 +153361,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -153369,7 +153369,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -153390,7 +153390,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -153447,20 +153447,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -153471,11 +153471,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -153553,7 +153553,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -153561,16 +153561,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -153582,7 +153582,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -153639,20 +153639,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -153663,11 +153663,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -153744,8 +153744,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -153753,16 +153753,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -153774,7 +153774,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -154223,7 +154223,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -154231,7 +154231,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -154252,7 +154252,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -154309,20 +154309,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -154333,11 +154333,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -154415,7 +154415,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -154423,16 +154423,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -154444,7 +154444,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -154501,20 +154501,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -154525,11 +154525,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -154606,8 +154606,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -154615,16 +154615,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -154636,7 +154636,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -155085,7 +155085,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -155093,7 +155093,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -155114,7 +155114,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -155171,20 +155171,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -155195,11 +155195,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -155277,7 +155277,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -155285,16 +155285,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -155306,7 +155306,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -155363,20 +155363,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -155387,11 +155387,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -155468,8 +155468,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -155477,16 +155477,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -155498,7 +155498,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -155947,7 +155947,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -155955,7 +155955,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -155976,7 +155976,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -156033,20 +156033,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -156057,11 +156057,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -156139,7 +156139,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -156147,16 +156147,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -156168,7 +156168,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -156225,20 +156225,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -156249,11 +156249,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -156330,8 +156330,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -156339,16 +156339,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -156360,7 +156360,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -156809,7 +156809,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -156817,7 +156817,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -156838,7 +156838,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -156895,20 +156895,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -156919,11 +156919,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -157001,7 +157001,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -157009,16 +157009,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -157030,7 +157030,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -157087,20 +157087,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -157111,11 +157111,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -157192,8 +157192,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -157201,16 +157201,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -157222,7 +157222,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -157671,7 +157671,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -157679,7 +157679,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -157700,7 +157700,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -157757,20 +157757,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -157781,11 +157781,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -157863,7 +157863,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -157871,16 +157871,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -157892,7 +157892,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -157949,20 +157949,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -157973,11 +157973,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -158054,8 +158054,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -158063,16 +158063,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -158084,7 +158084,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -158533,7 +158533,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -158541,7 +158541,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -158562,7 +158562,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -158619,20 +158619,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -158643,11 +158643,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -158725,7 +158725,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -158733,16 +158733,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -158754,7 +158754,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -158811,20 +158811,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -158835,11 +158835,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -158916,8 +158916,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -158925,16 +158925,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -158946,7 +158946,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -159395,7 +159395,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -159403,7 +159403,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -159424,7 +159424,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -159481,20 +159481,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -159505,11 +159505,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -159587,7 +159587,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -159595,16 +159595,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -159616,7 +159616,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -159673,20 +159673,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -159697,11 +159697,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -159778,8 +159778,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -159787,16 +159787,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -159808,7 +159808,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -160257,7 +160257,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -160265,7 +160265,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -160286,7 +160286,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -160343,20 +160343,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -160367,11 +160367,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -160449,7 +160449,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -160457,16 +160457,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -160478,7 +160478,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -160535,20 +160535,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -160559,11 +160559,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -160640,8 +160640,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -160649,16 +160649,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -160670,7 +160670,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -161119,7 +161119,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -161127,7 +161127,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -161148,7 +161148,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -161205,20 +161205,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -161229,11 +161229,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -161311,7 +161311,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -161319,16 +161319,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -161340,7 +161340,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -161397,20 +161397,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -161421,11 +161421,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -161502,8 +161502,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -161511,16 +161511,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -161532,7 +161532,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -161981,7 +161981,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -161989,7 +161989,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -162010,7 +162010,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -162067,20 +162067,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -162091,11 +162091,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -162173,7 +162173,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -162181,16 +162181,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -162202,7 +162202,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -162259,20 +162259,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -162283,11 +162283,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -162364,8 +162364,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -162373,16 +162373,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -162394,7 +162394,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -162843,7 +162843,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -162851,7 +162851,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -162872,7 +162872,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -162929,20 +162929,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -162953,11 +162953,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -163035,7 +163035,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -163043,16 +163043,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -163064,7 +163064,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -163121,20 +163121,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -163145,11 +163145,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -163226,8 +163226,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -163235,16 +163235,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -163256,7 +163256,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -163705,7 +163705,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -163713,7 +163713,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -163734,7 +163734,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -163791,20 +163791,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -163815,11 +163815,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -163897,7 +163897,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -163905,16 +163905,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -163926,7 +163926,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -163983,20 +163983,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -164007,11 +164007,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -164088,8 +164088,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -164097,16 +164097,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -164118,7 +164118,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -164567,7 +164567,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -164575,7 +164575,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -164596,7 +164596,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -164653,20 +164653,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -164677,11 +164677,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -164759,7 +164759,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -164767,16 +164767,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -164788,7 +164788,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -164845,20 +164845,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -164869,11 +164869,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -164950,8 +164950,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -164959,16 +164959,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -164980,7 +164980,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -165429,7 +165429,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -165437,7 +165437,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -165458,7 +165458,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -165515,20 +165515,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -165539,11 +165539,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -165621,7 +165621,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -165629,16 +165629,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -165650,7 +165650,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -165707,20 +165707,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -165731,11 +165731,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -165812,8 +165812,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -165821,16 +165821,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -165842,7 +165842,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -166291,7 +166291,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -166299,7 +166299,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -166320,7 +166320,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -166377,20 +166377,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -166401,11 +166401,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -166483,7 +166483,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -166491,16 +166491,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -166512,7 +166512,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -166569,20 +166569,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -166593,11 +166593,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -166674,8 +166674,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -166683,16 +166683,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -166704,7 +166704,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -167153,7 +167153,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -167161,7 +167161,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -167182,7 +167182,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -167239,20 +167239,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -167263,11 +167263,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -167345,7 +167345,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -167353,16 +167353,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -167374,7 +167374,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -167431,20 +167431,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -167455,11 +167455,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -167536,8 +167536,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -167545,16 +167545,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -167566,7 +167566,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -168015,7 +168015,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -168023,7 +168023,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -168044,7 +168044,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -168101,20 +168101,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -168125,11 +168125,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -168207,7 +168207,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -168215,16 +168215,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -168236,7 +168236,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -168293,20 +168293,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -168317,11 +168317,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -168398,8 +168398,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -168407,16 +168407,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -168428,7 +168428,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -168877,7 +168877,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -168885,7 +168885,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -168906,7 +168906,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -168963,20 +168963,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -168987,11 +168987,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -169069,7 +169069,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -169077,16 +169077,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -169098,7 +169098,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -169155,20 +169155,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -169179,11 +169179,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -169260,8 +169260,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -169269,16 +169269,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -169290,7 +169290,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -169739,7 +169739,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -169747,7 +169747,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -169768,7 +169768,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -169825,20 +169825,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -169849,11 +169849,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -169931,7 +169931,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -169939,16 +169939,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -169960,7 +169960,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -170017,20 +170017,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -170041,11 +170041,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -170122,8 +170122,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -170131,16 +170131,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -170152,7 +170152,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -170601,7 +170601,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -170609,7 +170609,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -170630,7 +170630,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -170687,20 +170687,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -170711,11 +170711,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -170793,7 +170793,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -170801,16 +170801,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -170822,7 +170822,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -170879,20 +170879,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -170903,11 +170903,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -170984,8 +170984,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -170993,16 +170993,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -171014,7 +171014,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -171463,7 +171463,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -171471,7 +171471,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -171492,7 +171492,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -171549,20 +171549,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -171573,11 +171573,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -171655,7 +171655,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -171663,16 +171663,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -171684,7 +171684,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -171741,20 +171741,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -171765,11 +171765,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -171846,8 +171846,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -171855,16 +171855,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -171876,7 +171876,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -172325,7 +172325,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -172333,7 +172333,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -172354,7 +172354,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -172411,20 +172411,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -172435,11 +172435,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -172517,7 +172517,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -172525,16 +172525,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -172546,7 +172546,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -172603,20 +172603,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -172627,11 +172627,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -172708,8 +172708,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -172717,16 +172717,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -172738,7 +172738,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -173187,7 +173187,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -173195,7 +173195,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -173216,7 +173216,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -173273,20 +173273,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -173297,11 +173297,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -173379,7 +173379,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -173387,16 +173387,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -173408,7 +173408,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -173465,20 +173465,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -173489,11 +173489,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -173570,8 +173570,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -173579,16 +173579,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -173600,7 +173600,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -174049,7 +174049,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -174057,7 +174057,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -174078,7 +174078,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -174135,20 +174135,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -174159,11 +174159,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -174241,7 +174241,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -174249,16 +174249,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -174270,7 +174270,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -174327,20 +174327,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -174351,11 +174351,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -174432,8 +174432,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -174441,16 +174441,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -174462,7 +174462,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -174911,7 +174911,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -174919,7 +174919,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -174940,7 +174940,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -174997,20 +174997,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -175021,11 +175021,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -175103,7 +175103,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -175111,16 +175111,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -175132,7 +175132,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -175189,20 +175189,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -175213,11 +175213,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -175294,8 +175294,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -175303,16 +175303,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -175324,7 +175324,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -175773,7 +175773,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -175781,7 +175781,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -175802,7 +175802,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -175859,20 +175859,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -175883,11 +175883,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -175965,7 +175965,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -175973,16 +175973,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -175994,7 +175994,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -176051,20 +176051,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -176075,11 +176075,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -176156,8 +176156,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -176165,16 +176165,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -176186,7 +176186,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -176635,7 +176635,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -176643,7 +176643,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -176664,7 +176664,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -176721,20 +176721,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -176745,11 +176745,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -176827,7 +176827,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -176835,16 +176835,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -176856,7 +176856,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -176913,20 +176913,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -176937,11 +176937,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -177018,8 +177018,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -177027,16 +177027,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -177048,7 +177048,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -177497,7 +177497,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -177505,7 +177505,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -177526,7 +177526,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -177583,20 +177583,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -177607,11 +177607,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -177689,7 +177689,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -177697,16 +177697,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -177718,7 +177718,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -177775,20 +177775,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -177799,11 +177799,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -177880,8 +177880,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -177889,16 +177889,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -177910,7 +177910,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -178359,7 +178359,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -178367,7 +178367,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -178388,7 +178388,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -178445,20 +178445,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -178469,11 +178469,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -178551,7 +178551,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -178559,16 +178559,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -178580,7 +178580,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -178637,20 +178637,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -178661,11 +178661,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -178742,8 +178742,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -178751,16 +178751,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -178772,7 +178772,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -179221,7 +179221,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -179229,7 +179229,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -179250,7 +179250,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -179307,20 +179307,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -179331,11 +179331,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -179413,7 +179413,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -179421,16 +179421,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -179442,7 +179442,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -179499,20 +179499,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -179523,11 +179523,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -179604,8 +179604,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -179613,16 +179613,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -179634,7 +179634,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -180083,7 +180083,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -180091,7 +180091,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -180112,7 +180112,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -180169,20 +180169,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -180193,11 +180193,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -180275,7 +180275,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -180283,16 +180283,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -180304,7 +180304,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -180361,20 +180361,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -180385,11 +180385,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -180466,8 +180466,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -180475,16 +180475,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -180496,7 +180496,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -180945,7 +180945,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -180953,7 +180953,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -180974,7 +180974,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -181031,20 +181031,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -181055,11 +181055,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -181137,7 +181137,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -181145,16 +181145,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -181166,7 +181166,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -181223,20 +181223,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -181247,11 +181247,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -181328,8 +181328,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -181337,16 +181337,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -181358,7 +181358,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -181807,7 +181807,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -181815,7 +181815,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -181836,7 +181836,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -181893,20 +181893,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -181917,11 +181917,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -181999,7 +181999,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -182007,16 +182007,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -182028,7 +182028,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -182085,20 +182085,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -182109,11 +182109,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -182190,8 +182190,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -182199,16 +182199,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -182220,7 +182220,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -182669,7 +182669,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -182677,7 +182677,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -182698,7 +182698,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -182755,20 +182755,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -182779,11 +182779,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -182861,7 +182861,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -182869,16 +182869,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -182890,7 +182890,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -182947,20 +182947,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -182971,11 +182971,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -183052,8 +183052,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -183061,16 +183061,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -183082,7 +183082,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -183531,7 +183531,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -183539,7 +183539,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -183560,7 +183560,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -183617,20 +183617,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -183641,11 +183641,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -183723,7 +183723,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -183731,16 +183731,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -183752,7 +183752,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -183809,20 +183809,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -183833,11 +183833,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -183914,8 +183914,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -183923,16 +183923,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -183944,7 +183944,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -184393,7 +184393,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -184401,7 +184401,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -184422,7 +184422,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -184479,20 +184479,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -184503,11 +184503,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -184585,7 +184585,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -184593,16 +184593,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -184614,7 +184614,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -184671,20 +184671,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -184695,11 +184695,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -184776,8 +184776,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -184785,16 +184785,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -184806,7 +184806,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -185255,7 +185255,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -185263,7 +185263,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -185284,7 +185284,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -185341,20 +185341,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -185365,11 +185365,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -185447,7 +185447,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -185455,16 +185455,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -185476,7 +185476,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -185533,20 +185533,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -185557,11 +185557,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -185638,8 +185638,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -185647,16 +185647,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -185668,7 +185668,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -186117,7 +186117,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -186125,7 +186125,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -186146,7 +186146,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -186203,20 +186203,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -186227,11 +186227,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -186309,7 +186309,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -186317,16 +186317,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -186338,7 +186338,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -186395,20 +186395,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -186419,11 +186419,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -186500,8 +186500,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -186509,16 +186509,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -186530,7 +186530,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -186979,7 +186979,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -186987,7 +186987,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -187008,7 +187008,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -187065,20 +187065,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -187089,11 +187089,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -187171,7 +187171,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -187179,16 +187179,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -187200,7 +187200,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -187257,20 +187257,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -187281,11 +187281,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -187362,8 +187362,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -187371,16 +187371,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -187392,7 +187392,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -187841,7 +187841,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -187849,7 +187849,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -187870,7 +187870,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -187927,20 +187927,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -187951,11 +187951,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -188033,7 +188033,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -188041,16 +188041,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -188062,7 +188062,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -188119,20 +188119,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -188143,11 +188143,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -188224,8 +188224,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -188233,16 +188233,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -188254,7 +188254,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -188703,7 +188703,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -188711,7 +188711,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -188732,7 +188732,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -188789,20 +188789,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -188813,11 +188813,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -188895,7 +188895,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -188903,16 +188903,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -188924,7 +188924,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -188981,20 +188981,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -189005,11 +189005,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -189086,8 +189086,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -189095,16 +189095,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -189116,7 +189116,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -189565,7 +189565,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -189573,7 +189573,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -189594,7 +189594,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -189651,20 +189651,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -189675,11 +189675,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -189757,7 +189757,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -189765,16 +189765,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -189786,7 +189786,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -189843,20 +189843,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -189867,11 +189867,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -189948,8 +189948,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -189957,16 +189957,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -189978,7 +189978,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -190427,7 +190427,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -190435,7 +190435,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -190456,7 +190456,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -190513,20 +190513,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -190537,11 +190537,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -190619,7 +190619,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -190627,16 +190627,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -190648,7 +190648,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -190705,20 +190705,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -190729,11 +190729,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -190810,8 +190810,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -190819,16 +190819,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -190840,7 +190840,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -191289,7 +191289,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -191297,7 +191297,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -191318,7 +191318,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -191375,20 +191375,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -191399,11 +191399,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -191481,7 +191481,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -191489,16 +191489,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -191510,7 +191510,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -191567,20 +191567,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -191591,11 +191591,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -191672,8 +191672,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -191681,16 +191681,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -191702,7 +191702,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -192151,7 +192151,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -192159,7 +192159,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -192180,7 +192180,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -192237,20 +192237,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -192261,11 +192261,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -192343,7 +192343,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -192351,16 +192351,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -192372,7 +192372,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -192429,20 +192429,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -192453,11 +192453,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -192534,8 +192534,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -192543,16 +192543,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -192564,7 +192564,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -193013,7 +193013,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -193021,7 +193021,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -193042,7 +193042,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -193099,20 +193099,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -193123,11 +193123,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -193205,7 +193205,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -193213,16 +193213,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -193234,7 +193234,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -193291,20 +193291,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -193315,11 +193315,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -193396,8 +193396,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -193405,16 +193405,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -193426,7 +193426,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -193875,7 +193875,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -193883,7 +193883,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -193904,7 +193904,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -193961,20 +193961,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -193985,11 +193985,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -194067,7 +194067,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -194075,16 +194075,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -194096,7 +194096,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -194153,20 +194153,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -194177,11 +194177,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -194258,8 +194258,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -194267,16 +194267,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -194288,7 +194288,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -194737,7 +194737,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -194745,7 +194745,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -194766,7 +194766,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -194823,20 +194823,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -194847,11 +194847,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -194929,7 +194929,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -194937,16 +194937,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -194958,7 +194958,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -195015,20 +195015,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -195039,11 +195039,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -195120,8 +195120,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -195129,16 +195129,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -195150,7 +195150,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -195599,7 +195599,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -195607,7 +195607,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -195628,7 +195628,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -195685,20 +195685,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -195709,11 +195709,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -195791,7 +195791,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -195799,16 +195799,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -195820,7 +195820,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -195877,20 +195877,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -195901,11 +195901,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -195982,8 +195982,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -195991,16 +195991,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -196012,7 +196012,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -196461,7 +196461,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -196469,7 +196469,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -196490,7 +196490,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -196547,20 +196547,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -196571,11 +196571,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -196653,7 +196653,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -196661,16 +196661,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -196682,7 +196682,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -196739,20 +196739,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -196763,11 +196763,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -196844,8 +196844,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -196853,16 +196853,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -196874,7 +196874,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -197323,7 +197323,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -197331,7 +197331,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -197352,7 +197352,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -197409,20 +197409,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -197433,11 +197433,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -197515,7 +197515,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -197523,16 +197523,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -197544,7 +197544,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -197601,20 +197601,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -197625,11 +197625,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -197706,8 +197706,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -197715,16 +197715,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -197736,7 +197736,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -198185,7 +198185,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -198193,7 +198193,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -198214,7 +198214,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -198271,20 +198271,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -198295,11 +198295,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -198377,7 +198377,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -198385,16 +198385,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -198406,7 +198406,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -198463,20 +198463,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -198487,11 +198487,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -198568,8 +198568,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -198577,16 +198577,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -198598,7 +198598,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -199047,7 +199047,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -199055,7 +199055,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -199076,7 +199076,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -199133,20 +199133,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -199157,11 +199157,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -199239,7 +199239,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -199247,16 +199247,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -199268,7 +199268,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -199325,20 +199325,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -199349,11 +199349,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -199430,8 +199430,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -199439,16 +199439,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -199460,7 +199460,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -199909,7 +199909,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -199917,7 +199917,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -199938,7 +199938,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -199995,20 +199995,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -200019,11 +200019,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -200101,7 +200101,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -200109,16 +200109,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -200130,7 +200130,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -200187,20 +200187,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -200211,11 +200211,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -200292,8 +200292,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -200301,16 +200301,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -200322,7 +200322,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -200771,7 +200771,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -200779,7 +200779,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -200800,7 +200800,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -200857,20 +200857,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -200881,11 +200881,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -200963,7 +200963,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -200971,16 +200971,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -200992,7 +200992,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -201049,20 +201049,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -201073,11 +201073,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -201154,8 +201154,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -201163,16 +201163,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -201184,7 +201184,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -201633,7 +201633,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -201641,7 +201641,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -201662,7 +201662,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -201719,20 +201719,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -201743,11 +201743,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -201825,7 +201825,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -201833,16 +201833,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -201854,7 +201854,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -201911,20 +201911,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -201935,11 +201935,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -202016,8 +202016,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -202025,16 +202025,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -202046,7 +202046,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -202495,7 +202495,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -202503,7 +202503,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -202524,7 +202524,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -202581,20 +202581,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -202605,11 +202605,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -202687,7 +202687,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -202695,16 +202695,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -202716,7 +202716,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -202773,20 +202773,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -202797,11 +202797,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -202878,8 +202878,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -202887,16 +202887,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -202908,7 +202908,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -203357,7 +203357,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -203365,7 +203365,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -203386,7 +203386,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -203443,20 +203443,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -203467,11 +203467,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -203549,7 +203549,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -203557,16 +203557,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -203578,7 +203578,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -203635,20 +203635,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -203659,11 +203659,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -203740,8 +203740,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -203749,16 +203749,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -203770,7 +203770,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -204219,7 +204219,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -204227,7 +204227,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -204248,7 +204248,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -204305,20 +204305,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -204329,11 +204329,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -204411,7 +204411,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -204419,16 +204419,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -204440,7 +204440,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -204497,20 +204497,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -204521,11 +204521,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -204602,8 +204602,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -204611,16 +204611,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -204632,7 +204632,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -205081,7 +205081,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -205089,7 +205089,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -205110,7 +205110,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -205167,20 +205167,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -205191,11 +205191,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -205273,7 +205273,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -205281,16 +205281,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -205302,7 +205302,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -205359,20 +205359,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -205383,11 +205383,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -205464,8 +205464,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -205473,16 +205473,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -205494,7 +205494,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -205943,7 +205943,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -205951,7 +205951,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -205972,7 +205972,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -206029,20 +206029,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -206053,11 +206053,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -206135,7 +206135,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -206143,16 +206143,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -206164,7 +206164,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -206221,20 +206221,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -206245,11 +206245,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -206326,8 +206326,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -206335,16 +206335,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -206356,7 +206356,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -206805,7 +206805,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -206813,7 +206813,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -206834,7 +206834,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -206891,20 +206891,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -206915,11 +206915,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -206997,7 +206997,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -207005,16 +207005,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -207026,7 +207026,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -207083,20 +207083,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -207107,11 +207107,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -207188,8 +207188,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -207197,16 +207197,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -207218,7 +207218,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -207667,7 +207667,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -207675,7 +207675,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -207696,7 +207696,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -207753,20 +207753,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -207777,11 +207777,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -207859,7 +207859,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -207867,16 +207867,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -207888,7 +207888,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -207945,20 +207945,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -207969,11 +207969,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -208050,8 +208050,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -208059,16 +208059,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -208080,7 +208080,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -208529,7 +208529,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -208537,7 +208537,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -208558,7 +208558,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -208615,20 +208615,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -208639,11 +208639,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -208721,7 +208721,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -208729,16 +208729,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -208750,7 +208750,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -208807,20 +208807,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -208831,11 +208831,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -208912,8 +208912,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -208921,16 +208921,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -208942,7 +208942,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -209391,7 +209391,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -209399,7 +209399,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -209420,7 +209420,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -209477,20 +209477,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -209501,11 +209501,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -209583,7 +209583,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -209591,16 +209591,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -209612,7 +209612,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -209669,20 +209669,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -209693,11 +209693,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -209774,8 +209774,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -209783,16 +209783,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -209804,7 +209804,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -210253,7 +210253,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -210261,7 +210261,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -210282,7 +210282,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -210339,20 +210339,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -210363,11 +210363,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -210445,7 +210445,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -210453,16 +210453,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -210474,7 +210474,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -210531,20 +210531,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -210555,11 +210555,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -210636,8 +210636,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -210645,16 +210645,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -210666,7 +210666,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -211115,7 +211115,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -211123,7 +211123,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -211144,7 +211144,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -211201,20 +211201,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -211225,11 +211225,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -211307,7 +211307,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -211315,16 +211315,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -211336,7 +211336,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -211393,20 +211393,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -211417,11 +211417,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -211498,8 +211498,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -211507,16 +211507,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -211528,7 +211528,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -211977,7 +211977,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -211985,7 +211985,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -212006,7 +212006,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -212063,20 +212063,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -212087,11 +212087,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -212169,7 +212169,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -212177,16 +212177,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -212198,7 +212198,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -212255,20 +212255,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -212279,11 +212279,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -212360,8 +212360,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -212369,16 +212369,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -212390,7 +212390,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -212839,7 +212839,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -212847,7 +212847,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -212868,7 +212868,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -212925,20 +212925,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -212949,11 +212949,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -213031,7 +213031,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -213039,16 +213039,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -213060,7 +213060,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -213117,20 +213117,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -213141,11 +213141,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -213222,8 +213222,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -213231,16 +213231,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -213252,7 +213252,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -213701,7 +213701,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -213709,7 +213709,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -213730,7 +213730,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -213787,20 +213787,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -213811,11 +213811,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -213893,7 +213893,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -213901,16 +213901,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -213922,7 +213922,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -213979,20 +213979,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -214003,11 +214003,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -214084,8 +214084,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -214093,16 +214093,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -214114,7 +214114,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -214563,7 +214563,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -214571,7 +214571,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -214592,7 +214592,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -214649,20 +214649,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -214673,11 +214673,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -214755,7 +214755,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -214763,16 +214763,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -214784,7 +214784,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -214841,20 +214841,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -214865,11 +214865,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -214946,8 +214946,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -214955,16 +214955,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -214976,7 +214976,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -215425,7 +215425,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -215433,7 +215433,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -215454,7 +215454,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -215511,20 +215511,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -215535,11 +215535,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -215617,7 +215617,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -215625,16 +215625,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -215646,7 +215646,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -215703,20 +215703,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -215727,11 +215727,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -215808,8 +215808,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -215817,16 +215817,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -215838,7 +215838,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -216287,7 +216287,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -216295,7 +216295,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -216316,7 +216316,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -216373,20 +216373,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -216397,11 +216397,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -216479,7 +216479,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -216487,16 +216487,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -216508,7 +216508,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -216565,20 +216565,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -216589,11 +216589,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -216670,8 +216670,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -216679,16 +216679,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -216700,7 +216700,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -217149,7 +217149,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -217157,7 +217157,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -217178,7 +217178,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -217235,20 +217235,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -217259,11 +217259,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -217341,7 +217341,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -217349,16 +217349,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -217370,7 +217370,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -217427,20 +217427,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -217451,11 +217451,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -217532,8 +217532,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -217541,16 +217541,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -217562,7 +217562,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -218011,7 +218011,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -218019,7 +218019,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -218040,7 +218040,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -218097,20 +218097,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -218121,11 +218121,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -218203,7 +218203,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -218211,16 +218211,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -218232,7 +218232,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -218289,20 +218289,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -218313,11 +218313,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -218394,8 +218394,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -218403,16 +218403,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -218424,7 +218424,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -218873,7 +218873,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -218881,7 +218881,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -218902,7 +218902,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -218959,20 +218959,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -218983,11 +218983,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -219065,7 +219065,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -219073,16 +219073,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -219094,7 +219094,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -219151,20 +219151,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -219175,11 +219175,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -219256,8 +219256,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -219265,16 +219265,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -219286,7 +219286,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -219735,7 +219735,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -219743,7 +219743,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -219764,7 +219764,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -219821,20 +219821,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -219845,11 +219845,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -219927,7 +219927,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -219935,16 +219935,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -219956,7 +219956,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -220013,20 +220013,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -220037,11 +220037,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -220118,8 +220118,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -220127,16 +220127,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -220148,7 +220148,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -220597,7 +220597,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -220605,7 +220605,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -220626,7 +220626,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -220683,20 +220683,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -220707,11 +220707,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -220789,7 +220789,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -220797,16 +220797,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -220818,7 +220818,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -220875,20 +220875,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -220899,11 +220899,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -220980,8 +220980,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -220989,16 +220989,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -221010,7 +221010,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -221459,7 +221459,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -221467,7 +221467,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -221488,7 +221488,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -221545,20 +221545,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -221569,11 +221569,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -221651,7 +221651,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -221659,16 +221659,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -221680,7 +221680,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -221737,20 +221737,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -221761,11 +221761,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -221842,8 +221842,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -221851,16 +221851,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -221872,7 +221872,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -222321,7 +222321,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -222329,7 +222329,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -222350,7 +222350,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -222407,20 +222407,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -222431,11 +222431,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -222513,7 +222513,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -222521,16 +222521,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -222542,7 +222542,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -222599,20 +222599,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -222623,11 +222623,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -222704,8 +222704,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -222713,16 +222713,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -222734,7 +222734,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -223183,7 +223183,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -223191,7 +223191,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -223212,7 +223212,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -223269,20 +223269,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -223293,11 +223293,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -223375,7 +223375,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -223383,16 +223383,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -223404,7 +223404,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -223461,20 +223461,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -223485,11 +223485,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -223566,8 +223566,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -223575,16 +223575,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -223596,7 +223596,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -224045,7 +224045,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -224053,7 +224053,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -224074,7 +224074,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -224131,20 +224131,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -224155,11 +224155,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -224237,7 +224237,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -224245,16 +224245,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -224266,7 +224266,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -224323,20 +224323,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -224347,11 +224347,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -224428,8 +224428,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -224437,16 +224437,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -224458,7 +224458,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -224907,7 +224907,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -224915,7 +224915,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -224936,7 +224936,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -224993,20 +224993,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -225017,11 +225017,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -225099,7 +225099,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -225107,16 +225107,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -225128,7 +225128,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -225185,20 +225185,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -225209,11 +225209,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -225290,8 +225290,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -225299,16 +225299,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -225320,7 +225320,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -225769,7 +225769,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -225777,7 +225777,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -225798,7 +225798,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -225855,20 +225855,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -225879,11 +225879,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -225961,7 +225961,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -225969,16 +225969,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -225990,7 +225990,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -226047,20 +226047,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -226071,11 +226071,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -226152,8 +226152,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -226161,16 +226161,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -226182,7 +226182,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -226631,7 +226631,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -226639,7 +226639,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -226660,7 +226660,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -226717,20 +226717,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -226741,11 +226741,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -226823,7 +226823,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -226831,16 +226831,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -226852,7 +226852,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -226909,20 +226909,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -226933,11 +226933,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -227014,8 +227014,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -227023,16 +227023,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -227044,7 +227044,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -227493,7 +227493,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -227501,7 +227501,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -227522,7 +227522,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -227579,20 +227579,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -227603,11 +227603,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -227685,7 +227685,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -227693,16 +227693,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -227714,7 +227714,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -227771,20 +227771,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -227795,11 +227795,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -227876,8 +227876,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -227885,16 +227885,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -227906,7 +227906,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -228355,7 +228355,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -228363,7 +228363,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -228384,7 +228384,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -228441,20 +228441,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -228465,11 +228465,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -228547,7 +228547,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -228555,16 +228555,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -228576,7 +228576,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -228633,20 +228633,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -228657,11 +228657,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -228738,8 +228738,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -228747,16 +228747,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -228768,7 +228768,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -229217,7 +229217,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -229225,7 +229225,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -229246,7 +229246,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -229303,20 +229303,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -229327,11 +229327,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -229409,7 +229409,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -229417,16 +229417,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -229438,7 +229438,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -229495,20 +229495,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -229519,11 +229519,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -229600,8 +229600,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -229609,16 +229609,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -229630,7 +229630,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -230079,7 +230079,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -230087,7 +230087,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -230108,7 +230108,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -230165,20 +230165,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -230189,11 +230189,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -230271,7 +230271,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -230279,16 +230279,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -230300,7 +230300,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -230357,20 +230357,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -230381,11 +230381,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -230462,8 +230462,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -230471,16 +230471,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -230492,7 +230492,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -230941,7 +230941,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -230949,7 +230949,7 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { "r": 1, @@ -230970,7 +230970,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -231027,20 +231027,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 71, - "y": 104.5 + "x": 75.5, + "y": 105.5 }, "OffsetMin": { - "x": -45, - "y": 83.5 + "x": -49.5, + "y": 80.5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 116, - "y": 21 + "x": 125, + "y": 25 }, "UIMode": 1, "UIScale": { @@ -231051,11 +231051,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 13, - "y": 94 + "y": 93 }, "Position": { "x": 13, - "y": 94, + "y": 93, "z": 0 }, "QuaternionRotation": { @@ -231133,7 +231133,7 @@ "@type": "MOD.Core.TextComponent", "Alignment": 4, "Bold": true, - "DropShadow": false, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -231141,16 +231141,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 1, + "g": 0.92, + "b": 0.62, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 15, + "MaxSize": 15, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -231162,7 +231162,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": { @@ -231219,20 +231219,20 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 66, - "y": -48 + "x": 69.5, + "y": -38 }, "OffsetMin": { - "x": -66, - "y": -102 + "x": -69.5, + "y": -106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132, - "y": 54 + "x": 139, + "y": 68 }, "UIMode": 1, "UIScale": { @@ -231243,11 +231243,11 @@ "UIVersion": 2, "anchoredPosition": { "x": 0, - "y": -75 + "y": -72 }, "Position": { "x": 0, - "y": -75, + "y": -72, "z": 0 }, "QuaternionRotation": { @@ -231324,8 +231324,8 @@ { "@type": "MOD.Core.TextComponent", "Alignment": 4, - "Bold": false, - "DropShadow": false, + "Bold": true, + "DropShadow": true, "DropShadowAngle": 30, "DropShadowColor": { "r": 0, @@ -231333,16 +231333,16 @@ "b": 0, "a": 0.72 }, - "DropShadowDistance": 32, + "DropShadowDistance": 18, "Font": 0, "FontColor": { - "r": 0.13, - "g": 0.11, - "b": 0.09, + "r": 0.98, + "g": 0.96, + "b": 0.9, "a": 1 }, - "FontSize": 14, - "MaxSize": 14, + "FontSize": 12, + "MaxSize": 12, "MinSize": 8, "OutlineColor": { "r": 0.08, @@ -231354,7 +231354,7 @@ "x": 1, "y": -1 }, - "OutlineWidth": 1, + "OutlineWidth": 2, "Overflow": 0, "OverrideSorting": true, "Padding": {