From 1a3a710ecba8975cbf783e60cc66bd6142fa28b8 Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Tue, 22 Nov 2022 12:07:42 +0100 Subject: [PATCH 01/11] =?UTF-8?q?=E2=9C=A8=20Random=20portal=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inventoryFloatingActionButton.dart | 4 +- .../randomPortalFloatingActionButton.dart | 85 +++++++++++++++++++ lib/pages/portal/addPortalPage.dart | 1 + lib/pages/portal/portal_random_page.dart | 68 ++++++++++++--- lib/pages/portal/viewPortalPage.dart | 10 ++- lib/services/base/loadingWidgetService.dart | 33 ++++--- 6 files changed, 175 insertions(+), 26 deletions(-) create mode 100644 lib/components/floatingActionButton/randomPortalFloatingActionButton.dart diff --git a/lib/components/floatingActionButton/inventoryFloatingActionButton.dart b/lib/components/floatingActionButton/inventoryFloatingActionButton.dart index 2e64b538..a56a8140 100644 --- a/lib/components/floatingActionButton/inventoryFloatingActionButton.dart +++ b/lib/components/floatingActionButton/inventoryFloatingActionButton.dart @@ -20,7 +20,9 @@ Widget inventoryFloatingActionButton(BuildContext context, String uniqueKey, ); SpeedDialChild inventorySpeedDial( - BuildContext context, GenericPageItem genericItem) => + BuildContext context, + GenericPageItem genericItem, +) => SpeedDialChild( child: Padding( child: getListTileImage('fab/inventory.png'), diff --git a/lib/components/floatingActionButton/randomPortalFloatingActionButton.dart b/lib/components/floatingActionButton/randomPortalFloatingActionButton.dart new file mode 100644 index 00000000..f338480f --- /dev/null +++ b/lib/components/floatingActionButton/randomPortalFloatingActionButton.dart @@ -0,0 +1,85 @@ +import 'package:assistantapps_flutter_common/assistantapps_flutter_common.dart'; +import 'package:flutter/material.dart'; +import 'dart:math' as math; + +Widget randomPortalFAB( + BuildContext fabCtx, { + @required bool isDisabled, + @required void Function() startRoll, + @required void Function() copyCode, +}) { + Color foregroundColor = getTheme().fabForegroundColourSelector(fabCtx); + Color backgroundColor = getTheme().fabColourSelector(fabCtx); + if (isDisabled) { + return const RandomPortalFABLoader(); + } + + return Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + FloatingActionButton( + child: const Icon(Icons.copy), + foregroundColor: foregroundColor, + backgroundColor: backgroundColor, + onPressed: () => copyCode(), + heroTag: 'copy-portalcode', + ), + const SizedBox(height: 10, width: 10), + FloatingActionButton( + child: const Icon(Icons.refresh), + foregroundColor: foregroundColor, + backgroundColor: backgroundColor, + onPressed: () => startRoll(), + heroTag: 'reroll-portals', + ), + ], + ); +} + +class RandomPortalFABLoader extends StatefulWidget { + const RandomPortalFABLoader({Key key}) : super(key: key); + + @override + createState() => _RandomPortalFABLoaderState(); +} + +class _RandomPortalFABLoaderState extends State + with SingleTickerProviderStateMixin { + AnimationController _controller; + + @override + void initState() { + _controller = AnimationController( + duration: const Duration(milliseconds: 1000), + vsync: this, + )..repeat(); + super.initState(); + } + + @override + Widget build(BuildContext context) { + Color foregroundColor = getTheme().fabForegroundColourSelector(context); + Color backgroundColor = getTheme().fabColourSelector(context); + + return FloatingActionButton( + foregroundColor: foregroundColor.withOpacity(0.5), + backgroundColor: backgroundColor.withOpacity(0.5), + child: AnimatedBuilder( + animation: _controller, + builder: (_, child) { + return Transform.rotate( + angle: _controller.value * 2 * math.pi, + child: const Icon(Icons.refresh), + ); + }, + ), + onPressed: () {}, + ); + } + + @override + void dispose() { + _controller.dispose(); + super.dispose(); + } +} diff --git a/lib/pages/portal/addPortalPage.dart b/lib/pages/portal/addPortalPage.dart index 85c39579..3b744b38 100644 --- a/lib/pages/portal/addPortalPage.dart +++ b/lib/pages/portal/addPortalPage.dart @@ -319,6 +319,7 @@ class _PortalPageState extends State { return listWithScrollbar( itemCount: widgets.length, itemBuilder: (context, index) => widgets[index], + scrollController: ScrollController(), ); } } diff --git a/lib/pages/portal/portal_random_page.dart b/lib/pages/portal/portal_random_page.dart index b70f0ad0..594846d9 100644 --- a/lib/pages/portal/portal_random_page.dart +++ b/lib/pages/portal/portal_random_page.dart @@ -1,9 +1,11 @@ import 'package:assistantapps_flutter_common/assistantapps_flutter_common.dart'; import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; import 'package:flutter_redux/flutter_redux.dart'; import 'package:roll_slot_machine/roll_slot.dart'; import 'package:roll_slot_machine/roll_slot_controller.dart'; +import '../../components/floatingActionButton/randomPortalFloatingActionButton.dart'; import '../../components/portal/portalGlyphList.dart'; import '../../components/scaffoldTemplates/genericPageScaffold.dart'; import '../../components/tilePresenters/youtubersTilePresenter.dart'; @@ -23,7 +25,8 @@ class RandomPortalPage extends StatefulWidget { } class _RandomPortalPageState extends State { - List values = List.generate(100, (index) => index); + bool fabIsDisabled = true; + List currentCode = []; final _rollSlotController0 = RollSlotController(); final _rollSlotController1 = RollSlotController(); @@ -46,13 +49,39 @@ class _RandomPortalPageState extends State { void initState() { super.initState(); + _rollSlotControllerA.addListener(() { + setState(() { + if (fabIsDisabled) return; + currentCode = [ + _rollSlotController0.currentIndex, + _rollSlotController1.currentIndex, + _rollSlotController2.currentIndex, + _rollSlotController3.currentIndex, + _rollSlotController4.currentIndex, + _rollSlotController5.currentIndex, + _rollSlotController6.currentIndex, + _rollSlotController7.currentIndex, + _rollSlotController8.currentIndex, + _rollSlotController9.currentIndex, + _rollSlotControllerA.currentIndex, + _rollSlotControllerB.currentIndex, + ]; + fabIsDisabled = false; + }); + }); + Future.delayed(const Duration(milliseconds: 500), () { // Really bad - I did it for the animations! - onStart(); + startRoll(); }); } - void onStart() { + void startRoll() { + setState(() { + currentCode = []; + fabIsDisabled = true; + }); + // _rollSlotController0.animateRandomly(); // _rollSlotController1.animateRandomly(); _rollSlotController2.animateRandomly(); @@ -65,6 +94,22 @@ class _RandomPortalPageState extends State { _rollSlotController9.animateRandomly(); _rollSlotControllerA.animateRandomly(); _rollSlotControllerB.animateRandomly(); + + Future.delayed(const Duration(milliseconds: 500), () { + setState(() { + fabIsDisabled = false; + }); + }); + } + + void copyCode(BuildContext copyCtx) { + String hexString = currentCode.map((e) => e.toRadixString(16)).join(''); + Clipboard.setData(ClipboardData(text: hexString.toUpperCase())); + getSnackbar().showSnackbar( + copyCtx, + LocaleKey.portalCodeCopied, + description: hexString.toUpperCase(), + ); } @override @@ -84,9 +129,11 @@ class _RandomPortalPageState extends State { ) ], body: getBody(context, viewModel), - fab: FloatingActionButton( - onPressed: () => onStart(), - child: const Icon(Icons.refresh), + fab: randomPortalFAB( + context, + isDisabled: fabIsDisabled || currentCode.isEmpty, + startRoll: () => startRoll(), + copyCode: () => copyCode(context), ), ), ); @@ -99,7 +146,7 @@ class _RandomPortalPageState extends State { 16, (index) => index.toRadixString(16), ); - var secondReel = [ + List secondReel = [ portalList[1], ...portalList.where((p) => p != '1'), ].toList(); @@ -232,7 +279,7 @@ class RollSlotWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var maxHeight = pageSize.height / 4; + var maxHeight = (pageSize.height - 50) / 4; return ConstrainedBox( constraints: BoxConstraints( maxHeight: maxHeight, @@ -270,11 +317,12 @@ class BuildItem extends StatelessWidget { decoration: BoxDecoration( color: Colors.transparent, boxShadow: [ - BoxShadow(color: const Color(0xff2f5d62).withOpacity(.2)), + BoxShadow( + color: getTheme().getSecondaryColour(context).withOpacity(.1)), ], borderRadius: BorderRadius.circular(20), border: Border.all( - color: const Color(0xff2f5d62), + color: getTheme().getSecondaryColour(context).withOpacity(.5), ), ), alignment: Alignment.center, diff --git a/lib/pages/portal/viewPortalPage.dart b/lib/pages/portal/viewPortalPage.dart index 0e95dcb7..b1be84a2 100644 --- a/lib/pages/portal/viewPortalPage.dart +++ b/lib/pages/portal/viewPortalPage.dart @@ -65,10 +65,14 @@ class _ViewPortalPageState extends State { } Widget getBody( - BuildContext scaffoldContext, PortalViewModel portalViewModel) { + BuildContext scaffoldContext, + PortalViewModel portalViewModel, + ) { List widgets = List.empty(growable: true); - widgets.add(twoLinePortalGlyphList(item.codes, - useAltGlyphs: portalViewModel.useAltGlyphs)); + widgets.add(twoLinePortalGlyphList( + item.codes, + useAltGlyphs: portalViewModel.useAltGlyphs, + )); String hexString = allUpperCase(intArrayToHex(item.codes)); widgets.add(GestureDetector( diff --git a/lib/services/base/loadingWidgetService.dart b/lib/services/base/loadingWidgetService.dart index 16c36016..55297780 100644 --- a/lib/services/base/loadingWidgetService.dart +++ b/lib/services/base/loadingWidgetService.dart @@ -31,18 +31,27 @@ class LoadingWidgetService implements ILoadingWidgetService { Widget fullPageLoading(BuildContext context, {String loadingText}) => Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, - children: [ - Row(children: [ - smallLoadingIndicator(), - ], mainAxisAlignment: MainAxisAlignment.center), - Row(children: [ - Container( - margin: const EdgeInsets.all(12), - ) - ], mainAxisAlignment: MainAxisAlignment.center), - Row(children: [ - Text(loadingText ?? getTranslations().fromKey(LocaleKey.loading)) - ], mainAxisAlignment: MainAxisAlignment.center), + children: [ + Row( + children: [ + smallLoadingIndicator(), + ], + mainAxisAlignment: MainAxisAlignment.center, + ), + Row( + children: [ + Container( + margin: const EdgeInsets.all(12), + ) + ], + mainAxisAlignment: MainAxisAlignment.center, + ), + Row( + children: [ + Text(loadingText ?? getTranslations().fromKey(LocaleKey.loading)) + ], + mainAxisAlignment: MainAxisAlignment.center, + ), ], ); From ac3782f448eef4c0329b29d19b288b2ad37cfd3d Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Tue, 22 Nov 2022 12:08:15 +0100 Subject: [PATCH 02/11] =?UTF-8?q?=F0=9F=93=A6=20Regenerate=20from=20experi?= =?UTF-8?q?mental?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/data/meta.json | 6 +- assets/data/patronsBackup.json | 30 ++++++++++ assets/data/quicksilverStore.json | 8 ++- assets/json/de/AlienPuzzle.lang.json | 6 +- assets/json/de/Buildings.lang.json | 34 +++++------ assets/json/de/Others.lang.json | 12 ++-- assets/json/de/Technology.lang.json | 2 +- assets/json/de/TradeItems.lang.json | 2 +- assets/json/en/Technology.lang.json | 2 +- assets/json/es-la/AlienPuzzle.lang.json | 8 +-- assets/json/es-la/Buildings.lang.json | 24 ++++---- assets/json/es-la/Others.lang.json | 28 ++++----- assets/json/es-la/Technology.lang.json | 4 +- assets/json/es/AlienPuzzle.lang.json | 6 +- assets/json/es/Buildings.lang.json | 24 ++++---- assets/json/es/Others.lang.json | 12 ++-- assets/json/es/Technology.lang.json | 2 +- assets/json/fr/AlienPuzzle.lang.json | 6 +- assets/json/fr/Buildings.lang.json | 24 ++++---- assets/json/fr/Others.lang.json | 20 +++---- assets/json/fr/Technology.lang.json | 2 +- assets/json/it/AlienPuzzle.lang.json | 6 +- assets/json/it/Buildings.lang.json | 24 ++++---- assets/json/it/Others.lang.json | 8 +-- assets/json/it/Technology.lang.json | 2 +- assets/json/ja/AlienPuzzle.lang.json | 6 +- assets/json/ja/Buildings.lang.json | 24 ++++---- assets/json/ja/Others.lang.json | 12 ++-- assets/json/ja/Technology.lang.json | 2 +- assets/json/ko/AlienPuzzle.lang.json | 6 +- assets/json/ko/Buildings.lang.json | 24 ++++---- .../json/ko/ConstructedTechnology.lang.json | 2 +- assets/json/ko/Others.lang.json | 6 +- assets/json/ko/Technology.lang.json | 2 +- assets/json/nl/AlienPuzzle.lang.json | 10 ++-- assets/json/nl/Buildings.lang.json | 30 +++++----- assets/json/nl/Others.lang.json | 26 ++++----- assets/json/nl/SeasonalExpedition.lang.json | 10 ++-- assets/json/nl/Technology.lang.json | 2 +- assets/json/pl/AlienPuzzle.lang.json | 6 +- assets/json/pl/Buildings.lang.json | 24 ++++---- .../json/pl/ConstructedTechnology.lang.json | 4 +- assets/json/pl/Others.lang.json | 8 +-- assets/json/pl/Technology.lang.json | 2 +- assets/json/pt-br/AlienPuzzle.lang.json | 6 +- assets/json/pt-br/Buildings.lang.json | 24 ++++---- assets/json/pt-br/Others.lang.json | 20 +++---- assets/json/pt-br/Technology.lang.json | 2 +- assets/json/pt/AlienPuzzle.lang.json | 6 +- assets/json/pt/Buildings.lang.json | 24 ++++---- assets/json/pt/Others.lang.json | 14 ++--- assets/json/pt/Technology.lang.json | 2 +- assets/json/ru/AlienPuzzle.lang.json | 6 +- assets/json/ru/Buildings.lang.json | 24 ++++---- assets/json/ru/Others.lang.json | 12 ++-- assets/json/ru/Technology.lang.json | 2 +- assets/json/zh-hans/AlienPuzzle.lang.json | 6 +- assets/json/zh-hans/Buildings.lang.json | 24 ++++---- assets/json/zh-hans/Others.lang.json | 12 ++-- assets/json/zh-hans/Technology.lang.json | 2 +- assets/json/zh-hant/AlienPuzzle.lang.json | 58 +++++++++---------- assets/json/zh-hant/Buildings.lang.json | 24 ++++---- assets/json/zh-hant/Others.lang.json | 12 ++-- assets/json/zh-hant/Technology.lang.json | 2 +- assets/lang/language.af.json | 3 +- assets/lang/language.ar.json | 3 +- assets/lang/language.cs.json | 3 +- assets/lang/language.de.json | 9 +-- assets/lang/language.en.json | 3 +- assets/lang/language.es.json | 3 +- assets/lang/language.fr.json | 3 +- assets/lang/language.hu.json | 35 +++++------ assets/lang/language.id.json | 3 +- assets/lang/language.it.json | 9 +-- assets/lang/language.ja.json | 3 +- assets/lang/language.ms.json | 3 +- assets/lang/language.nl.json | 3 +- assets/lang/language.no.json | 3 +- assets/lang/language.ph.json | 3 +- assets/lang/language.pl.json | 3 +- assets/lang/language.pt-br.json | 25 ++++---- assets/lang/language.pt.json | 3 +- assets/lang/language.ro.json | 5 +- assets/lang/language.ru.json | 3 +- assets/lang/language.tl.json | 3 +- assets/lang/language.tr.json | 3 +- assets/lang/language.ur.json | 3 +- assets/lang/language.vi-vn.json | 3 +- assets/lang/language.zh-hans.json | 3 +- assets/lang/language.zh-hant.json | 3 +- lib/constants/AppAvailableLanguages.dart | 8 +-- pubspec.lock | 4 +- 92 files changed, 504 insertions(+), 444 deletions(-) diff --git a/assets/data/meta.json b/assets/data/meta.json index 4d604f0c..9b3da3d9 100644 --- a/assets/data/meta.json +++ b/assets/data/meta.json @@ -1,5 +1,5 @@ { - "GameVersion": "4.06", - "GameBuildNumber": 9849486, - "GeneratedDate": "2022-11-04" + "GameVersion": "4.6", + "GameBuildNumber": 9964564, + "GeneratedDate": "2022-11-22" } \ No newline at end of file diff --git a/assets/data/patronsBackup.json b/assets/data/patronsBackup.json index 151fa3b3..93338db4 100644 --- a/assets/data/patronsBackup.json +++ b/assets/data/patronsBackup.json @@ -232,5 +232,35 @@ "imageUrl": "https://cdn-usr.assistantapps.com/patreon/62621285565C1858B5B1A3E9E7A42D9B.png", "thumbnailUrl": "https://cdn-usr.assistantapps.com/patreon/62621285565C1858B5B1A3E9E7A42D9B.png", "url": "https://assistantapps.com" + }, + { + "name": "Kianfu", + "imageUrl": "https://cdn-usr.assistantapps.com/patreon/9FD2B5D3D7502689C6A023306A1597CA.png", + "thumbnailUrl": "https://cdn-usr.assistantapps.com/patreon/9FD2B5D3D7502689C6A023306A1597CA.png", + "url": "https://assistantapps.com" + }, + { + "name": "Jesse Gribble", + "imageUrl": "https://cdn-usr.assistantapps.com/patreon/6F1508370EA63E04B037757B36D5393C.png", + "thumbnailUrl": "https://cdn-usr.assistantapps.com/patreon/6F1508370EA63E04B037757B36D5393C.png", + "url": "https://assistantapps.com" + }, + { + "name": "Jason Rich", + "imageUrl": "https://cdn-usr.assistantapps.com/patreon/3EDB6BDFBDD09DD4DEB0DEB2CEC87C04.png", + "thumbnailUrl": "https://cdn-usr.assistantapps.com/patreon/3EDB6BDFBDD09DD4DEB0DEB2CEC87C04.png", + "url": "https://assistantapps.com" + }, + { + "name": "ursacor", + "imageUrl": "https://cdn-usr.assistantapps.com/patreon/C7CF6A9BC45743089C48D3918DA7FFD0.png", + "thumbnailUrl": "https://cdn-usr.assistantapps.com/patreon/C7CF6A9BC45743089C48D3918DA7FFD0.png", + "url": "https://assistantapps.com" + }, + { + "name": "hedge", + "imageUrl": "https://cdn-usr.assistantapps.com/patreon/AAA55602849BBC341939275ED809BC4A.png", + "thumbnailUrl": "https://cdn-usr.assistantapps.com/patreon/AAA55602849BBC341939275ED809BC4A.png", + "url": "https://assistantapps.com" } ] \ No newline at end of file diff --git a/assets/data/quicksilverStore.json b/assets/data/quicksilverStore.json index f4fff756..76796c72 100644 --- a/assets/data/quicksilverStore.json +++ b/assets/data/quicksilverStore.json @@ -727,6 +727,10 @@ }, { "MissionId": 69, + "Items": [] + }, + { + "MissionId": 70, "Items": [ { "Tier": 1, @@ -735,7 +739,7 @@ ] }, { - "MissionId": 70, + "MissionId": 71, "Items": [ { "Tier": 1, @@ -752,7 +756,7 @@ ] }, { - "MissionId": 71, + "MissionId": 72, "Items": [ { "Tier": 1, diff --git a/assets/json/de/AlienPuzzle.lang.json b/assets/json/de/AlienPuzzle.lang.json index 88dcaf7e..7c9c910f 100644 --- a/assets/json/de/AlienPuzzle.lang.json +++ b/assets/json/de/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es wirkt so, als ob der Stein das Wissen jener absorbiert hat, die vor Jahrtausenden hier lebten. Jetzt spricht er in meiner Muttersprache zu mir." + "Der uralte Stein verstummt.Die Herrschaft der Erstgebrüteten wurde verkündet." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es wirkt so, als ob der Stein das Wissen jener absorbiert hat, die vor Jahrtausenden hier lebten. Jetzt spricht er in meiner Muttersprache zu mir." + "Die Tafel ist kalt und still.Die Saga der Vy’keen ist abgeschlossen." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es wirkt so, als ob der Stein das Wissen jener absorbiert hat, die vor Jahrtausenden hier lebten. Jetzt spricht er in meiner Muttersprache zu mir." + "Das Steingefüge schweigt.Das Testament der Korvax wurde ausgesprochen." ], "Options": [ { diff --git a/assets/json/de/Buildings.lang.json b/assets/json/de/Buildings.lang.json index 3793f616..1906eb25 100644 --- a/assets/json/de/Buildings.lang.json +++ b/assets/json/de/Buildings.lang.json @@ -9773,7 +9773,7 @@ "Icon": "building/463.png", "Name": "Verzierter Hocker", "Group": "Dekoration", - "Description": "Ein stilvoller, verstärkter Hocker mit drei Beinen, der bis zum zehnfachen Gewicht eines erwachsenen Vy’keen tragen kann. Der Sitz aus Polyurethan-Nanit passt sich jeder Körperform an, weswegen dieser eigentlich schlichte Stuhl dem Sitzenden überraschend hohen Komfort bietet.", + "Description": "Ein stilvoller, verstärkter Hocker mit drei Beinen, der bis zum zehnfachen Gewicht eines erwachsenen Vy‘Keen tragen kann. Der Sitz aus Polyurethan-Nanit passt sich jeder Körperform an, weswegen dieser eigentlich schlichte Stuhl dem Sitzenden überraschend hohen Komfort bietet.", "BaseValueUnits": 1.0, "CurrencyType": "None", "MaxStackSize": 5.0, @@ -9851,7 +9851,7 @@ "Icon": "building/466.png", "Name": "Verwitterter Wandbehang", "Group": "Dekoration", - "Description": "Eine schwere Wanddekoration aus Leinwand. Dank der Aufhängung mit Vy’keen-Militärseilen hält diese Dekoration für deine Basis allen Wetterbedingungen stand.", + "Description": "Eine schwere Wanddekoration aus Leinwand. Dank der Aufhängung mit Vy‘Keen-Militärseilen hält diese Dekoration für deine Basis allen Wetterbedingungen stand.", "BaseValueUnits": 1.0, "CurrencyType": "None", "MaxStackSize": 5.0, @@ -9877,7 +9877,7 @@ "Icon": "building/467.png", "Name": "Kleiner verwitterter Wandbehang", "Group": "Dekoration", - "Description": "Ein Set aus vier kleinen Leinwand-Wanddekorationen. Dank der Aufhängung mit Vy’keen-Militärseilen hält diese Dekoration für deine Basis allen Wetterbedingungen stand.", + "Description": "Ein Set aus vier kleinen Leinwand-Wanddekorationen. Dank der Aufhängung mit Vy‘Keen-Militärseilen hält diese Dekoration für deine Basis allen Wetterbedingungen stand.", "BaseValueUnits": 1.0, "CurrencyType": "None", "MaxStackSize": 5.0, @@ -9903,7 +9903,7 @@ "Icon": "building/468.png", "Name": "Verwittertes Hängetriptychon", "Group": "Dekoration", - "Description": "Ein Set aus drei kleinen Leinwand-Wanddekorationen. Dank der Aufhängung mit Vy’keen-Militärseilen hält diese Dekoration für deine Basis allen Wetterbedingungen stand.", + "Description": "Ein Set aus drei kleinen Leinwand-Wanddekorationen. Dank der Aufhängung mit Vy‘Keen-Militärseilen hält diese Dekoration für deine Basis allen Wetterbedingungen stand.", "BaseValueUnits": 1.0, "CurrencyType": "None", "MaxStackSize": 5.0, @@ -19832,7 +19832,7 @@ "Icon": "building/964.png", "Name": "Schreckenskapitän-Fahng-Poster", "Group": "Dekoration", - "Description": "Ein exklusives selbstklebendes, knitterfreies Wandkunstwerk.\nNur wenige Vy’keen wissen nichts von den schaurigen Taten des Schreckenskapitäns Fahng – wenn auch unbekannt ist, ob es sich um eine reale historische Figur handelt oder nur um eine erfundene Geschichte, um ungehorsame Junge zu erschrecken.", + "Description": "Ein exklusives selbstklebendes, knitterfreies Wandkunstwerk.\nNur wenige Vy‘Keen wissen nichts von den schaurigen Taten des Schreckenskapitäns Fahng – wenn auch unbekannt ist, ob es sich um eine reale historische Figur handelt oder nur um eine erfundene Geschichte, um ungehorsame Junge zu erschrecken.", "BaseValueUnits": 400.0, "CurrencyType": "None", "MaxStackSize": 5.0, @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Wasserleben", + "Name": "Panzeranemone", "Group": "Organische Dekoration", - "Description": "Herstellbares Ornament zur Verschönerung deiner Basis.", + "Description": "Ein fleischfressender Meeresorganismus. Eine gepanzerte Schale umschließt den Kernpolypen, sodass nur die stechenden Tentakel sichtbar sind. Unwillkürliche Nervenkrämpfe veranlassen die Kreatur, sich unaufhörlich zu winden: immer auf der Suche, immer hungrig.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Wasserleben", + "Name": "Streifenkoralle", "Group": "Organische Dekoration", - "Description": "Herstellbares Ornament zur Verschönerung deiner Basis.", + "Description": "Eine riesige Kalziumformation, die auf natürliche Weise zu einem Streifen nicht ausrichtbaren Raums geformt ist. Verleiht jeder bewohnbaren Basis einen geheimnisvollen Tiefseecharakter.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Wasserleben", + "Name": "Aquatische Kolonie", "Group": "Organische Dekoration", - "Description": "Herstellbares Ornament zur Verschönerung deiner Basis.", + "Description": "Eine Felsformation, die vom Grund eines Ozeans reich an Flora und Fauna gezogen wurde. Das anhaftende Meeresleben ist mit einem nährstoffreichen Schleim überzogen, der es auch an Land ernährt und feucht hält.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Blumen", + "Name": "Nachtzungenblumen", "Group": "Organische Dekoration", - "Description": "Herstellbares Ornament zur Verschönerung deiner Basis.", + "Description": "Ein widerstandsfähiges Gewächs, das gentechnisch so verändert wurde, dass es in allen Biomen, Bodenarten und unter allen Wetterbedingungen gedeiht. Die mit Widerhaken versehenen Blütenblätter schützen die Blumen vor potenziellen Fressfeinden, indem sie die Haut durchdringen und ihr tödliches Gift wirken lassen. Für die Handhabung werden Gefahrgut-Schutzhandschuhe empfohlen.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Blumen", + "Name": "Seeigelblumen", "Group": "Organische Dekoration", - "Description": "Herstellbares Ornament zur Verschönerung deiner Basis.", + "Description": "Ein widerstandsfähiges Gewächs, das gentechnisch so verändert wurde, dass es in allen Biomen, Bodenarten und Wetterbedingungen gedeiht. Diese ungewöhnlich geformten Blumen sind voll mit Pollen und verströmen einen betäubend süßen Duft.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Blumen", + "Name": "Ewigstarrende Blumen", "Group": "Organische Dekoration", - "Description": "Herstellbares Ornament zur Verschönerung deiner Basis.", + "Description": "Ein widerstandsfähiges Gewächs, das genetisch so verändert wurde, dass es in allen Biomen, Bodenarten und Wetterbedingungen gedeiht. Die Strahlenblüten dieser Blume bleiben Tag und Nacht geöffnet und absorbieren das Licht von nahen wie fernen Sternen.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/de/Others.lang.json b/assets/json/de/Others.lang.json index 6e81c3cf..b22b0cc9 100644 --- a/assets/json/de/Others.lang.json +++ b/assets/json/de/Others.lang.json @@ -5296,9 +5296,9 @@ { "Id": "other329", "Icon": "other/329.png", - "Name": "Tentakel Umhang", + "Name": "Tentakelumhang", "Group": "Freischaltbarer Umhang", - "Description": "Ein exklusives Exosuit -Erscheinungsbild.\nVerwandeln Sie das Erscheinungsbild Ihres Exosuits bei einem Aussehensmodifikator.", + "Description": "Eine exklusive Exo-Anzug-Aussehenüberschreibung<>.\n\nGleite mit den flatternden Tentakeln dieses aus regenerierten Zellulosefasern gewebten Umhangs durch die Galaxie.\n\nÄndere die Erscheinung deines Exo-Anzugs an einem Aussehenmodifikator<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Kosmische Megafauna Umhang", + "Name": "Umhang der kosmischen Megafauna", "Group": "Freischaltbarer Umhang", - "Description": "Ein exklusives Exosuit -Erscheinungsbild.\nVerwandeln Sie das Erscheinungsbild Ihres Exosuits bei einem Aussehensmodifikator.", + "Description": "Eine exklusive Exo-Anzug-Aussehenüberschreibung<>.\n\nIn den entlegensten Weiten des Weltraums schwimmt kosmische Megafauna<>, die ihre Wege auf die von Reisenden abstimmt und von möglichen Realitäten träumt\n\nÄndere die Erscheinung deines Exo-Anzugs an einem Aussehenmodifikator<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Titan-Wurm Umhang", + "Name": "Titanwurm-Umhang", "Group": "Freischaltbarer Umhang", - "Description": "Ein exklusives Exosuit -Erscheinungsbild.\n\n„Der Wurmfürst erhebt sich über die staubige Erde; aus seinem Fleische wird der Himmel.“\n\nVerwandeln Sie das Erscheinungsbild Ihres Exosuits bei einem Aussehensmodifikator.", + "Description": "Eine exklusive Exo-Anzug-Aussehenüberschreibung<>.\n\n„Der Wurmfürst erhebt sich über die staubige Erde; aus seinem Fleische wird der Himmel.“\n\nÄndere die Erscheinung deines Exo-Anzugs an einem Aussehenmodifikator<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/de/Technology.lang.json b/assets/json/de/Technology.lang.json index 7f5214ef..23fa6b67 100644 --- a/assets/json/de/Technology.lang.json +++ b/assets/json/de/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/de/TradeItems.lang.json b/assets/json/de/TradeItems.lang.json index c96c97e8..29104fd5 100644 --- a/assets/json/de/TradeItems.lang.json +++ b/assets/json/de/TradeItems.lang.json @@ -840,7 +840,7 @@ "Icon": "tradeItems/40.png", "Name": "Grahgrah", "Group": "Schmuggelware", - "Description": "Ein Kanister des inzwischen verbotenen Vy’keen-Kampfgases, das traditionell am Vorabend einer Schlacht inhaliert wird.\n\nDer Kauf ist an nahezu allen galaktischen Handelsterminals illegal<>. Ein regulärer Erwerb ist nur in gesetzlosen<> Systemen möglich.\n\nDer Verkauf von verbotener Ware im kommerziell regulierten Raum kann höchst profitabel<> sein.", + "Description": "Ein Kanister des inzwischen verbotenen Vy‘Keen-Kampfgases, das traditionell am Vorabend einer Schlacht inhaliert wird.\n\nDer Kauf ist an nahezu allen galaktischen Handelsterminals illegal<>. Ein regulärer Erwerb ist nur in gesetzlosen<> Systemen möglich.\n\nDer Verkauf von verbotener Ware im kommerziell regulierten Raum kann höchst profitabel<> sein.", "BaseValueUnits": 58000.0, "CurrencyType": "Credits", "MaxStackSize": 25.0, diff --git a/assets/json/en/Technology.lang.json b/assets/json/en/Technology.lang.json index b661a139..15dbb9b9 100644 --- a/assets/json/en/Technology.lang.json +++ b/assets/json/en/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/es-la/AlienPuzzle.lang.json b/assets/json/es-la/AlienPuzzle.lang.json index 01860b7a..2092bf44 100644 --- a/assets/json/es-la/AlienPuzzle.lang.json +++ b/assets/json/es-la/AlienPuzzle.lang.json @@ -2796,7 +2796,7 @@ "Number": 0, "IncomingMessages": [ "Me estremezco cuando extiendo el brazo y toco el precioso monumento de piedra, pues mi mente recibe una sabiduría letal sobre la auténtica historia de los Gek...", - "Después de que se expulsara a los OPOSITORES de los estanques de desove los Centinelas DESCENDIERON. Su causa era injusta.\n\nEl olor de una GUERRA demasiado GRANDE y PODEROSA para que los autómatas pudieran resistirla guio a los agresores a la contienda.\n\nLa Primera Progenie recordaría esto." + "Después de que se expulsara a los OPOSITORES de los estanques de desove, los Centinelas DESCENDIERON. Su causa era injusta.\n\nEl olor de una GUERRA demasiado GRANDE y PODEROSA para que los autómatas pudieran resistirla guio a los agresores a la contienda.\n\nLa Primera Progenie recordaría esto." ], "Options": [ { @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es como si la roca hubiera absorbido los conocimientos de aquellos que vivían aquí hace milenios. Ahora me habla en mi lengua nativa." + "La antigua piedra sigue allí.El dominio de la Primera Progenie se ha pronunciado." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es como si la roca hubiera absorbido los conocimientos de aquellos que vivían aquí hace milenios. Ahora me habla en mi lengua nativa." + "La placa permanece fría y silenciosa.La Saga de los Vy'keen ha concluido." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es como si la roca hubiera absorbido los conocimientos de aquellos que vivían aquí hace milenios. Ahora me habla en mi lengua nativa." + "La estructura histórica permanece en silencio.El testamento de los Korvax se ha revelado." ], "Options": [ { diff --git a/assets/json/es-la/Buildings.lang.json b/assets/json/es-la/Buildings.lang.json index d12aa6e1..ab6740fb 100644 --- a/assets/json/es-la/Buildings.lang.json +++ b/assets/json/es-la/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Vida acuática", + "Name": "Anémona blindada", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un organismo marino carnívoro. Su caparazón blindado encierra el pólipo central, exponiendo solo los tentáculos urticantes. Los espasmos nerviosos involuntarios hacen que la criatura no deje nunca de retorcerse: siempre buscando, siempre hambrienta.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Vida acuática", + "Name": "Tira de coral", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Una formación de calcio gigante, configurada de forma natural como una franja de espacio no orientable. Añade un aire misterioso de las profundidades a cualquier base habitable.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Vida acuática", + "Name": "Colonia acuática", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Una formación rocosa extraída del fondo de un océano densamente poblado. La vida marina adherida está lacada en una mucosidad rica en nutrientes, que la mantiene alimentada y húmeda en condiciones terrestres.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Flores", + "Name": "Flores Lengua Nocturna", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un parche floral resistente, modificado genéticamente para prosperar en todo tipo de biomas, suelos y condiciones climáticas. Los pétalos de púas protegen las flores de posibles depredadores, perforando la carne con una toxina mortal. Se recomienda el uso de guantes de protección para su manipulación.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Flores", + "Name": "Flores de erizo", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un parche floral resistente, modificado genéticamente para prosperar en todo tipo de biomas, suelos y condiciones climáticas. Estas flores de forma inusual están repletas de polen y desprenden un perfume dulce y mareante.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Flores", + "Name": "Flores del Ojo Eterno", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un parche floral resistente, modificado genéticamente para prosperar en todo tipo de biomas, suelos y condiciones climáticas. Estas flores liguladas permanecen abiertas tanto de día como de noche, absorbiendo luz de las estrellas locales y de las más distantes.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/es-la/Others.lang.json b/assets/json/es-la/Others.lang.json index 08c50731..70a58b00 100644 --- a/assets/json/es-la/Others.lang.json +++ b/assets/json/es-la/Others.lang.json @@ -4969,7 +4969,7 @@ "Icon": "other/314.png", "Name": "Hiwamiha del destino", "Group": "Astronave exclusiva", - "Description": "Una nave<> exclusiva. Esta nave de contrabando está blindada con una armadura ablativa<> sobrecalentada y equipada con tecnología deflectora de escáner<> para disimular el cargamento de contrabando frente a las autoridades del sistema.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", + "Description": "Una nave<> exclusiva. Esta nave de contrabando está protegida con una armadura ablativa<> supercalentada y equipada con tecnología deflectora de escáner<> para ocultar el cargamento de contrabando de las autoridades del sistema.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -4991,7 +4991,7 @@ "Icon": "other/315.png", "Name": "La locura de Inzakita PY9", "Group": "Astronave exclusiva", - "Description": "Una nave<> exclusiva. Esta nave de combate está armada con un eyector de positrones<> muy potente para destruir rápidamente las naves hostiles.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", + "Description": "Una nave<> exclusiva. Esta nave de combate va armada con un eyector de positrones<> para una destrucción eficiente de naves hostiles.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5013,7 +5013,7 @@ "Icon": "other/316.png", "Name": "El hijo del sol", "Group": "Astronave exclusiva", - "Description": "Una nave<> exclusiva. Esta nave de exploración está configurada con escáneres de economía<> y conflicto<> para sondear a distancia los datos del sistema.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", + "Description": "Una nave<> exclusiva. Esta nave de exploración lleva escáneres de conflicto<> y economía<> para explorar datos de sistema a distancia.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5035,7 +5035,7 @@ "Icon": "other/317.png", "Name": "Habika BF3", "Group": "Astronave exclusiva", - "Description": "Una nave<> exclusiva. La Habiki BF3 es una nave de transporte especializada en el despegue económico con propulsores eficientes y cargador automático de lanzamiento<> que minimiza el consumo de combustible en el lanzamiento.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", + "Description": "Una nave<> exclusiva. El Habiki BF3 es una nave de transporte especializada en el despegue económico con impulsores eficientes<> y un cargador automático de lanzamiento<> que minimiza el consumo de combustible en el lanzamiento.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5057,7 +5057,7 @@ "Icon": "other/318.png", "Name": "Cenizas finales PL4", "Group": "Astronave exclusiva", - "Description": "Una nave<> exclusiva. Esta intimidante nave de combate es fácil de manejar, ya que su tecnología de Anulación de asistencia de vuelo<> le permite desplazarse con destreza entre los cuerpos celestes.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", + "Description": "Una nave<> exclusiva. Esta intimidante nave de combate cuenta con una racionabilidad única. Su tecnología de anulación de asistencia de vuelo<> permite navegar de forma precisa entre cuerpos celestes.\n\nConsigue<> esta nave para añadirla a tu colección o intercámbiala<> por tu nave actual. Cuando estés en un planeta, llama a tus naves desde el menú rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5079,7 +5079,7 @@ "Icon": "other/319.png", "Name": "Huevo de Z. Speltwireum", "Group": "Huevo de compañero exclusivo", - "Description": "Un huevo vivo y fértil, ¡listo para eclosionar!<>\n\nEl embrión de muchas patas balbucea dentro de su caparazón.\n\nLos escaneos indican que el ser interior tiene el potencial genético de una personalidad cooperativa<>.", + "Description": "Un huevo vivo y fértil, ¡listo para eclosionar!<>\n\nUn embrión de muchas patas gorjea dentro del cascarón.\n\nLos escaneos indican que el ser en su interior tiene el potencial genético de tener rasgos cooperativos<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5101,7 +5101,7 @@ "Icon": "other/320.png", "Name": "Huevo de O. Crabubireus", "Group": "Huevo de compañero exclusivo", - "Description": "¡Un huevo vivo y fértil, listo para eclosionar!<>\n\nLa criatura en su interior mueve su cuerpo en forma de burbuja de un lado a otro, impaciente por eclosionar.\n\nLos escaneos indican que el ser interior tiene el potencial genético de una personalidad autónoma<>.", + "Description": "¡Un huevo vivo y fértil, listo para eclosionar!<>\n\nLa criatura en su interior menea su cuerpo bulboso de adelante a atrás, impaciente por eclosionar.\n\nLos escaneos indican que el ser interior tiene el potencial genético de una naturaleza autónoma<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5145,7 +5145,7 @@ "Icon": "other/322.png", "Name": "Susurros del Abismo 4-F33-QP4", "Group": "Dispositivo de supervivencia multifunción exclusivo", - "Description": "Una multiherramienta<> exclusiva. La jabalina ígnea<> de este rifle lanza rayos de energía potentes a objetivos de larga distancia que pueden usarse para dañarlos<> y aturdirlos<>.\n\nConsigue<> esta multiherramienta para añadirla a tu colección o intercámbiala<> por tu multiherramienta actual. Cambia de multiherramienta activa desde la sección Utilidades del menú rápido (QUICK_MENU<>).", + "Description": "Una multiherramienta<> exclusiva. La jabalina ígnea<> de este fusil lanza potentes rayos de energía a larga distancia que pueden usarse tanto para dañar<> como para aturdir<>.\n\nConsigue<> esta multiherramienta para añadirla a tu colección o intercámbiala<> por tu multiherramienta actual. Cambia de multiherramienta activa desde la sección Utilidades del menú rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5277,7 +5277,7 @@ "Icon": "other/328.png", "Name": "Casco solar", "Group": "Casco desbloqueable", - "Description": "Un modificador de apariencia de exotraje<> exclusiva.\n\nAdornado con red de velas de Vesper, este timón de aventurero resuena con la frecuencia de los vientos solares.\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", + "Description": "Una exclusiva manipulación de apariencia de exotraje<>.\n\nAdornado con red de velas de Vesper, este casco de aventurero crepita con la frecuencia de los vientos solares.\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", "BaseValueUnits": 3200.0, "CurrencyType": "Nanites", "MaxStackSize": 5.0, @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Capa de tentáculos", "Group": "Capa desbloqueable", - "Description": "Una exclusiva anulación de apariencia de exosuit.\nTransforme la apariencia de su exosuit en un modificador de apariencia.", + "Description": "Una exclusiva manipulación de apariencia de exotraje<>.\n\nRecorre la galaxia luciendo el entramado revoloteante de tentáculos de esta capa, tejida con fibras de celulosa regenerada.\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Capa Megafauna Cósmica", + "Name": "Capa de megafauna cósmica", "Group": "Capa desbloqueable", - "Description": "Una exclusiva anulación de apariencia de exosuit.\nTransforme la apariencia de su exosuit en un modificador de apariencia.", + "Description": "Una exclusiva manipulación de apariencia de exotraje<>.\n\nEn los confines más lejanos del espacio flota la megafauna cósmica<>, que alinea su camino con el de los viajeros, soñando con realidades posibles.\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Capa gusano titánico", + "Name": "Capa de gusano titán", "Group": "Capa desbloqueable", - "Description": "Una exclusiva anulación de apariencia de exosuit.\n\n'El señor de los gusanos se eleva sobre la tierra polvorienta; su carne se convierte en el cielo'.\n\nTransforme la apariencia de su exosuit en un modificador de apariencia.", + "Description": "Una exclusiva manipulación de apariencia de exotraje<>.\n\n'El señor de los gusanos se eleva sobre la tierra polvorienta; su carne se convierte en el cielo'.\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/es-la/Technology.lang.json b/assets/json/es-la/Technology.lang.json index edcc15c0..103c0686 100644 --- a/assets/json/es-la/Technology.lang.json +++ b/assets/json/es-la/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], @@ -8442,7 +8442,7 @@ "Icon": "technology/228.png", "Name": "Cohete comercial", "Group": "Dispositivo de invocación de misiles mercantiles", - "Description": "Un dispositivo de cohetes personal con enlace directo a la Red de Comercio Galáctico<>. Esta unidad le permite al usuario cargar una nave espacial pequeña con bienes. Después del lanzamiento, los bienes se transportarán a la terminal comercial más cercana y se venderán automáticamente<>.\n\nLlama<> al cohete comercial usando el QUICK_MENU<>.", + "Description": "Un dispositivo de cohetería personal con enlace directo a la Red de Comercio Galáctico<>. Esta unidad permite al usuario cargar una pequeña nave espacial con mercancías. Tras el lanzamiento, los productos se transportarán a la terminal comercial más cercana y se venderán automáticamente<>.\n\nInvoca<> el Cohete comercial usando el QUICK_MENU<>.", "BaseValueUnits": 1.0, "CurrencyType": "None", "Colour": "2177C8", diff --git a/assets/json/es/AlienPuzzle.lang.json b/assets/json/es/AlienPuzzle.lang.json index 5fefd3e3..fb448ece 100644 --- a/assets/json/es/AlienPuzzle.lang.json +++ b/assets/json/es/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es como si la roca hubiera absorbido los conocimientos de aquellos que vivían aquí hace milenios. Ahora me habla en mi lengua nativa." + "La antigua piedra está quieta.El dominio de la Primera Progenie se ha pronunciado." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es como si la roca hubiera absorbido los conocimientos de aquellos que vivían aquí hace milenios. Ahora me habla en mi lengua nativa." + "La placa permanece fría y silenciosa.La saga de los Vy'keen ha concluido." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Es como si la roca hubiera absorbido los conocimientos de aquellos que vivían aquí hace milenios. Ahora me habla en mi lengua nativa." + "La estructura histórica permanece en silencio.El testamento de los Korvax se ha revelado." ], "Options": [ { diff --git a/assets/json/es/Buildings.lang.json b/assets/json/es/Buildings.lang.json index 06261726..6f1d7988 100644 --- a/assets/json/es/Buildings.lang.json +++ b/assets/json/es/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Vida acuática", + "Name": "Anémona acorazada", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un organismo marino carnívoro. Su caparazón blindado encierra el pólipo central, exponiendo solo los tentáculos punzantes. Los espasmos nerviosos involuntarios hacen que la criatura no deje de retorcerse: siempre buscando, siempre hambrienta.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Vida acuática", + "Name": "Tira de coral", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Formación de calcio gigante, configurada de forma natural como una franja de espacio no orientable. Añade un aire misterioso de las profundidades marinas a cualquier base habitable.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Vida acuática", + "Name": "Colonia acuática", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Formación rocosa extraída del fondo de un océano densamente poblado. La vida marina adherida está lacada en una mucosidad rica en nutrientes, que la mantiene alimentada y húmeda en condiciones terrestres.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Flores", + "Name": "Flores Lengua Nocturna", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un parche floral resistente, modificado genéticamente para prosperar en todo tipo de biomas, suelos y condiciones climáticas. Los pétalos de púas protegen las flores de posibles depredadores, perforando la carne con una toxina mortal. Se recomienda el uso de guantes de protección para su manipulación.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Flores", + "Name": "Flores de erizo de mar", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un parche floral resistente, modificado genéticamente para prosperar en todo tipo de biomas, suelos y condiciones climáticas. Estas flores de forma inusual están repletas de polen y desprenden un perfume dulce mareante.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Flores", + "Name": "Flores del Ojo Eterno", "Group": "Decoración orgánica", - "Description": "Adorno construible para embellecer tu base.", + "Description": "Un parche floral resistente, modificado genéticamente para prosperar en todo tipo de biomas, suelos y condiciones climáticas. Estas flores liguladas permanecen abiertas tanto de día como de noche, absorbiendo luz de las estrellas locales y de las más distantes.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/es/Others.lang.json b/assets/json/es/Others.lang.json index 7dcc59d4..9dd0afa2 100644 --- a/assets/json/es/Others.lang.json +++ b/assets/json/es/Others.lang.json @@ -5123,7 +5123,7 @@ "Icon": "other/321.png", "Name": "Sintonizador cuántico de Yauza", "Group": "Dispositivo de supervivencia multifunción exclusivo", - "Description": "Una multiherramienta<> exclusiva. Esta arma alienígena cuenta con un lanzador de pulso<> mejorado con proyectiles con combustible inyectado capaces de prender fuego al objetivo<> tras el impacto.\n\nConsigue<> esta multiherramienta para añadirla a tu colección o intercámbiala<> por tu multiherramienta actual. Cambia de multiherramienta activa desde la sección Utilidades del menú rápido (QUICK_MENU<>).", + "Description": "Una multiherramienta<> exclusiva. Esta arma alienígena cuenta con unlanzador de pulso<> mejorado con proyectiles con combustible inyectado capaces de prender fuego al objetivo<> tras el impacto.\n\nConsigue<> esta multiherramienta para añadirla a tu colección o intercámbiala<> por tu multiherramienta actual. Cambia de multiherramienta activa desde la sección Utilidades del menú rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Capa de tentáculos", "Group": "Capa desbloqueable", - "Description": "Una exclusiva anulación de apariencia de exosuit.\nTransforme la apariencia de su exosuit en un modificador de apariencia.", + "Description": "Una exclusiva manipulación de apariencia de exotraje<>.\n\nRecorre la galaxia luciendo el entramado revoloteante de tentáculos de esta capa. Están tejidos con fibras de celulosa regenerada.\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Capa Megafauna Cósmica", + "Name": "Capa de megafauna cósmica", "Group": "Capa desbloqueable", - "Description": "Una exclusiva anulación de apariencia de exosuit.\nTransforme la apariencia de su exosuit en un modificador de apariencia.", + "Description": "Una exclusiva manipulación de apariencia de exotraje<>.\n\nEn los confines más lejanos del espacio flota la megafauna cósmica<>, que alinea su camino con el de los viajeros, soñando con realidades posibles.\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Capa Gusano Titán", + "Name": "Capa de gusano titán", "Group": "Capa desbloqueable", - "Description": "Una exclusiva anulación de apariencia de exosuit.\n\n“El señor de los gusanos se yergue sobre la tierra polvorienta, su carne es el cielo”.\n\nTransforme la apariencia de su exosuit en un modificador de apariencia.", + "Description": "Una exclusiva manipulación de apariencia de exotraje<>.\n\n«El señor de los gusanos se eleva sobre la tierra polvorienta; su carne se convierte en el cielo».\n\nTransforma la apariencia de tu exotraje en un modificador de apariencia<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/es/Technology.lang.json b/assets/json/es/Technology.lang.json index c22c1596..e8a2a1a5 100644 --- a/assets/json/es/Technology.lang.json +++ b/assets/json/es/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/fr/AlienPuzzle.lang.json b/assets/json/fr/AlienPuzzle.lang.json index a0413f0b..d83bde3b 100644 --- a/assets/json/fr/AlienPuzzle.lang.json +++ b/assets/json/fr/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "C'est comme si la pierre avait absorbé le savoir de ceux qui vivaient ici il y a des millénaires. Elle me parle désormais dans ma langue maternelle." + "La pierre ancienne est muette.L'Empire du Premier-né a été édicté." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "C'est comme si la pierre avait absorbé le savoir de ceux qui vivaient ici il y a des millénaires. Elle me parle désormais dans ma langue maternelle." + "La stèle est froide et silencieuse.La saga des Vy'keen est terminée." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "C'est comme si la pierre avait absorbé le savoir de ceux qui vivaient ici il y a des millénaires. Elle me parle désormais dans ma langue maternelle." + "La structure historique est silencieuse.Le Testament des Korvax a été énoncé." ], "Options": [ { diff --git a/assets/json/fr/Buildings.lang.json b/assets/json/fr/Buildings.lang.json index 81761f36..d4324c70 100644 --- a/assets/json/fr/Buildings.lang.json +++ b/assets/json/fr/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Vie aquatique", + "Name": "Anémone blindée", "Group": "Décoration organique", - "Description": "Ornement constructible pour embellir votre base.", + "Description": "Organisme marin carnivore. Sa coque blindée renferme un polype central, exposant uniquement les tentacules urticants. Sujette à des spasmes nerveux involontaires, la créature se tord perpétuellement : toujours en chasse, toujours affamée.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Vie aquatique", + "Name": "Récif corallien", "Group": "Décoration organique", - "Description": "Ornement constructible pour embellir votre base.", + "Description": "Une formation calcaire géante, naturellement façonnée sans orientation définissable. Confère le mystère des fonds marins à toute base habitable.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Vie aquatique", + "Name": "Colonie aquatique", "Group": "Décoration organique", - "Description": "Ornement constructible pour embellir votre base.", + "Description": "Une formation rocheuse tirée du fond d'un océan densément peuplé. La vie marine qui s'y attache est plongée dans un mucus riche en nutriments qui la nourrit et en préserve l'humidité dans l'atmosphère terrestre.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Fleurs", + "Name": "Fleurs noctilingues", "Group": "Décoration organique", - "Description": "Ornement constructible pour embellir votre base.", + "Description": "Ce massif floral robuste a été génétiquement modifié pour prospérer dans tous les biomes, types de sols et conditions météorologiques. Les pétales barbelés protègent les fleurs des prédateurs potentiels, perçant la chair avec une toxine mortelle. Gants de protection recommandés lors de la manipulation.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Fleurs", + "Name": "Fleurs d'oursin", "Group": "Décoration organique", - "Description": "Ornement constructible pour embellir votre base.", + "Description": "Ce massif floral robuste a été génétiquement modifié pour prospérer dans tous les biomes, types de sols et conditions météorologiques. Ces fleurs aux formes inhabituelles sont remplies de pollen et dégagent un parfum capiteux.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Fleurs", + "Name": "Œillets éternels", "Group": "Décoration organique", - "Description": "Ornement constructible pour embellir votre base.", + "Description": "Ce massif floral robuste a été génétiquement modifié pour prospérer dans tous les biomes, types de sols et conditions météorologiques. Ces fleurs ligulées restent ouvertes jour et nuit, absorbant la lumière des étoiles locales et lointaines.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/fr/Others.lang.json b/assets/json/fr/Others.lang.json index 161136a2..5859d377 100644 --- a/assets/json/fr/Others.lang.json +++ b/assets/json/fr/Others.lang.json @@ -3914,7 +3914,7 @@ "Icon": "other/256.png", "Name": "Pack de feux d'artifice de luxe", "Group": "Multi-pack de pyrotechnie", - "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> (BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", + "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> \\n(BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -3936,7 +3936,7 @@ "Icon": "other/256.png", "Name": "Pack de feux d'artifice de luxe", "Group": "Multi-pack de pyrotechnie", - "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> (BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", + "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> \\n(BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -3958,7 +3958,7 @@ "Icon": "other/256.png", "Name": "Pack de feux d'artifice de luxe", "Group": "Multi-pack de pyrotechnie", - "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> (BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", + "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> \\n(BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -3980,7 +3980,7 @@ "Icon": "other/256.png", "Name": "Pack de feux d'artifice de luxe", "Group": "Multi-pack de pyrotechnie", - "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> (BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", + "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> \\n(BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -4002,7 +4002,7 @@ "Icon": "other/256.png", "Name": "Pack de feux d'artifice de luxe", "Group": "Multi-pack de pyrotechnie", - "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> (BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", + "Description": "Un pack de trois sortes de feux d'artifice de luxe, dont une triple rafale<>, un double chrome<> et une roue de Hirk<>. Allumez-les pour illuminer les cieux de figures scintillantes.\n\nPlacez le tube de lancement depuis le menu de construction<> \\n(BUILD_MENU<>). Attention<> : ne pas viser les créatures vivantes. Non recommandé pour un usage en intérieur.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Cape à tentacules", "Group": "Cape à débloquer", - "Description": "Un remplacement de l'apparence exosuit exclusive.\nTransformez l'apparence de votre exosuit à un modificateur d'apparence.", + "Description": "Un changement d'apparence d'exocombinaison<> exclusif.\n\nTraversez la galaxie avec ce treillis de tentacules flottants, tissé à partir de fibres de cellulose régénérée.\n\nTransformez l'apparence de votre Exosuit avec un modificateur d'apparence<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Cape Mégafaune Cosmique", + "Name": "Cape de mégafaune cosmique", "Group": "Cape à débloquer", - "Description": "Un remplacement de l'apparence exosuit exclusive.\nTransformez l'apparence de votre exosuit à un modificateur d'apparence.", + "Description": "Un changement d'apparence d'exocombinaison<> exclusif.\n\nDans les confins de l'espace nagent des mégafaunes cosmiques<>, alignant leurs chemins avec les Voyageurs, rêvant de réalités possibles.\n\nTransformez l'apparence de votre Exosuit avec un modificateur d'apparence<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Cape ver titan", + "Name": "Cape de ver titan", "Group": "Cape à débloquer", - "Description": "Un remplacement de l'apparence exosuit exclusive.\n\n'Le seigneur ver s'élève au-dessus de la terre poussiéreuse, sa chair devient ciel.'\n\nTransformez l'apparence de votre exosuit à un modificateur d'apparence.", + "Description": "Un changement d'apparence d'exocombinaison<> exclusif.\n\n« Le seigneur des vers domine la terre poussiéreuse ; sa chair devient ciel. »\n\nTransformez l'apparence de votre combinaison dans un modificateur d'apparence<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/fr/Technology.lang.json b/assets/json/fr/Technology.lang.json index 9f9b5a73..535ac172 100644 --- a/assets/json/fr/Technology.lang.json +++ b/assets/json/fr/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/it/AlienPuzzle.lang.json b/assets/json/it/AlienPuzzle.lang.json index 09dd0599..b29ffdc5 100644 --- a/assets/json/it/AlienPuzzle.lang.json +++ b/assets/json/it/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "È come se la pietra avesse assorbito la conoscenza di coloro che vissero qui migliaia di anni fa. Mi parla nella mia lingua madre." + "L'antica pietra è ferma.Il dominio della Prima Progenie è stato annunciato." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "È come se la pietra avesse assorbito la conoscenza di coloro che vissero qui migliaia di anni fa. Mi parla nella mia lingua madre." + "La pietra è fredda e silenziosa.La Saga dei Vy'keen si è conclusa." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "È come se la pietra avesse assorbito la conoscenza di coloro che vissero qui migliaia di anni fa. Mi parla nella mia lingua madre." + "La struttura storica è silenziosa.Il testamento del Korvax è stato pronunciato." ], "Options": [ { diff --git a/assets/json/it/Buildings.lang.json b/assets/json/it/Buildings.lang.json index c1e04b23..6da7bd72 100644 --- a/assets/json/it/Buildings.lang.json +++ b/assets/json/it/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Vita acquatica", + "Name": "Anemone corazzato", "Group": "Decorazione organica", - "Description": "Decorazione costruibile per abbellire la tua base.", + "Description": "Un organismo marino carnivoro, con un guscio corazzato che racchiude il polipo centrale, esponendo solo i tentacoli urticanti. Gli spasmi nervosi involontari fanno sì che la creatura si contorca in continuazione, sempre alla ricerca di qualcosa, sempre affamata.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Vita acquatica", + "Name": "Striscia di corallo", "Group": "Decorazione organica", - "Description": "Decorazione costruibile per abbellire la tua base.", + "Description": "Una gigantesca formazione calcarea, strutturata per natura in una striscia di spazio non orientabile. Aggiunge una misteriosa qualità abissale a qualsiasi base abitabile.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Vita acquatica", + "Name": "Colonia acquatica", "Group": "Decorazione organica", - "Description": "Decorazione costruibile per abbellire la tua base.", + "Description": "Una formazione rocciosa estratta dalle profondità di un oceano densamente popolato. La vita marina che aderisce a questa superficie è ricoperta da un muco ricco di sostanze nutritive, che la sfama e la mantiene umida in condizioni terrestri.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Fiori", + "Name": "Fiori di linguabuia", "Group": "Decorazione organica", - "Description": "Decorazione costruibile per abbellire la tua base.", + "Description": "Una pianta floreale resistente, modificata geneticamente per prosperare in ogni bioma, tipo di terreno e condizione climatica. I petali spinati proteggono i fiori da eventuali predatori, perforando la carne e iniettando una tossina letale. Si raccomanda l'uso di guanti hazmat durante l'uso.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Fiori", + "Name": "Fiori riccio", "Group": "Decorazione organica", - "Description": "Decorazione costruibile per abbellire la tua base.", + "Description": "Una pianta floreale resistente, modificata geneticamente per prosperare in ogni bioma, tipo di terreno e condizione climatica. Questi fiori dalla forma insolita sono pieni di polline e rilasciano un profumo dolcissimo e stordente.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Fiori", + "Name": "Fiori dell'occhio eterno", "Group": "Decorazione organica", - "Description": "Decorazione costruibile per abbellire la tua base.", + "Description": "Una pianta floreale resistente, modificata geneticamente per prosperare in ogni bioma, tipo di terreno e condizione climatica. Questi fiori ligulati rimangono aperti giorno e notte, assorbendo la luce di stelle vicine e lontane.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/it/Others.lang.json b/assets/json/it/Others.lang.json index 2de104df..906067d6 100644 --- a/assets/json/it/Others.lang.json +++ b/assets/json/it/Others.lang.json @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Mantello tentacolare", "Group": "Mantello sbloccabile", - "Description": "Un'apparenza esclusiva di esosuuit override.\nTrasforma l'aspetto del tuo esosuit a un modificatore di aspetto.", + "Description": "Un esclusivo override aspetto dell'exotuta<>.\n\nSfreccia nella galassia con il reticolo di guizzanti tentacoli di questo mantello, tessuto con fibre di cellulosa rigenerate.\n\nTrasforma l'aspetto dell'exotuta presso un modificatore aspetto<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Mantello Megafauna Cosmica", + "Name": "Mantello megafauna cosmica", "Group": "Mantello sbloccabile", - "Description": "Un'apparenza esclusiva di esosuuit override.\nTrasforma l'aspetto del tuo esosuit a un modificatore di aspetto.", + "Description": "Un esclusivo override aspetto dell'exotuta<>.\n\nAi confini più remoti dello spazio nuota megafauna cosmica<>, che unisce i propri percorsi con quelli dei Viaggiatori, sognando realtà possibili.\n\nTrasforma l'aspetto dell'exotuta presso un modificatore aspetto<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5340,7 +5340,7 @@ "Icon": "other/331.png", "Name": "Mantello verme titano", "Group": "Mantello sbloccabile", - "Description": "Un'apparenza esclusiva di esosuuit override.\n\n'Il signore dei vermi torreggia su questa terra desolata, la sua carne muta nel cielo.'\n\nTrasforma l'aspetto del tuo esosuit a un modificatore di aspetto.", + "Description": "Un esclusivo override aspetto dell'exotuta<>.\n\n'Il signore dei vermi torreggia su questa terra desolata, la sua carne muta nel cielo.'\n\nTrasforma l'aspetto dell'exotuta presso un modificatore aspetto<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/it/Technology.lang.json b/assets/json/it/Technology.lang.json index 879f5071..6601c01a 100644 --- a/assets/json/it/Technology.lang.json +++ b/assets/json/it/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/ja/AlienPuzzle.lang.json b/assets/json/ja/AlienPuzzle.lang.json index 24ab8143..236c6f5f 100644 --- a/assets/json/ja/AlienPuzzle.lang.json +++ b/assets/json/ja/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "まるで何千年も前にこの地で暮らしていた者たちの 知識を石碑が吸収してしまったかのようだ。 私の母国語で話しかけてくる。" + "古代の石は静かだ。はじまりの民の領土のことは語られた。" ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "まるで何千年も前にこの地で暮らしていた者たちの 知識を石碑が吸収してしまったかのようだ。 私の母国語で話しかけてくる。" + "この石碑は冷たく、静かだ。ヴァイキーンの英雄伝は結末を迎えた。" ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "まるで何千年も前にこの地で暮らしていた者たちの 知識を石碑が吸収してしまったかのようだ。 私の母国語で話しかけてくる。" + "歴史的建造物は静かだ。コーバックスの遺言は語られた。" ], "Options": [ { diff --git a/assets/json/ja/Buildings.lang.json b/assets/json/ja/Buildings.lang.json index 1cbe3789..06e99d5d 100644 --- a/assets/json/ja/Buildings.lang.json +++ b/assets/json/ja/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "水中生物", + "Name": "装甲イソギンチャク", "Group": "有機物デコレーション", - "Description": "基地を美しくするための建築用の装飾品。", + "Description": "肉食性の海洋生物。頑丈な殻が核となるポリプを包み込み、刺胞を持つ触手だけが露出している。この生物は不随意のけいれんにより、身をよじらせ続けている。満たされない飢えを抱え、常に獲物を探し続けながら...", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "水中生物", + "Name": "ストリップコーラル", "Group": "有機物デコレーション", - "Description": "基地を美しくするための建築用の装飾品。", + "Description": "巨大なカルシウム化合物の構造体で、自然にねじれた空間を形作る。居住可能な基地に、神秘的な深海の景色をもたらす。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "水中生物", + "Name": "水生コロニー", "Group": "有機物デコレーション", - "Description": "基地を美しくするための建築用の装飾品。", + "Description": "生物密度の高い海底から引き揚げられた岩の塊。付着した海洋生物は、餌を取り、水分を保つために栄養の豊富な粘液で覆われている。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "花", + "Name": "ナイトタンフラワー", "Group": "有機物デコレーション", - "Description": "基地を美しくするための建築用の装飾品。", + "Description": "遺伝子組み換えされ、土壌や環境を問わずあらゆるバイオームで生育できるようになった頑強な花々。棘のある花弁が捕食しようとする者から花を守り、相手の肉を刺して猛毒で侵す。取り扱う際には、危険物用手袋の装着が推奨される。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "花", + "Name": "アーチンフラワー", "Group": "有機物デコレーション", - "Description": "基地を美しくするための建築用の装飾品。", + "Description": "遺伝子組み換えされ、土壌や環境を問わずあらゆるバイオームで生育できるようになった頑強な花々。この珍しい形の花は、花粉が詰まっていて、目まいを起こすほどの甘い香りを放つ。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "花", + "Name": "エターナルアイフラワー", "Group": "有機物デコレーション", - "Description": "基地を美しくするための建築用の装飾品。", + "Description": "遺伝子組み換えされ、土壌や環境を問わずあらゆるバイオームで生育できるようになった頑強な花々。この舌状花は昼も夜も咲き続けて、昼の太陽と夜の星々のどちらの光も吸収する。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/ja/Others.lang.json b/assets/json/ja/Others.lang.json index 376f1564..95fd810d 100644 --- a/assets/json/ja/Others.lang.json +++ b/assets/json/ja/Others.lang.json @@ -5296,9 +5296,9 @@ { "Id": "other329", "Icon": "other/329.png", - "Name": "触手の ケープ", + "Name": "触手のケープ", "Group": "アンロック可能なケープ", - "Description": "排他的なエクソスーツの外観がオーバーライドします。\n外観修飾子でエクソスーツの外観を変換します。", + "Description": "特別製のエクソスーツ外見変更モジュール<>。\n\nゆらめく触手が交差するこのケープで銀河を流れるように飛び回ろう。ケープは再生セルロース繊維で編まれている。\n\nエクソスーツの外見は、外見変更モジュール<>で変更できる。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "宇宙巨大生物 ケープ", + "Name": "宇宙巨大生物のケープ", "Group": "アンロック可能なケープ", - "Description": "排他的なエクソスーツの外観がオーバーライドします。\n外観修飾子でエクソスーツの外観を変換します。", + "Description": "特別製のエクソスーツ外見変更モジュール<>。\n\n宇宙の最果てでは、宇宙巨大生物<>がトラベラーと並ぶように泳ぎ、様々な起こりうる現実を夢見ている。\n\nエクソスーツの外見は、外見変更モジュール<>で変更できる。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "タイタンワーム ケープ", + "Name": "タイタンワームのケープ", "Group": "アンロック可能なケープ", - "Description": "排他的なエクソスーツの外観がオーバーライドします。\n\n「ワームロードは砂塵舞う大地にそびえ立ち、その身体は空となる。」\n\n外観修飾子でエクソスーツの外観を変換します。", + "Description": "特別製のエクソスーツ外見変更モジュール<>。\n\n「ワームロードは砂塵舞う大地にそびえ立ち、その身体は空となる」\n\nエクソスーツの外見は、外見変更モジュール<>で変更できる。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/ja/Technology.lang.json b/assets/json/ja/Technology.lang.json index 3592f2aa..c0ede7c9 100644 --- a/assets/json/ja/Technology.lang.json +++ b/assets/json/ja/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/ko/AlienPuzzle.lang.json b/assets/json/ko/AlienPuzzle.lang.json index f3e07b6d..9252bdee 100644 --- a/assets/json/ko/AlienPuzzle.lang.json +++ b/assets/json/ko/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "이 비석은 수천 년 전에 이곳에 살았던 이들의 지식을 흡수했던 듯하다. 이제 비석은 내 모국어로 내게 말한다." + "고대의 돌은 고요하다.퍼스트스폰의 지배는 선포되었다." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "이 비석은 수천 년 전에 이곳에 살았던 이들의 지식을 흡수했던 듯하다. 이제 비석은 내 모국어로 내게 말한다." + "플랙은 차갑고 조용하다.바이-킨의 전설은 결말을 맞이했다." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "이 비석은 수천 년 전에 이곳에 살았던 이들의 지식을 흡수했던 듯하다. 이제 비석은 내 모국어로 내게 말한다." + "역사적 구조물은 조용하다.코벡스의 증거는 언급되었다." ], "Options": [ { diff --git a/assets/json/ko/Buildings.lang.json b/assets/json/ko/Buildings.lang.json index 9228cf2e..a66da18b 100644 --- a/assets/json/ko/Buildings.lang.json +++ b/assets/json/ko/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "수중 생물", + "Name": "기갑 아네모네", "Group": "유기물 장식", - "Description": "자신의 기지를 꾸미는 장식물입니다.", + "Description": "육식성 해양 생물입니다. 중앙의 폴립은 기갑 외피가 둘러싸고 있어 따끔한 촉수만 밖으로 드러납니다. 무의식적인 신경 발작으로 이 생물은 항상 굶주린 채 먹이를 찾아다니며 영원히 꿈틀거리게 됩니다.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "수중 생물", + "Name": "산호 지구", "Group": "유기물 장식", - "Description": "자신의 기지를 꾸미는 장식물입니다.", + "Description": "자연스럽게 방향성 없는 공간의 지구 형태를 띤 거대한 칼슘 형성물입니다. 거주 가능 기지 어디라도 신비한 해저 분위기를 더해 줍니다.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "수중 생물", + "Name": "해양 군집체", "Group": "유기물 장식", - "Description": "자신의 기지를 꾸미는 장식물입니다.", + "Description": "생물의 밀도가 높은 해저 바닥에서 가져온 암석 형성물입니다. 부착된 해양 생물은 영양이 풍부한 점액으로 칠해져 지상에서도 먹이 및 습기를 제공할 수 있습니다.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "화초", + "Name": "밤혓바닥 꽃", "Group": "유기물 장식", - "Description": "자신의 기지를 꾸미는 장식물입니다.", + "Description": "어떠한 생물군계, 토양 및 기상 조건에서도 잘 자라도록 유전자 변형을 거친 튼튼한 꽃입니다. 살을 뚫을 정도의 가시가 달린 꽃잎에는 치명적인 독이 있어 잠재적인 포식자로부터 꽃을 보호합니다. 다루는 동안 방호장갑의 사용이 권장됩니다.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "화초", + "Name": "성게 꽃", "Group": "유기물 장식", - "Description": "자신의 기지를 꾸미는 장식물입니다.", + "Description": "어떠한 생물군계, 토양 및 기상 조건에서도 잘 자라도록 유전자 변형을 거친 튼튼한 꽃입니다. 이 특이한 모양의 꽃 안에는 꽃가루가 가득 차 있으며 어지러울 정도로 달콤한 향을 내뿜습니다.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "화초", + "Name": "영원의 눈", "Group": "유기물 장식", - "Description": "자신의 기지를 꾸미는 장식물입니다.", + "Description": "어떠한 생물군계, 토양 및 기상 조건에서도 잘 자라도록 유전자 변형을 거친 튼튼한 꽃입니다. 이 혀처럼 생긴 꽃은 하루 종일 열린 채로 가깝고 먼 곳의 별에서 빛을 흡수합니다.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/ko/ConstructedTechnology.lang.json b/assets/json/ko/ConstructedTechnology.lang.json index 2a85cbe3..42300b42 100644 --- a/assets/json/ko/ConstructedTechnology.lang.json +++ b/assets/json/ko/ConstructedTechnology.lang.json @@ -2865,7 +2865,7 @@ "Icon": "constructedTechnology/101.png", "Name": "엑소슈트 업그레이드 차트", "Group": "암호화된 항법 데이터", - "Description": "암호화 항법 데이터입니다. 해독 시 엑소슈트 인벤토리 업그레이드<>가 포함된 드롭 포드<>의 위치가 표시됩니다.\n\n인벤토리에서 좌표를 선택하고 경로 구성<>(FE_ALT1<>)을 사용해 엑소슈트 화면에서 위치를 지정하십시오.", + "Description": "암호화 항법 데이터입니다. 해독 시 엑소슈트 인벤토리 업그레이드<>가 포함된 드롭 포드<>의 위치가 표시됩니다.\n\n인벤토리에서 좌표를 선택하고 경로 구성<>(FE_ALT1<>)을 사용해 엑소슈트 화면에서 위치를 지정하세요.", "BaseValueUnits": 85000.0, "CurrencyType": "None", "MaxStackSize": 20.0, diff --git a/assets/json/ko/Others.lang.json b/assets/json/ko/Others.lang.json index 62b6d417..cbc47ab6 100644 --- a/assets/json/ko/Others.lang.json +++ b/assets/json/ko/Others.lang.json @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "촉수 달린 망토", "Group": "해제 가능한 망토", - "Description": "독점적 인 엑소 슈트 외관은 재정의합니다.\n외관 수정 자에서 엑소 슈트의 모양을 변환하십시오.", + "Description": "독점 엑소슈트 외관 오버라이드<>입니다.\n\n재생 셀룰로오스 섬유로 짠 촉수가 격자를 이루며 하늘거리는 이 망토를 착용하고 은하를 떠다녀 보십시오.\n\n외모 수정기<>에서 엑소슈트의 외관을 변형합니다.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5319,7 +5319,7 @@ "Icon": "other/330.png", "Name": "거대 우주동물 망토", "Group": "해제 가능한 망토", - "Description": "독점적 인 엑소 슈트 외관은 재정의합니다.\n외관 수정 자에서 엑소 슈트의 모양을 변환하십시오.", + "Description": "독점 엑소슈트 외관 오버라이드<>입니다.\n\n우주의 가장 머나먼 곳에서 유영하는 거대 우주동물<>은 여행자의 길을 따르며 여러 잠재적 현실의 꿈을 꿉니다.\n\n외모 수정기<>에서 엑소슈트의 외관을 변형합니다.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5340,7 +5340,7 @@ "Icon": "other/331.png", "Name": "타이탄 웜 망토", "Group": "해제 가능한 망토", - "Description": "독점적 인 엑소 슈트 외관은 재정의합니다.\n\n'벌레의 제왕이 먼지가 자욱한 땅 위로 머리를 내민다. 하늘을 가릴 듯 거대한 체구다.'\n\n외관 수정 자에서 엑소 슈트의 모양을 변환하십시오.", + "Description": "독점 엑소슈트 외관 오버라이드<>입니다.\n\n'먼지투성이 땅 위로 거대하게 솟아오른 벌레 군주는 마치 하늘과 같았다.'\n\n외모 수정기<>에서 엑소슈트의 외관을 변형합니다.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/ko/Technology.lang.json b/assets/json/ko/Technology.lang.json index e6d97675..6c875877 100644 --- a/assets/json/ko/Technology.lang.json +++ b/assets/json/ko/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/nl/AlienPuzzle.lang.json b/assets/json/nl/AlienPuzzle.lang.json index 4bef5f04..efea194d 100644 --- a/assets/json/nl/AlienPuzzle.lang.json +++ b/assets/json/nl/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Het lijkt wel alsof de steen de kennis heeft geabsorbeerd van de volkeren die hier duizenden jaren geleden leefden. Het spreekt me nu toe in mijn eigen taal." + "De oude steen is stil.De heerschappij van de Eerstgeborenen is uitgesproken." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Het lijkt wel alsof de steen de kennis heeft geabsorbeerd van de volkeren die hier duizenden jaren geleden leefden. Het spreekt me nu toe in mijn eigen taal." + "De plaquette is koud en stil.De saga van de Vy'keen is afgelopen." ], "Options": [ { @@ -10313,7 +10313,7 @@ "Number": 0, "IncomingMessages": [ "De oude markering bromt op een frequentie die me diep raakt, terwijl ik de stemmen van de Korvax-echo's hoor.", - "Kennis opent de deur naar het bevatten van het mogelijke. De Atlas sprak in fragmenten. De Atlas-interfaces zijn hun schaduwen. De monolieten hun overal aanwezige kinderen.\n\nSamen vormen zij de wijsheid van het oneindige. Die moeten worden begrepen." + "Kennis opent de deur naar het bevatten van het mogelijke. De Atlas sprak in fragmenten. De Atlas-interfaces zijn hun schaduwen. De monolieten hun overal aanwezige kinderen.\n\nSamen vormen zijn de wijsheid van het oneindige. Die moeten worden begrepen." ], "Options": [ { @@ -11067,7 +11067,7 @@ "Number": 0, "IncomingMessages": [ "De vreemde stenen markering deelt de wijsheid van de Korvax-echo's met hen die zich deze eigen willen maken. Ik ken het dialect niet, maar toch begrijp ik het verhaal van hen die hier ooit hun erediensten hielden.", - "De Gek stonden in de schaduw van de Atlas-interface. Hij ging niet open. Hij zei niets. Toch voelden de Eerstgeborenen bewondering. Ze voelden hoe nietig ze waren in het oneindige universum.\n\nHet was onwaarschijnlijk. Maar binnen de oneindigheid is niets onmogelijk. De Gek veranderden. Hun aftakeling was begonnen." + "De Gek stonden in de schaduw van het Atlas-interface. Hij ging niet open. Hij zei niets. Toch voelden de Eerstgeborenen bewondering. Ze voelden hoe nietig ze waren in het oneindige universum.\n\nHet was onwaarschijnlijk. Maar binnen de oneindigheid is niets onmogelijk. De Gek veranderden. Hun aftakeling was begonnen." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Het lijkt wel alsof de steen de kennis heeft geabsorbeerd van de volkeren die hier duizenden jaren geleden leefden. Het spreekt me nu toe in mijn eigen taal." + "Het historische bouwwerk is stil.Het testament van de Korvax is uitgesproken." ], "Options": [ { diff --git a/assets/json/nl/Buildings.lang.json b/assets/json/nl/Buildings.lang.json index a3c54347..915e3bf2 100644 --- a/assets/json/nl/Buildings.lang.json +++ b/assets/json/nl/Buildings.lang.json @@ -18813,7 +18813,7 @@ "Icon": "building/925.png", "Name": "Navigatiearchief", "Group": "Veilige kaartopslag", - "Description": "Een veilig opslagvaartuig, ontworpen als een haast onverwoestbare kamer voor de bewaren van essentiële navigatiekaarten.\n\nDit archief is weerbaar en ontworpen om duizenden jaren mee te gaan, en is volledig vrij van elektronische componenten.", + "Description": "Een veilig opslagvaartuig, ontworpen als een haast onverwoestbare kamer voor het bewaren van essentiële navigatiekaarten.\n\nDit archief is weerbaar en ontworpen om duizenden jaren mee te gaan, en is volledig vrij van elektronische componenten.", "BaseValueUnits": 500.0, "CurrencyType": "None", "MaxStackSize": 5.0, @@ -19643,7 +19643,7 @@ { "Id": "build957", "Icon": "building/957.png", - "Name": "Poster met Reiziger in zwart en goud", + "Name": "Poster met reiziger in zwart en goud", "Group": "Decoratie", "Description": "Een exclusieve, zelfklevende, kreukvrije wandversiering.\nEen weelderige zwart-gouden poster waarop een Reiziger is afgebeeld als Apollo.", "BaseValueUnits": 400.0, @@ -19805,7 +19805,7 @@ "Icon": "building/963.png", "Name": "Expeditiesticker Exobiologie", "Group": "Decoratie", - "Description": "Een exclusieve sticker om je basis wat te verfraaien.\n\nDeze sticker herinnert aan de voltooiing van de expeditie Exobiologie<> en is een eerbetoon aan het vreedzaam samenleven van Reizigers met de talloze diersoorten in het universum.", + "Description": "Een exclusieve sticker om je basis wat te verfraaien.\n\nDeze sticker herinnert aan de voltooiing van de expeditie Exobiologie<> en is een eerbetoon aan het vreedzaam samenleven van reizigers met de talloze diersoorten in het universum.", "BaseValueUnits": 400.0, "CurrencyType": "None", "MaxStackSize": 5.0, @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Aquatisch leven", + "Name": "Schildanemoon", "Group": "Organische decoratie", - "Description": "Decoratie om je basis mooier te maken.", + "Description": "Een vleesetend marien organisme. Een gepantserd omhulsel omsluit de kern van de poliep, waardoor alleen de stekende tentakels zichtbaar zijn. Ongecontroleerde spiertrekkingen zorgen ervoor dat het schepsel voortdurend kronkelt – altijd zoekend, altijd hongerig.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Aquatisch leven", + "Name": "Strookkoraal", "Group": "Organische decoratie", - "Description": "Decoratie om je basis mooier te maken.", + "Description": "Een gigantische calciumformatie, natuurlijk gevormd tot een strook niet-oriënteerbare ruimte. Voegt een mysterieuze diepzeekwaliteit toe aan elke bewoonbare basis.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Aquatisch leven", + "Name": "Aquatische kolonie", "Group": "Organische decoratie", - "Description": "Decoratie om je basis mooier te maken.", + "Description": "Een rotsformatie uit de bodem van een dichtbevolkte oceaan. Het aangehechte zeeleven zit gelakt in een voedingsrijk slijm om de kolonie gevoed en vochtig te houden in terrestrische omstandigheden.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Bloemen", + "Name": "Nachttongbloemen", "Group": "Organische decoratie", - "Description": "Decoratie om je basis mooier te maken.", + "Description": "Een winterhard bloemenveld, genetisch gemodificeerd om te gedijen in alle biomen, grondsoorten en weersomstandigheden. De bloemblaadjes met weerhaken beschermen de bloemen tegen mogelijke roofdieren en doorboren vlees met een dodelijk gif. Het gebruik van veiligheidshandschoenen is aanbevolen.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Bloemen", + "Name": "Zee-egelbloemen", "Group": "Organische decoratie", - "Description": "Decoratie om je basis mooier te maken.", + "Description": "Een winterhard bloemenveld, genetisch gemodificeerd om te gedijen in alle biomen, grondsoorten en weersomstandigheden. Deze ongebruikelijk gevormde bloemen zitten boordevol stuifmeel en geven een duizelingwekkend zoet parfum af.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Bloemen", + "Name": "Eeuwigheidsoogbloemen", "Group": "Organische decoratie", - "Description": "Decoratie om je basis mooier te maken.", + "Description": "Een winterhard bloemenveld, genetisch gemodificeerd om te gedijen in alle biomen, grondsoorten en weersomstandigheden. Deze ligulate bloesems blijven dag en nacht open en absorberen licht van zowel lokale als verre sterren.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/nl/Others.lang.json b/assets/json/nl/Others.lang.json index cf323201..5964c51d 100644 --- a/assets/json/nl/Others.lang.json +++ b/assets/json/nl/Others.lang.json @@ -4576,7 +4576,7 @@ "Icon": "other/296.png", "Name": "Helios-ei", "Group": "Gevangen ruimteprotozoa", - "Description": "Een levend, bevrucht ei, klaar om uit te komen!<>\n\nHet straalt een spookachtige gloed uit dat er zowel prachtig als vervloekt uitziet.\n\nScans geven aan dat het wezen het genetisch potentieel heeft om geleiachtig<> en spectraal<> te worden.", + "Description": "Een levend, bevrucht ei, klaar om uit te komen!<>\n\nHet straalt een spookachtige gloed uit die er zowel prachtig als vervloekt uitziet.\n\nScans geven aan dat het wezen het genetisch potentieel heeft om geleiachtig<> en spectraal<> te worden.", "BaseValueUnits": 3200.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -4989,7 +4989,7 @@ { "Id": "other315", "Icon": "other/315.png", - "Name": "Inzakita's Folly PY9", + "Name": "Inzakita's dwaasheid PY9", "Group": "Exclusief ruimteschip", "Description": "Een exclusief ruimteschip<>. Dit oorlogsschip is uitgerust met een krachtige positronuitwerper<>, waarmee vijandelijke schepen razendsnel kunnen worden vernietigd.\n\nClaim<> dit schip om het toe te voegen aan je verzameling of ruil<> je huidige schip er voor in. Op een planeet kun je schepen oproepen via het snelmenu (QUICK_MENU<>).", "BaseValueUnits": 3000.0, @@ -5011,7 +5011,7 @@ { "Id": "other316", "Icon": "other/316.png", - "Name": "The Son of the Sun", + "Name": "De zoon van de zon", "Group": "Exclusief ruimteschip", "Description": "Een exclusief ruimteschip<>. Dit verkenningsschip is uitgerust met economie<>- en conflictscanners<> waarmee ze systeemgegevens op afstand kunnen scannen.\n\nClaim<> dit schip om het toe te voegen aan je verzameling of ruil<> je huidige schip er voor in. Op een planeet kun je schepen oproepen via het snelmenu (QUICK_MENU<>).", "BaseValueUnits": 3000.0, @@ -5055,7 +5055,7 @@ { "Id": "other318", "Icon": "other/318.png", - "Name": "Final Ashes PL4", + "Name": "Laatste as PL4", "Group": "Exclusief ruimteschip", "Description": "Een exclusief ruimteschip<>. Dit imposante oorlogsschip is uitzonderlijk wendbaar. Dankzij de technologie Opheffing vluchtassistentie<> kan dit schip behendig tussen hemellichamen door zweven.\n\nClaim<> dit schip om het toe te voegen aan je verzameling of ruil<> je huidige schip er voor in. Op een planeet kun je schepen oproepen via het snelmenu (QUICK_MENU<>).", "BaseValueUnits": 3000.0, @@ -5077,7 +5077,7 @@ { "Id": "other319", "Icon": "other/319.png", - "Name": "Z. Speltwireum Egg", + "Name": "Z. Speltwireum-ei", "Group": "Exclusief ei van gezelschapsdier", "Description": "Een levend, bevrucht ei, klaar om uit te komen!<>\n\nDe veelpotige embryo kwettert in zijn omhulsel.\n\nUit scans blijkt dat het wezen binnenin het genetisch potentieel heeft om een samenwerkende<> persoonlijkheid te ontwikkelen.", "BaseValueUnits": 3000.0, @@ -5099,7 +5099,7 @@ { "Id": "other320", "Icon": "other/320.png", - "Name": "O. Crabubireus Egg", + "Name": "O. Crabubireus-ei", "Group": "Exclusief ei van gezelschapsdier", "Description": "Een levend, bevrucht ei, klaar om uit te komen!<>\n\nHet wezen beweegt zijn bobbelachtige lijf heen en weer en wil niets liever dan uitkomen.\n\nUit scans blijkt dat het wezen binnenin het genetisch potentieel heeft om een zelfstandige<> persoonlijkheid te ontwikkelen.", "BaseValueUnits": 3000.0, @@ -5121,7 +5121,7 @@ { "Id": "other321", "Icon": "other/321.png", - "Name": "Yauza's Quantum Tuner", + "Name": "Yauza's kwantumafstemmer", "Group": "Exclusief multifunctioneel overlevingsapparaat", "Description": "Een exclusieve multitool<>. Dit buitenaardse wapen is uitgerust met een verbeterde pulsspitter<>, met brandstof geïnjecteerde projectielen die doelwitten laten ontbranden<>.\n\nPak<> deze multitool om 'm toe te voegen aan je verzameling of ruil<> je huidige multitool er voor in. Wissel tussen actieve multitools via het gedeelte Functies van het snelmenu (QUICK_MENU<>).", "BaseValueUnits": 3000.0, @@ -5143,7 +5143,7 @@ { "Id": "other322", "Icon": "other/322.png", - "Name": "Whispers of the Abyss 4-F33-QP4", + "Name": "Gefluister van de abyss 4-F33-QP4", "Group": "Exclusief multifunctioneel overlevingsapparaat", "Description": "Een exclusieve multitool<>. De vuurspeer<> van dit geweer produceert nauwkeurige, krachtige energiestralen om doelen op grote afstand te raken, waarbij deze beschadigd<> en verdoofd<> raken.\n\nPak<> deze multitool om 'm toe te voegen aan je verzameling of ruil<> je huidige multitool er voor in. Wissel tussen actieve multitools via het gedeelte Functies van het snelmenu (QUICK_MENU<>).", "BaseValueUnits": 3000.0, @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Cape met tentakels", "Group": "Ontgrendelbare cape", - "Description": "Een exclusieve exosuit -uiterlijk overschrijft.\nTransformeer het uiterlijk van je exosuit bij een verschijningsmodifier.", + "Description": "Een exclusieve uiterlijke aanpassing van het exopak<>.\n\nZweef met deze cape door het heelal met een raster van uitwaaierende tentakels, geweven met geregenereerde cellulosevezels.\n\nVerander het uiterlijk van je exopak bij een gedaantemodulator<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Kosmische Megafauna Cape", + "Name": "Cape met kosmische megafauna", "Group": "Ontgrendelbare cape", - "Description": "Een exclusieve exosuit -uiterlijk overschrijft.\nTransformeer het uiterlijk van je exosuit bij een verschijningsmodifier.", + "Description": "Een exclusieve uiterlijke aanpassing van het exopak<>.\n\nIn de verste uithoeken van het heelal zweeft kosmische megafauna<>, samenkomend met Reizigers en dromend van mogelijke werkelijkheden.\n\nVerander het uiterlijk van je exopak bij een gedaantemodulator<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Titan-worm Cape", + "Name": "Cape met Titan-worm", "Group": "Ontgrendelbare cape", - "Description": "Een exclusieve exosuit -uiterlijk overschrijft.\n\n'De wormheer torent hoog boven de stoffige aarde uit. Zijn vlees vult de lucht.'\n\nTransformeer het uiterlijk van je exosuit bij een verschijningsmodifier.", + "Description": "Een exclusieve uiterlijke aanpassing van het exopak<>.\n\n'De wormheer torent hoog boven de stoffige aarde uit. Zijn vlees vult de lucht.'\n\nVerander het uiterlijk van je exopak bij een gedaantemodulator<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/nl/SeasonalExpedition.lang.json b/assets/json/nl/SeasonalExpedition.lang.json index 983dff71..a89539b4 100644 --- a/assets/json/nl/SeasonalExpedition.lang.json +++ b/assets/json/nl/SeasonalExpedition.lang.json @@ -16123,7 +16123,7 @@ "Id": "seas-8-expedPhase-1-milestone-1", "Title": "Logboek 1: Noodgeval", "Description": "Lees de eerste vermelding in het scheepslog", - "DescriptionDone": "Lees het eerste logboek", + "DescriptionDone": "Het eerste logboek gelezen", "Icon": "milestonePatches/PATCH.SHIPLOG1.png", "Type": "Normal", "Rewards": [ @@ -16558,7 +16558,7 @@ "Id": "seas-8-expedPhase-2-milestone-1", "Title": "Logboek 2: Naar het zwart", "Description": "Lees de tweede vermelding in het scheepslog", - "DescriptionDone": "Lees het tweede logboek", + "DescriptionDone": "Het tweede logboek gelezen", "Icon": "milestonePatches/PATCH.SHIPLOG2.png", "Type": "Normal", "Rewards": [ @@ -16985,7 +16985,7 @@ "Id": "seas-8-expedPhase-3-milestone-1", "Title": "Logboek 3: Heimwee", "Description": "Lees de derde vermelding in het scheepslog", - "DescriptionDone": "Lees het derde logboek", + "DescriptionDone": "Het derde logboek gelezen", "Icon": "milestonePatches/PATCH.SHIPLOG3.png", "Type": "Normal", "Rewards": [ @@ -17544,7 +17544,7 @@ "Id": "seas-8-expedPhase-4-milestone-1", "Title": "Logboek 4: Geen weg terug", "Description": "Lees de vierde vermelding in het scheepslog", - "DescriptionDone": "Lees het vierde logboek", + "DescriptionDone": "Het vierde logboek gelezen", "Icon": "milestonePatches/PATCH.SHIPLOG4.png", "Type": "Normal", "Rewards": [ @@ -17872,7 +17872,7 @@ "Id": "seas-8-expedPhase-5-milestone-1", "Title": "Logboek 5: Horizons", "Description": "Lees de laatste vermelding in het scheepslog", - "DescriptionDone": "Lees het laatste logboek", + "DescriptionDone": "Het laatste logboek gelezen", "Icon": "milestonePatches/PATCH.SHIPLOG5.png", "Type": "Normal", "Rewards": [ diff --git a/assets/json/nl/Technology.lang.json b/assets/json/nl/Technology.lang.json index ecea345d..b814d089 100644 --- a/assets/json/nl/Technology.lang.json +++ b/assets/json/nl/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/pl/AlienPuzzle.lang.json b/assets/json/pl/AlienPuzzle.lang.json index 9f8a7fda..afc1fca4 100644 --- a/assets/json/pl/AlienPuzzle.lang.json +++ b/assets/json/pl/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Kamień jakby wchłonął wiedzę tych, którzy żyli tu przed tysiącami lat. Mówi teraz do mnie w moim ojczystym języku." + "Starożytny kamień jest nieruchomy.Historia królestwa Pierwszych Pomiotów została opowiedziana." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Kamień jakby wchłonął wiedzę tych, którzy żyli tu przed tysiącami lat. Mówi teraz do mnie w moim ojczystym języku." + "Tablica jest zimna i cicha.Saga Vy'keenów dobiegła końca." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Kamień jakby wchłonął wiedzę tych, którzy żyli tu przed tysiącami lat. Mówi teraz do mnie w moim ojczystym języku." + "Historyczna konstrukcja milczy.Testament Korvaxów został wygłoszony." ], "Options": [ { diff --git a/assets/json/pl/Buildings.lang.json b/assets/json/pl/Buildings.lang.json index 3a87eb43..e00da006 100644 --- a/assets/json/pl/Buildings.lang.json +++ b/assets/json/pl/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Stworzenia podwodne", + "Name": "Pancerny anemon", "Group": "Dekoracja organiczna", - "Description": "Ornament, który możesz zbudować, aby upiększyć swoją bazę.", + "Description": "Mięsożerny organizm morski. Pancerna skorupa otacza rdzeń polipa, odsłaniając jedynie żądlące macki. Mimowolne skurcze nerwów powodują, że stworzenie wije się bezustannie: zawsze szuka, zawsze łaknie.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Stworzenia podwodne", + "Name": "Pas koralowców", "Group": "Dekoracja organiczna", - "Description": "Ornament, który możesz zbudować, aby upiększyć swoją bazę.", + "Description": "Gigantyczna formacja wapienna, naturalnie ustawiona w pasie przestrzeni nieorientowalnej. Nadaje tajemniczego,, głębinowego wyglądu każdej bazie.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Stworzenia podwodne", + "Name": "Kolonia wodna", "Group": "Dekoracja organiczna", - "Description": "Ornament, który możesz zbudować, aby upiększyć swoją bazę.", + "Description": "Formacja skalna wyciągnięta z dna gęsto zaludnionego oceanu. Przyczepione do niej życie morskie jest pokryte śluzem, bogatym w składniki odżywcze, który zapewnia żywność i wilgoć na lądzie.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Kwiaty", + "Name": "Kwiaty Nocnego Języka", "Group": "Dekoracja organiczna", - "Description": "Ornament, który możesz zbudować, aby upiększyć swoją bazę.", + "Description": "Grządka wytrzymałych kwiatów, które zostały genetycznie zmodyfikowane, aby rozwijać się we wszystkich biomach, typach gleby i warunkach pogodowych. Kolczaste płatki chronią kwiaty przed potencjalnymi drapieżnikami, przebijając ciało śmiertelną toksyną. Zaleca się stosowanie rękawic ochronnych podczas przenoszenia.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Kwiaty", + "Name": "Jeżokwiaty", "Group": "Dekoracja organiczna", - "Description": "Ornament, który możesz zbudować, aby upiększyć swoją bazę.", + "Description": "Grządka wytrzymałych kwiatów, które zostały genetycznie zmodyfikowane, aby rozwijać się we wszystkich biomach, typach gleby i warunkach pogodowych. Te niezwykle kształtne kwiaty są wypełnione pyłkiem i wydzielają zawrotnie słodki zapach.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Kwiaty", + "Name": "Kwiaty wiecznego oka", "Group": "Dekoracja organiczna", - "Description": "Ornament, który możesz zbudować, aby upiększyć swoją bazę.", + "Description": "Grządka wytrzymałych kwiatów, które zostały genetycznie zmodyfikowane, aby rozwijać się we wszystkich biomach, typach gleby i warunkach pogodowych. Te zdrewniałe kwiaty pozostają otwarte dzień i noc, pochłaniając światło zarówno z lokalnych, jak i odległych gwiazd.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/pl/ConstructedTechnology.lang.json b/assets/json/pl/ConstructedTechnology.lang.json index 9f141da0..b17cb022 100644 --- a/assets/json/pl/ConstructedTechnology.lang.json +++ b/assets/json/pl/ConstructedTechnology.lang.json @@ -2930,7 +2930,7 @@ "Icon": "constructedTechnology/104.png", "Name": "Fragment wspomnienia", "Group": "Echo technologii", - "Description": "Zniszczone pozostałości zmarłej istoty podróżującej<>. Z głębi jego włókien wydobywa się szept nieznanego pochodzenia.\n\nWspomnienie urzeczywistni się jako ważne ulepszenie technologii<>, które pomoże ci w podróży. Wchłoń<> wspomnienie, używając FE_ALT1<><>", + "Description": "Zniszczone pozostałości zmarłej istoty podróżującej<>. Z głębi jego włókien wydobywa się szept nieznanego pochodzenia.\n\nWspomnienie urzeczywistni się jako ważne ulepszenie technologii<>, które pomoże ci w podróży. Wchłoń<> wspomnienie, używając FE_ALT1<><>.", "BaseValueUnits": 16.0, "CurrencyType": "None", "MaxStackSize": 15.0, @@ -2953,7 +2953,7 @@ "Icon": "constructedTechnology/105.png", "Name": "Fragment wspomnienia (ekwipunek)", "Group": "Echo zbuntowanej technologii", - "Description": "Zniszczone pozostałości zmarłej istoty podróżującej<>. Z głębi jego włókien wydobywa się szept nieznanego pochodzenia.\n\nWspomnienie urzeczywistni się jako rozszerzenie ekwipunku<>, które pomoże ci w podróży. Wchłoń<> wspomnienie, używając FE_ALT1<><>", + "Description": "Zniszczone pozostałości zmarłej istoty podróżującej<>. Z głębi jej włókien wydobywa się szept nieznanego pochodzenia.\n\nWspomnienie urzeczywistni się jako rozszerzenie ekwipunku<>, które pomoże ci w podróży. Wchłoń<> wspomnienie, używając FE_ALT1<><>.", "BaseValueUnits": 16.0, "CurrencyType": "None", "MaxStackSize": 15.0, diff --git a/assets/json/pl/Others.lang.json b/assets/json/pl/Others.lang.json index 368a849a..4fbcb3c1 100644 --- a/assets/json/pl/Others.lang.json +++ b/assets/json/pl/Others.lang.json @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Peleryna z mackami", "Group": "Peleryna do odblokowania", - "Description": "Wygląd ekskluzywnego egzosuitu.\nPrzekształć wygląd egzosuitu na modyfikator wyglądu.", + "Description": "Ekskluzywna zmiana wyglądu egzokombinezonu<>.\n\nPrzemierzaj galaktykę w tej pelerynie z przeszywaną wijącymi się mackami, utkanymi z regenerowanych włókien celulozowych.\n\nZmień wygląd swojego egzokombinezonu w modyfikatorze wyglądu<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Peleryna Kosmiczną Megafaunę", + "Name": "Peleryna Kosmicznej Megafauny", "Group": "Peleryna do odblokowania", - "Description": "Wygląd ekskluzywnego egzosuitu.\nPrzekształć wygląd egzosuitu na modyfikator wyglądu.", + "Description": "Ekskluzywna zmiana wyglądu egzokombinezonu<>.\n\nW najdalszych zakątkach kosmosu pływa kosmiczna megafauna<>, przecinając swoje ścieżki z Podróżnikami i marząc o możliwych rzeczywistościach.\n\nZmień wygląd swojego egzokombinezonu w modyfikatorze wyglądu<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5340,7 +5340,7 @@ "Icon": "other/331.png", "Name": "Peleryna tytanicznego robala", "Group": "Peleryna do odblokowania", - "Description": "Wygląd ekskluzywnego egzosuitu.\n\n„Robaczy władca góruje nad piaszczystą powierzchnią; jego ciało zasłania niebo”.\n\nPrzekształć wygląd egzosuitu na modyfikator wyglądu.", + "Description": "Ekskluzywna zmiana wyglądu egzokombinezonu<>.\n\n„Robaczy władca góruje nad piaszczystą ziemią; jego ciało przesłania niebo.”\n\nZmień wygląd swojego egzokombinezonu w modyfikatorze wyglądu<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/pl/Technology.lang.json b/assets/json/pl/Technology.lang.json index 9ad6d550..65040648 100644 --- a/assets/json/pl/Technology.lang.json +++ b/assets/json/pl/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/pt-br/AlienPuzzle.lang.json b/assets/json/pt-br/AlienPuzzle.lang.json index 54b81cfc..fd71b9fb 100644 --- a/assets/json/pt-br/AlienPuzzle.lang.json +++ b/assets/json/pt-br/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "É como se a pedra tivesse absorvido o conhecimento daqueles que viveram aqui há milênios. Ela fala agora comigo em meu idioma nativo." + "A pedra antiga está imóvel.O domínio dos Primeiros Filhos foi anunciado." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "É como se a pedra tivesse absorvido o conhecimento daqueles que viveram aqui há milênios. Ela fala agora comigo em meu idioma nativo." + "A placa está fria e silenciosa.A Saga dos Vy'keens foi concluída." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "É como se a pedra tivesse absorvido o conhecimento daqueles que viveram aqui há milênios. Ela fala agora comigo em meu idioma nativo." + "A estrutura histórica está silenciosa.O testamento dos Korvax foi manifestado." ], "Options": [ { diff --git a/assets/json/pt-br/Buildings.lang.json b/assets/json/pt-br/Buildings.lang.json index 7975a05e..759b6024 100644 --- a/assets/json/pt-br/Buildings.lang.json +++ b/assets/json/pt-br/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Vida aquática", + "Name": "Anêmona blindada", "Group": "Decoração orgânica", - "Description": "Ornamento que pode ser construído para embelezar sua base.", + "Description": "Um organismo marinho carnívoro. Uma concha blindada envolve o pólipo central, expondo apenas os tentáculos urticantes. Espasmos nervosos involuntários fazem com que a criatura se contorça perpetuamente: sempre procurando, sempre faminta.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Vida aquática", + "Name": "Faixa de coral", "Group": "Decoração orgânica", - "Description": "Ornamento que pode ser construído para embelezar sua base.", + "Description": "Uma gigantesca formação de cálcio, naturalmente configurada em uma faixa de espaço não orientável. Adiciona um quê de fundo do mar a qualquer base habitável.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Vida aquática", + "Name": "Colônia aquática", "Group": "Decoração orgânica", - "Description": "Ornamento que pode ser construído para embelezar sua base.", + "Description": "Uma formação rochosa retirada do fundo de um oceano repleto de vida. A vida marinha afixada está envolvida em uma camada de muco rico em nutrientes, para mantê-la alimentada e umidificada em condições terrestres.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Flores", + "Name": "Língua-noturna", "Group": "Decoração orgânica", - "Description": "Ornamento que pode ser construído para embelezar sua base.", + "Description": "Flores resistentes, geneticamente modificadas para prosperar em todos os biomas, tipos de solo e condições climáticas. Pétalas farpadas as protegem de possíveis predadores, perfurando sua carne com uma toxina mortal. Manoplas protetoras são recomendadas durante o manuseio.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Flores", + "Name": "Ouriceiras", "Group": "Decoração orgânica", - "Description": "Ornamento que pode ser construído para embelezar sua base.", + "Description": "Flores resistentes, geneticamente modificadas para prosperar em todos os biomas, tipos de solo e condições climáticas. Essas flores de formato incomum são repletas de pólen e liberam um perfume incrivelmente doce.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Flores", + "Name": "Olhos-eternos", "Group": "Decoração orgânica", - "Description": "Ornamento que pode ser construído para embelezar sua base.", + "Description": "Flores resistentes, geneticamente modificadas para prosperar em todos os biomas, tipos de solo e condições climáticas. Essas flores liguladas permanecem abertas dia e noite, absorvendo a luz de estrelas locais e distantes.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/pt-br/Others.lang.json b/assets/json/pt-br/Others.lang.json index 25babceb..a4a3f82c 100644 --- a/assets/json/pt-br/Others.lang.json +++ b/assets/json/pt-br/Others.lang.json @@ -5167,7 +5167,7 @@ "Icon": "other/323.png", "Name": "Pacote de fogos de artifício variados", "Group": "Multipacote de pirotecnia", - "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> e carne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", + "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> ecarne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5189,7 +5189,7 @@ "Icon": "other/323.png", "Name": "Pacote de fogos de artifício variados", "Group": "Multipacote de pirotecnia", - "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> e carne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", + "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> ecarne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5211,7 +5211,7 @@ "Icon": "other/323.png", "Name": "Pacote de fogos de artifício variados", "Group": "Multipacote de pirotecnia", - "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> e carne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", + "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> ecarne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5233,7 +5233,7 @@ "Icon": "other/323.png", "Name": "Pacote de fogos de artifício variados", "Group": "Multipacote de pirotecnia", - "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> e carne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", + "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> ecarne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5255,7 +5255,7 @@ "Icon": "other/323.png", "Name": "Pacote de fogos de artifício variados", "Group": "Multipacote de pirotecnia", - "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> e carne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", + "Description": "Um pacote com três variedades de fogos de artifício. Contém as variedades luxo<>, Atlas<> ecarne<>. Acenda-os para criar um show fascinante no céu.\n\nPosicione o tubo de lançamento com o menu de construção<> (BUILD_MENU<>). Atenção:<> mire-os longe de criaturas vivas. Não é recomendado usá-los em ambientes fechados.", "BaseValueUnits": 250.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Capa de tentáculos", "Group": "Capa desbloqueável", - "Description": "Uma aparência exclusiva de exosuit.\nTransforme a aparência do seu exosuit em um modificador de aparência.", + "Description": "Uma sobreposição de aparência do exotraje<> exclusiva.\n\nFlutue pela Galáxia com a treliça desta capa de tentáculos esvoaçantes, feitos de fibras de celulose regeneradas.\n\nTransforme o aspecto do seu exotraje em um modificador de aparência<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Capa Megafauna Cósmica", + "Name": "Capa da megafauna cósmica", "Group": "Capa desbloqueável", - "Description": "Uma aparência exclusiva de exosuit.\nTransforme a aparência do seu exosuit em um modificador de aparência.", + "Description": "Uma sobreposição de aparência do exotraje<> exclusiva.\n\nNos confins do espaço nadam a megafauna cósmica<>, alinhando seus caminhos com os viajantes, sonhando com realidades possíveis.\n\nTransforme o aspecto do seu exotraje em um modificador de aparência<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Capa verme titã", + "Name": "Capa do verme titã", "Group": "Capa desbloqueável", - "Description": "Uma aparência exclusiva de exosuit.\n\n'O verme soberano observa sobre a terra; sua carne se torna o céu.'\n\nTransforme a aparência do seu exosuit em um modificador de aparência.", + "Description": "Uma sobreposição de aparência do exotraje<> exclusiva.\n\n'O verme soberano observa sobre a terra; sua carne se torna o céu.'\n\nTransforme o aspecto do seu exotraje em um modificador de aparência<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/pt-br/Technology.lang.json b/assets/json/pt-br/Technology.lang.json index 09207712..b0e0e330 100644 --- a/assets/json/pt-br/Technology.lang.json +++ b/assets/json/pt-br/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/pt/AlienPuzzle.lang.json b/assets/json/pt/AlienPuzzle.lang.json index a0f14010..3a9180d3 100644 --- a/assets/json/pt/AlienPuzzle.lang.json +++ b/assets/json/pt/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "É como se a pedra tivesse absorvido o conhecimento daqueles que viveram aqui há milénios. Fala-me agora na minha língua nativa." + "A pedra antiga está imóvel.O Domínio da Primeira Geração foi pronunciado." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "É como se a pedra tivesse absorvido o conhecimento daqueles que viveram aqui há milénios. Fala-me agora na minha língua nativa." + "A placa está fria e silenciosa.A Saga dos Vy'keen terminou." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "É como se a pedra tivesse absorvido o conhecimento daqueles que viveram aqui há milénios. Fala-me agora na minha língua nativa." + "A estrutura histórica está silenciosa.O Testamento dos Korvax foi proferido." ], "Options": [ { diff --git a/assets/json/pt/Buildings.lang.json b/assets/json/pt/Buildings.lang.json index 0d5317a1..d3141b7e 100644 --- a/assets/json/pt/Buildings.lang.json +++ b/assets/json/pt/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Vida Aquática", + "Name": "Anémona Blindada", "Group": "Decoração orgânica", - "Description": "Ornamento de construção para embelezar a base.", + "Description": "Um organismo marinho carnívoro. Uma concha blindada inclui o pólipo central, expondo apenas os tentáculos urticantes. Os espasmos involuntários dos nervos fazem com que a criatura se contorça perpetuamente: sempre à procura, sempre faminta.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Vida Aquática", + "Name": "Coral de Faixa", "Group": "Decoração orgânica", - "Description": "Ornamento de construção para embelezar a base.", + "Description": "Uma formação calcária gigante, naturalmente configurada numa faixa de espaço não orientável. Adiciona uma misteriosa qualidade das profundezas do mar a qualquer base habitável.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Vida Aquática", + "Name": "Colónia Aquática", "Group": "Decoração orgânica", - "Description": "Ornamento de construção para embelezar a base.", + "Description": "Uma formação rochosa retirada do chão de um oceano densamente povoado. A vida marinha anexada está coberta num muco rico em nutrientes, para a manter alimentada e húmida em condições terrestres.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Flores", + "Name": "Flores de Nighttongue", "Group": "Decoração orgânica", - "Description": "Ornamento de construção para embelezar a base.", + "Description": "Uma plataforma floral resistente, geneticamente modificada para prosperar em todos os biomas, tipos de solo e condições climáticas. As pétalas com arame farpado protegem as flores de possíveis predadores, perfurando carne com uma toxina mortal. É recomendável a utilização de Luvas de Segurança durante o manuseamento.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Flores", + "Name": "Flores de Ouriço", "Group": "Decoração orgânica", - "Description": "Ornamento de construção para embelezar a base.", + "Description": "Uma plataforma floral resistente, geneticamente modificada para prosperar em todos os biomas, tipos de solo e condições climáticas. Estas flores de forma invulgar estão repletas de pólen e libertam um perfume vertiginosamente doce.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Flores", + "Name": "Flores de olhos eternos", "Group": "Decoração orgânica", - "Description": "Ornamento de construção para embelezar a base.", + "Description": "Uma plataforma floral resistente, geneticamente modificada para prosperar em todos os biomas, tipos de solo e condições climáticas. Estas flores liguladas permanecem abertas dia e noite, absorvendo luz de estrelas locais e distantes.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/pt/Others.lang.json b/assets/json/pt/Others.lang.json index 7adc588a..b7660cfd 100644 --- a/assets/json/pt/Others.lang.json +++ b/assets/json/pt/Others.lang.json @@ -5013,7 +5013,7 @@ "Icon": "other/316.png", "Name": "O Filho do Sol", "Group": "Nave Exclusiva", - "Description": "Uma Nave Espacial<> exclusiva. Esta nave de exploração está configurada com Detetores de Economia<> e de Conflito<> para sondar dados de sistema de forma remota.\n\nReivindica<> esta nave para adicioná-la à tua coleção, ou para Trocar<> com a tua nave atual. Quando estiveres num planeta, podes chamar as naves no Menu Rápido (QUICK_MENU<>).", + "Description": "Uma Nave Espacial<> exclusiva. Esta nave de exploração está configurada com Detetores de Economia<> e de Conflito<> sondar dados de sistema de forma remota.\n\nReivindica<> esta nave para adicioná-la à tua coleção, ou para Trocar<> com a tua nave atual. Quando estiveres num planeta, podes chamar as naves no Menu Rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5035,7 +5035,7 @@ "Icon": "other/317.png", "Name": "Habika BF3", "Group": "Nave Exclusiva", - "Description": "Uma Nave espacial<> exclusiva. A Habiki BF3 é uma nave de transporte especializada no lançamento de economia graças aos seus Propulsores Eficientes<> e ao Carregador Automático de Lançamento<>, minimizando o consumo de combustível no lançamento.\n\nReivindica<> esta nave para adicioná-la à tua coleção, ou para Trocar<> com a tua nave atual. Quando estiveres num planeta, podes chamar as naves no Menu Rápido (QUICK_MENU<>).", + "Description": "Uma Nave espacial<> exclusiva. A Habiki BF3 é uma nave de transporte especialidade no lançamento de economia graças aos seus Propulsores Eficientes<> e ao Carregador Automático de Lançamento<>, minimizando o consumo de combustível no lançamento.\n\nReivindica<> esta nave para adicioná-la à tua coleção, ou para Trocar<> com a tua nave atual. Quando estiveres num planeta, podes chamar as naves no Menu Rápido (QUICK_MENU<>).", "BaseValueUnits": 3000.0, "CurrencyType": "Credits", "MaxStackSize": 5.0, @@ -5298,7 +5298,7 @@ "Icon": "other/329.png", "Name": "Capa Tentacular", "Group": "Capa Desbloqueável", - "Description": "Uma aparência exclusiva de exosuit.\nTransforme a aparência do seu exosuit em um modificador de aparência.", + "Description": "Um exclusivo Modificador de Aparência do Exofato<>.\n\nFlui pela galáxia com a malha desta capa de tentáculos esvoaçantes, tecida a partir de fibras de celulose regeneradas.\n\nTransforma a aparência do teu Exofato com um Modificador de Aparência<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Capa Megafauna Cósmica", + "Name": "Capa de Megafauna Cósmica", "Group": "Capa Desbloqueável", - "Description": "Uma aparência exclusiva de exosuit.\nTransforme a aparência do seu exosuit em um modificador de aparência.", + "Description": "Um exclusivo Modificador de Aparência do Exofato<>.\n\nNos confins do espaço, flutua a megafauna cósmica<>, a alinhar o seu caminho com Viajantes, a sonhar com possíveis realidades.\n\nTransforma a aparência do teu Exofato com um Modificador de Aparência<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Capa Verme Titã", + "Name": "Capa de Verme Titã", "Group": "Capa Desbloqueável", - "Description": "Uma aparência exclusiva de exosuit.\n\n'O lorde verme eleva-se da terra poeirenta, a sua pele torna-se o céu.'\n\nTransforme a aparência do seu exosuit em um modificador de aparência.", + "Description": "Um exclusivo Modificador de Aparência do Exofato<>.\n\n'O lorde verme eleva-se da terra poeirenta, a sua pele torna-se o céu.'\n\nTransforma a aparência do teu Exofato com um Modificador de Aparência<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/pt/Technology.lang.json b/assets/json/pt/Technology.lang.json index 0f8b1916..e8060559 100644 --- a/assets/json/pt/Technology.lang.json +++ b/assets/json/pt/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/ru/AlienPuzzle.lang.json b/assets/json/ru/AlienPuzzle.lang.json index 439a7ff0..4b3024cd 100644 --- a/assets/json/ru/AlienPuzzle.lang.json +++ b/assets/json/ru/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Кажется, будто камень впитал в себя знания тех, кто жил здесь тысячи лет назад. Он говорит со мной на моем родном языке." + "Древний камень неподвижен.История Доминиона Первородов рассказана." ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Кажется, будто камень впитал в себя знания тех, кто жил здесь тысячи лет назад. Он говорит со мной на моем родном языке." + "Табличка холодна и безмолвна.Сага вай'кинов завершена." ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "Кажется, будто камень впитал в себя знания тех, кто жил здесь тысячи лет назад. Он говорит со мной на моем родном языке." + "Древняя постройка молчит.Завет корваксов был произнесен." ], "Options": [ { diff --git a/assets/json/ru/Buildings.lang.json b/assets/json/ru/Buildings.lang.json index 731f6343..845507f9 100644 --- a/assets/json/ru/Buildings.lang.json +++ b/assets/json/ru/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "Морская жизнь", + "Name": "Панцирный анемон", "Group": "Органическое украшение", - "Description": "Декоративные предметы для украшения базы.", + "Description": "Хищный морской организм. Полип окружен панцирем, из-под которого высовываются только обжигающие щупальца. Бессознательные нервные спазмы вынуждают вечно голодное животное постоянно извиваться: его щупальца всегда ищут добычу.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "Морская жизнь", + "Name": "Полоса кораллов", "Group": "Органическое украшение", - "Description": "Декоративные предметы для украшения базы.", + "Description": "Естественное гигантское образование из кальция в виде полосы прихотливо расположенных кораллов. Добавляет толику глубоководной загадочности любой обитаемой базе.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "Морская жизнь", + "Name": "Водная колония", "Group": "Органическое украшение", - "Description": "Декоративные предметы для украшения базы.", + "Description": "Скальное образование, поднятое со дна богатого жизнью океана. Обитающие на нем существа покрыты богатой питательными веществами слизью, которая питает их и поддерживает влажность в земных условиях.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "Цветы", + "Name": "Цветы «Ночной язык»", "Group": "Органическое украшение", - "Description": "Декоративные предметы для украшения базы.", + "Description": "Выносливое цветковое растение, генетически модифицированное, чтобы процветать во всех биомах, на всех типах почв и при любых погодных условиях. Колючие лепестки защищают цветы от потенциальных хищников, пронзая плоть и впрыскивая смертоносный яд. При обращении с этим растением рекомендуется использовать перчатки химзащиты.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "Цветы", + "Name": "Цветы «Еж»", "Group": "Органическое украшение", - "Description": "Декоративные предметы для украшения базы.", + "Description": "Выносливое цветковое растение, генетически модифицированное, чтобы процветать во всех биомах, на всех типах почв и при любых погодных условиях. Эти цветы необычной формы наполнены пыльцой и источают головокружительно сладкий аромат.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "Цветы", + "Name": "Цветы «Вечное око»", "Group": "Органическое украшение", - "Description": "Декоративные предметы для украшения базы.", + "Description": "Выносливое цветковое растение, генетически модифицированное, чтобы процветать во всех биомах, на всех типах почв и при любых погодных условиях. Эти язычковые соцветия остаются открытыми днем и ночью, поглощая свет как близких, так и далеких звезд.", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/ru/Others.lang.json b/assets/json/ru/Others.lang.json index 0b5707c8..13e0ed9f 100644 --- a/assets/json/ru/Others.lang.json +++ b/assets/json/ru/Others.lang.json @@ -5296,9 +5296,9 @@ { "Id": "other329", "Icon": "other/329.png", - "Name": "Плащ «Щупальца»", + "Name": "Плащ со щупальцами", "Group": "Плащ (открываемый)", - "Description": "Эксклюзивный внешний вид переопределения.\nПреобразуйте внешний вид вашего экзосуита в модификаторе внешнего вида.", + "Description": "Эксклюзивное изменение внешнего вида экзокостюма<>.\n\nПутешествуйте по галактике в этом плаще из колышущихся щупалец, сплетенных из волокон восстановленной целлюлозы.\n\nПоменяйте внешний вид экзокостюма в модификаторе внешности<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "Плащ Космическая Мегафауна", + "Name": "Плащ «Космическая мегафауна»", "Group": "Плащ (открываемый)", - "Description": "Эксклюзивный внешний вид переопределения.\nПреобразуйте внешний вид вашего экзосуита в модификаторе внешнего вида.", + "Description": "Эксклюзивное изменение внешнего вида экзокостюма<>.\n\nКосмическая мегафауна<> заплывает в самые дальние уголки космоса. Она идет одним курсом со Странниками, видя сны о возможных реальностях.\n\nПоменяйте внешний вид экзокостюма в модификаторе внешности<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "Плащ Титанического червя", + "Name": "Плащ «Титанический червь»", "Group": "Плащ (открываемый)", - "Description": "Эксклюзивный внешний вид переопределения.\n\n«Червь-владыка возвышается над пылью земли; его плоть затмевает небеса».\n\nПреобразуйте внешний вид вашего экзосуита в модификаторе внешнего вида.", + "Description": "Эксклюзивное изменение внешнего вида экзокостюма<>.\n\n«Червь-владыка возвышается над пылью земли; его плоть затмевает небеса».\n\nПоменяйте внешний вид экзокостюма в модификаторе внешности<>.", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/ru/Technology.lang.json b/assets/json/ru/Technology.lang.json index 57a2c5d1..23b7ea77 100644 --- a/assets/json/ru/Technology.lang.json +++ b/assets/json/ru/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/zh-hans/AlienPuzzle.lang.json b/assets/json/zh-hans/AlienPuzzle.lang.json index 86a10874..298e5ffd 100644 --- a/assets/json/zh-hans/AlienPuzzle.lang.json +++ b/assets/json/zh-hans/AlienPuzzle.lang.json @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "仿佛该岩石吸收了几千年前居住在这里的人们的智慧。它现在用我的母语与我对话。" + "古石陷入沉寂。初代的领域已经完结。" ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "仿佛该岩石吸收了几千年前居住在这里的人们的智慧。它现在用我的母语与我对话。" + "铭牌冰冷且无声。维吉恩传奇已经画上休止符。" ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "仿佛该岩石吸收了几千年前居住在这里的人们的智慧。它现在用我的母语与我对话。" + "历史建筑沉默无言。科尔瓦克斯的建言已经终了。" ], "Options": [ { diff --git a/assets/json/zh-hans/Buildings.lang.json b/assets/json/zh-hans/Buildings.lang.json index 3cd1cb24..a70f4e4f 100644 --- a/assets/json/zh-hans/Buildings.lang.json +++ b/assets/json/zh-hans/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "水生物", + "Name": "装甲海葵", "Group": "有机装饰", - "Description": "可建造的装饰,美化你的基地。", + "Description": "肉食类海洋有机物。核心息肉外面覆盖着一层坚硬的甲壳,只有用来蛰刺的触手暴露在外。不由自主的神经抽搐会使这种生物保持在扭动的状态中:永远在饥肠辘辘地寻觅着猎物。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "水生物", + "Name": "条纹珊瑚", "Group": "有机装饰", - "Description": "可建造的装饰,美化你的基地。", + "Description": "庞大的钙化结构,会自然而然地依附在一块不定型的条形区域中。为一切宜居基地增添一丝神秘的深海氛围。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "水生物", + "Name": "水生殖民地", "Group": "有机装饰", - "Description": "可建造的装饰,美化你的基地。", + "Description": "从生机盎然的海底发掘的石块。上面附着的海洋生物笼罩在充满营养成分的黏液中,使其在陆地环境下也能够保证充足的湿度与食物。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "花朵", + "Name": "夜语花", "Group": "有机装饰", - "Description": "可建造的装饰,美化你的基地。", + "Description": "生命力顽强的花卉,因为接受过基因改造得以在一切生态群系、土壤类型与气候环境中茁壮成长。带刺的花瓣能够保护植物免受掠食者伤害,尖刺将灌注致命毒素至入侵者血肉之中。建议处理时佩戴防护手套。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "花朵", + "Name": "海胆花", "Group": "有机装饰", - "Description": "可建造的装饰,美化你的基地。", + "Description": "生命力顽强的花卉,因为接受过基因改造得以在一切生态群系、土壤类型与气候环境中茁壮成长。形状奇特的花瓣中装满了花粉,能够释放出一种让人难以自拔的甜美香气。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "花朵", + "Name": "永恒之眼花", "Group": "有机装饰", - "Description": "可建造的装饰,美化你的基地。", + "Description": "生命力顽强的花卉,因为接受过基因改造得以在一切生态群系、土壤类型与气候环境中茁壮成长。这些舌状的花卉会昼夜不停地绽放,吸收来自当地星系与遥远恒星的光芒。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/zh-hans/Others.lang.json b/assets/json/zh-hans/Others.lang.json index 52a85e82..8a19b85b 100644 --- a/assets/json/zh-hans/Others.lang.json +++ b/assets/json/zh-hans/Others.lang.json @@ -5296,9 +5296,9 @@ { "Id": "other329", "Icon": "other/329.png", - "Name": "触手 披风", + "Name": "触手披风", "Group": "可解锁披风", - "Description": "独家外观外观覆盖。\n在外观修饰符上转换外套的外观。", + "Description": "专属套装外观<>。\n\n这件披风使用再生纤维素编制而成的抖动触手,在银河中飘动着。\n\n可以在外观修改器<>使用以更改你的套装外观。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "星际巨兽 披风", + "Name": "宇宙巨型动物披风", "Group": "可解锁披风", - "Description": "独家外观外观覆盖。\n在外观修饰符上转换外套的外观。", + "Description": "专属套装外观<>。\n\n在太空深处游荡的宇宙巨型动物<>与梦想着无限可能性的旅行者们相遇了。\n\n可以在外观修改器<>使用以更改你的套装外观。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "泰坦蠕虫 披风", + "Name": "泰坦蠕虫披风", "Group": "可解锁披风", - "Description": "独家外观外观覆盖。\n\n“蠕虫领主伫立于尘土飞扬的大地之上;它的肉体就是天空。”\n\n在外观修饰符上转换外套的外观。", + "Description": "专属套装外观<>。\n\n“蠕虫领主的身影徘徊于尘土之上,躯体则化为了天空。”\n\n可以在外观修改器<>使用以更改你的套装外观。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/zh-hans/Technology.lang.json b/assets/json/zh-hans/Technology.lang.json index 95bc18b0..7b2b52eb 100644 --- a/assets/json/zh-hans/Technology.lang.json +++ b/assets/json/zh-hans/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/json/zh-hant/AlienPuzzle.lang.json b/assets/json/zh-hant/AlienPuzzle.lang.json index 6b59d218..62c8c703 100644 --- a/assets/json/zh-hant/AlienPuzzle.lang.json +++ b/assets/json/zh-hant/AlienPuzzle.lang.json @@ -2796,7 +2796,7 @@ "Number": 0, "IncomingMessages": [ "我伸手觸碰這個美麗的石頭印記時不停顫抖,我的內心被致命的吉客族史實知識佔據......", - "反對者被驅逐出繁殖池後,巡警降臨了。他們現身的理由毫無公義可言。\n\n這場浩大戰爭散發的氣味太過強烈,自動機械無法抗拒,以侵略者的身分投入了戰場。\n\n第一世代絕對不會忘記。" + "反對者被驅逐出繁殖池後,巡警降臨了。他們的理想無公義可言。\n\n戰爭太過浩大壯觀,機器生物無法抗拒,於是被戰爭所散發的氣味誘入陷阱。\n\n第一世代絕對不會忘記。" ], "Options": [ { @@ -2912,7 +2912,7 @@ "Number": 0, "IncomingMessages": [ "石板的表面閃爍,並隨著許久之前居住於此之人的驚叫聲震動。儘管言語陌生,但是我卻能從吉客族的憤怒聲音中了解它們的意思。", - "維金族愚蠢地展開了一場無法停止的戰爭。他們的戰士一而再,再而三朝著金屬洪流迎頭撞去。巡警發出雷射燃燒維金族的血肉。\n\n維金族用正義之火灼燒敵人。第一世代潛伏在陰影中觀察,準備高舉復仇的大旗。" + "維金族愚蠢地展開了一場毫無止境的戰爭。他們一而再再而三讓戰士朝著鐵壁撞。巡警以雷射燃燒維金族的血肉。\n\n維金族以正義之火灼燒敵人。第一世代於陰影中觀察等待,準備大舉進攻。" ], "Options": [ { @@ -2970,7 +2970,7 @@ "Number": 0, "IncomingMessages": [ "我伸手觸碰這個美麗的石頭印記時不停顫抖,我的內心被致命的吉客族史實知識佔據......", - "維金族灑下自己的腐敗之血,將巡警機器從外圍星域擊退。他們像洶湧的潮汐一樣往前推進,在身後留下破碎的金屬。\n\n巡警一度陷入了沉寂。在這片祥和之中,吉客族光榮崛起了。\n\n科瓦超行星理所當然地遭到摧毀,敲響了崛起之鐘。" + "維金族灑下自己的腐敗之血,將巡警機器從外圍星域擊退。他們像潮汐一樣往前推進,在身後留下破碎的金屬。\n\n有段時間巡警按兵不動。在這片祥和之中,吉客族光榮崛起了。\n\n崛起的同時,科瓦超行星也理所當然遭到摧毀。" ], "Options": [ { @@ -2999,7 +2999,7 @@ "Number": 0, "IncomingMessages": [ "在我觸碰尖塔的同時,這星球久遠的歷史影像湧入了我的腦海。吉客族可怕的開端歷史被這顆奇怪的石頭吸收,他們的故事似乎急著想逃脫......", - "科瓦超行星廣大又寶貴的自然環境,充滿礦石與能量。\n\n第一世代祭出宇宙第法則,意欲支配該星球,然而身心弱小的科瓦族拒絕被征服。\n\n他們拒絕進步,這是他們最大的愚蠢之舉。" + "科瓦超行星是一座廣大又寶貴的地景,充滿礦石與能量。\n\n第一世代以宇宙第一法則欲支配該星球,但是身心弱小的科瓦族拒絕被他們征服。\n\n他們拒絕進步。這是他們最大的愚蠢。" ], "Options": [ { @@ -3028,7 +3028,7 @@ "Number": 0, "IncomingMessages": [ "很久以前由古代吉客族人灌輸到石頭上的記憶傳送進我的大腦。我畏縮了一下,但卻莫名被迫理解......", - "科瓦族誤信行星平衡的空話,拒絕深入開採他們的星球,拒絕用命運賜給他們的寶貴礦物獲取利益。\n\n他們對巡警偏激理念的崇拜,讓吉客族深感厭惡。\n\n他們在第一世代的襲擊下,很快就迎來毀滅。" + "科瓦族誤信行星平衡的空話,拒絕深掘他們的星球,利用命運賜給他們的珠寶獲利。\n\n他們對於巡警的崇拜讓吉客族深感厭惡。\n\n第一世代的襲擊招致他們的毀滅。" ], "Options": [ { @@ -3260,7 +3260,7 @@ "Number": 0, "IncomingMessages": [ "石板的表面閃爍,並隨著許久之前居住於此之人的驚叫聲震動。儘管言語陌生,但是我卻能從吉客族的憤怒聲音中了解它們的意思。", - "每一場科瓦族電子叛亂都會被撲滅。他們崇拜虛假、不存在的寰宇,那只不過是在絕望中產生的迷信。\n\n一切全是徒然。他們被征服了。\n\n我們會進行無情的鎮壓,他們的苦難將永無止境。" + "所有科瓦族的電子叛軍將會被撲滅。他們崇拜虛假、不存在的寰宇,但那只是在絕望中產生的迷信。\n\n一切全是徒然。他們被征服了。\n\n凡是妨礙吉客族崛起之徒一概不容赦。他們的苦難永無止境。" ], "Options": [ { @@ -3317,7 +3317,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "石頭彷彿吸收了千年以前此地居民的知識。它現在正用我的母語對我說話。" + "古石猶存。第一世代的統治已完結。" ], "Options": [ { @@ -6499,7 +6499,7 @@ "Number": 0, "IncomingMessages": [ "符文在石頭上成形。透過光的灼熱它們用我族人的語言向我吟唱著關於維金族長老。", - "巡警並非自然秩序的一部分。萬物終有瓦解的一天。這些自動機械不但萬古永存,還能夠自我複製,真是可憎之物。\n\n必須徹底消滅它們。無論是透過正義之戰或是時間的摧殘,都必須一個不留。" + "巡警不符合自然秩序。萬物最終都要瓦解。這些自動機械不但永恆存在,還能無限複製,在在令人憎恨。\n\n必須消滅它們。無論是透過正義之戰或是時間的摧殘,一個不留。" ], "Options": [ { @@ -6615,7 +6615,7 @@ "Number": 0, "IncomingMessages": [ "消亡已久的維金族戰士部落記憶從石頭記號中傾瀉而出,形成了鬼魅般的精華,使我智慧充盈。", - "赫克回到維金族人之中。「嘎啦!」他站在唐司卡琳聖山的山頂大喊。這位領袖向聚集於聖山下的群眾說道:\n\n「偉大巨石已經甦醒,它回應了我的質問。它預言旅行者的到來。旅行者將被寬赦。維金族人會遵守巨石降下的天意。」" + "赫克回去找維金族。「嘎啦!」他們站在唐司卡琳聖山山頂大喊。這位領袖向聚集於該處的人說:\n\n「偉大巨石回應了我。它已經甦醒了。它預言旅行者的到來。他們將會被饒恕。維金人會遵守此項天意。」" ], "Options": [ { @@ -6644,7 +6644,7 @@ "Number": 0, "IncomingMessages": [ "維金族戰士代代相傳的古老智慧從記號符石中傾瀉而出,像被遺忘已久的記憶般滲入我的腦海。", - "群眾呼喊起來,要求赫克說出偉大巨石對巡警的威脅有何判斷。\n\n「巨石沉默不語!」赫克說出旨意,但群眾並不滿意。他們竊竊私語,長著卷鬚的存在體都伸出了卷鬚。\n\n赫克提高音量宣布:「反對者將會被根除!拿起武器,清算敵人的時刻已經到來。」於是這位領袖獲得了維金族的尊敬。" + "群眾呼喊要求赫克說出偉大巨石對巡警威脅有何判斷。\n\n「巨石沉默不語!」赫克說出口,但群眾並不滿意。他們竊竊私語,有著卷鬚的存在體伸出了卷鬚。\n\n赫克提高音量宣布:「反對者將會被消除!拿起武器,清算敵人的時刻已經到來。」維金族於是崇拜這位領袖。" ], "Options": [ { @@ -6673,7 +6673,7 @@ "Number": 0, "IncomingMessages": [ "符文在石頭上成形。透過光的灼熱它們用我族人的語言向我吟唱著關於維金族長老。", - "赫克站在聖山上,那爾爬到山峰頂端,伸出拳頭挑戰赫克。\n\n「愚蠢!」那爾大喊:「沒人能征服巡警!」赫克震怒不已,將那蠢才擊下了山。\n\n那爾往山下墜落,整整三天三夜才迎來死亡。" + "赫克站在聖山上時,那爾爬到了山峰,伸出拳頭挑戰赫克。\n\n「愚蠢!」那爾大喊:「沒人能征服巡警!」赫克震怒不已,將那蠢蛋擊下了山。\n\n那爾墜落了整整三天三夜,才終於迎來死亡。" ], "Options": [ { @@ -6731,7 +6731,7 @@ "Number": 0, "IncomingMessages": [ "維金族長老的呢喃迴盪在空中。突然之間,文字自行刻劃進印記之中,也深深刻進我的心中。", - "就在第六十六個夜晚,那爾追隨者的戰吼聲戛然而止。\n\n赫克看過他們的屍體後,抬頭仰望蒼天,看到一支浩大的巡警部隊襲擊了他的族人。\n\n巡警大戰一觸即發。" + "就在第六十六個晚上,那爾維金族的戰嚎戛然而止。\n\n赫克看過他們的屍體後,抬頭仰望蒼天,看到一位偉大的巡警宿主降臨在他的人民之間。\n\n巡警大戰一觸即發。" ], "Options": [ { @@ -6818,7 +6818,7 @@ "Number": 0, "IncomingMessages": [ "維金族戰士代代相傳的古老智慧從記號符石中傾瀉而出,像被遺忘已久的記憶般滲入我的腦海。", - "嘎啦!巡警是進步與文明的大敵,它們不是自然秩序的一員。\n\n維金族透過鮮血、塵土與鋼鐵,尋求一切的平衡。巡警的干預是對維金族正義聖戰的橫加阻撓。\n\n必須制裁它們對維金族信仰的侮辱。" + "嘎啦!巡警是進步與文明之敵。他們不是自然的產物。\n\n他們的干涉冒犯了正義的維金族征戰,維金族想透過鮮血、塵土與鋼鐵尋求一切的平衡。\n\n這般對維金族與他們信仰的冒犯絕不能視而不見。" ], "Options": [ { @@ -6847,7 +6847,7 @@ "Number": 0, "IncomingMessages": [ "符文在石頭上成形。透過光的灼熱它們用我族人的語言向我吟唱著關於維金族長老。", - "在赫克成為領導者之前,維金族相當懼怕巡警。我們的弟兄跟所有種族一樣,在它們的暴力行徑前畏懼,在它們的殘虐統治下退縮。\n\n但是赫克的崛起,預示著新黎明的到來。這位領袖讓維金族變得強大起來,現在他們擁有無限的勇氣。" + "赫克來到之前,維金族相當懼怕巡警。我們的弟兄跟所有種族一樣,害怕他們的無理暴力與暴政。\n\n但是赫克的到來帶來了新黎明。這位領袖讓維金族變得強壯。現在他們擁有無限勇氣。" ], "Options": [ { @@ -6934,7 +6934,7 @@ "Number": 0, "IncomingMessages": [ "一個古老文明的印記曾被這古怪的記號吸收。維金族的故事不知從何用我等族類的語言傳了出來。", - "赫克在無盡的戰事之中迎來死亡。衰老侵蝕他的身體,他變得老邁而無用。\n\n赫克一面低吼,一面按照維金族傳統,在偉大巨石前將自己衰敗的身體砍為兩半。\n\n他瀕死的吼聲,至今仍迴盪在外圍星域。赫克活在我們心中,是我等族人最尊敬的長老。" + "赫克的死亡在無盡的戰事之中到來。衰老侵蝕了他的身體。他變得老邁而無用。\n\n赫克一面低吼,一面按照維金族傳統,在偉大巨石前將自己衰敗的身體一分為二。\n\n他瀕死的吼聲,至今仍迴盪在外圍星域。赫克活在我們心中,是最受到尊敬的長老。" ], "Options": [ { @@ -7021,7 +7021,7 @@ "Number": 0, "IncomingMessages": [ "符文在石頭上成形。透過光的灼熱它們用我族人的語言向我吟唱著關於維金族長老。", - "維金族奪得了光榮的勝利,然而高貴的戰士變得疲憊不堪。對機械發動的襲擊,持續了將近九千次循環。\n\n死傷難以計算,但他們並未徹底勝利,只是拖慢了巡警無限自我複製的腳步,沒有把它們徹底擊敗。" + "維金族獲得了光榮的勝利,但是神聖的戰士疲倦又脆弱。對機械的屠殺持續了九百九十九次循環。\n\n死傷難以計算,但是他們依然獲得了勝利。永無止境的巡警複製程序放慢速度,但是沒辦法完全阻止。" ], "Options": [ { @@ -7050,7 +7050,7 @@ "Number": 0, "IncomingMessages": [ "古怪的文字在石頭上成形,揭示維金族長老時代的秘密。至於我為什麼能看得懂,原因不明。", - "嘎啦!巡警群被眾人擊退,壓迫者逃到了宇宙中尋求庇護。\n\n赫克的靈魂仔細檢視戰場,看到維金族迎來光榮又正義的勝利。赫克的國度享受著嘎啦嘎啦時,自動機械陷入沉寂。\n\n勝利之歌響徹銀河邊緣的每個角落。" + "嘎啦!巡警群被眾人擊退。壓迫者逃到了宇宙的收容所。\n\n赫克的靈魂仔細檢視戰場,看到維金族迎來光榮又正義的勝利。赫克享受嘎啦嘎啦的聲響時,機械生物沉默不語。\n\n勝利之歌迴響於銀河的邊緣。" ], "Options": [ { @@ -7253,7 +7253,7 @@ "Number": 0, "IncomingMessages": [ "維金族長老的呢喃迴盪在空中。突然之間,文字自行刻劃進印記之中,也深深刻進我的心中。", - "吉客族改變了,變得和平多了。他們的繁殖池以貿易之名繁衍著後代。\n\n維金族接受了這份和平,但我們可不像銀河系的其他生物一樣健忘。\n\n恥辱的痕跡仍在,以血犯下的罪行不會褪色。我們不會遺忘。" + "吉客族改變了。變得和平多了。他們的繁殖池以貿易之名進行繁殖。\n\n維金族接受了這份和平,但我們可不像銀河的其他生物一樣健忘。\n\n恥辱不變。以血犯下的罪行不會消退。我們不會遺忘。" ], "Options": [ { @@ -7281,7 +7281,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "石頭彷彿吸收了千年以前此地居民的知識。它現在正用我的母語對我說話。" + "銘牌冰冷且無聲。維金族傳奇已然落幕。" ], "Options": [ { @@ -10313,7 +10313,7 @@ "Number": 0, "IncomingMessages": [ "古代記號用深入我內心的頻率吟唱著,用科瓦族靈魂之聲的聲響充滿著我。", - "知識是理解一切可能性的先決條件。寰宇訴說的話語斷斷續續,寰宇介面是它的影子,巨石則是它四散各地的孩子。\n\n巨石共同傳遞著無限的智慧,它們必須被世人了解。" + "知識是通往理解可能的大道。寰宇訴說的話語斷斷續續,寰宇介面是它們的影子。巨石則是它們四散各地的孩子。\n\n只要讓巨石聚在一起,便能傳遞無限的智慧。它們必須被世人了解。" ], "Options": [ { @@ -10545,7 +10545,7 @@ "Number": 0, "IncomingMessages": [ "古怪的石頭記號將科瓦族回音的智慧傳送給渴望的人。我不知道它是以何種方言訴說,但我卻能理解以前在此崇拜之人的故事。", - "失聯並不是永恆的狀態,失聯只不過是新等式的開端。在科瓦超行星上,化作科瓦族靈魂之聲的存在體會將自己的空殼留給後裔。\n\n這便是科瓦族一直以來的生活方式:永無止盡的脫殼循環。\n\n只要我們的光芒持續閃爍,這種生活方式就會繼續下去。" + "斷線並不是永恆的狀態。斷線僅是新方程式的開始。在科瓦超行星上,進入科瓦族靈魂之聲的存在體會將自己的空殼留給後裔。\n\n這便是科瓦族一直以來的生活方式:永無止盡的脫殼循環。\n\n只要我們的光芒持續閃爍,這種生活方式就會繼續下去。" ], "Options": [ { @@ -10603,7 +10603,7 @@ "Number": 0, "IncomingMessages": [ "光芒從尖塔四散開來。它們穿過我,每一道都敲敲訴說著在石中埋藏千年的科瓦族祕密。", - "科瓦族過著與世無爭的生活。我們崇拜巡警、向巡警學習,與巡警共生共存。\n\n科瓦族尊敬巡警的生存方式,拒絕開挖它們所保護的聖地。\n\n巡警是我們的啟蒙之光。" + "科瓦族以和平的方式過活。我們崇拜巡警、向巡警學習,與他們共生共存。\n\n科瓦族尊敬巡警的生活方式,拒絕開挖他們所保護的聖地。\n\n我們已看破塵世。" ], "Options": [ { @@ -10864,7 +10864,7 @@ "Number": 0, "IncomingMessages": [ "絢麗的光芒從古代記號綻開。它圍繞著我,用科瓦族靈魂之聲的記憶與聲響吞沒了我的心靈。以前在此崇拜的存在體的夢變成了我的。", - "哎唷。吉客族掌控了科瓦族的科技,用來征服世界。覬覦無限力量的竊賊、竄位者和偽君主。他們會消滅所有反對者。\n\n力量的平衡倒向黑暗。\n\n這是失去聯結與荒謬罪行的年代。" + "哎唷。吉客族掌控了科瓦族的科技,用來征服世界。小偷、竄權者、假君主的無限次方。反對他們的存在體將會消逝。\n\n平衡傾向黑暗的那方。\n\n這是斷線與無邏輯罪行的年代。" ], "Options": [ { @@ -10980,7 +10980,7 @@ "Number": 0, "IncomingMessages": [ "我聽見許多遙遠的聲音,來自古時曾經在此敬拜的科瓦族。他們呢喃的同時,用我的語言寫成的文字浮現在碑石上,發出淡淡光輝。靈魂之聲渴望被人聽見......", - "第一世代無法控制他們廣大帝國的外圍星域。寰宇異教逐漸茁壯,一點一滴教導和諧的真義。\n\n只懂得戰爭的腦袋開始質疑,貪婪和野心臣服於理性。\n\n吉客族不知所措,第一世代內部發生矛盾與分裂。" + "第一世代無法控制他們廣大帝國的外圍星域。寰宇異教逐漸茁壯,一點一滴教導和諧。\n\n只知道戰爭的腦袋開始質疑。貪婪和野心臣服於理性。\n\n吉客族掙扎不已。第一世代起了衝突、產生分裂。" ], "Options": [ { @@ -11067,7 +11067,7 @@ "Number": 0, "IncomingMessages": [ "古怪的石頭記號將科瓦族回音的智慧傳送給渴望的人。我不知道它是以何種方言訴說,但我卻能理解以前在此崇拜之人的故事。", - "吉客族站在寰宇介面的陰影之下。介面並未開啟,靜寂無聲。然而,第一世代仍感到敬畏不已。他們意識到在永無盡頭的宇宙中,自己的存在根本微不足道。\n\n這原本是不可能的事。但在無限的宇宙之中,一切都有可能。吉客族改變了。式微年代開始了。" + "吉客族站在寰宇介面的陰影之中。介面並未開啟,也不出聲。但是,第一世代感到敬畏不已。他們感覺到自己的存在在永無盡頭的宇宙中有多微不足道。\n\n這原本是不可能的事。但在無限當中,任何事都有可能。吉客族變了。式微開始了。" ], "Options": [ { @@ -11096,7 +11096,7 @@ "Number": 0, "IncomingMessages": [ "耳語聲從器物的尖利邊緣傳了出來,用我的母語訴說著科瓦族靈魂之聲的夢與記憶。", - "一聲不發、文風不動的寰宇介面,讓吉客族特使認識到自身的渺小,揭示了他們在無限時空中微不足道的角色。\n\n它逼迫他們認清自己在浩瀚宇宙當中真正的地位。\n\n吉客族意識到自己種族的愚蠢,羞恥地低下了頭,反省自己一手犯下的各種誤算。" + "一聲不發、文風不動的寰宇介面讓吉客族特使感到渺小,並讓他們知道了自己在無限世界中的角色。\n\n它逼著他們認清自己在無盡宇宙當中真正的地位。\n\n吉客族看到了自己的愚笨,羞恥地低下了頭,反省自己的計算失誤。" ], "Options": [ { @@ -11125,7 +11125,7 @@ "Number": 0, "IncomingMessages": [ "光芒從尖塔四散開來。它們穿過我,每一道都敲敲訴說著在石中埋藏千年的科瓦族祕密。", - "吉客族第一世代勢衰,寰宇異教接掌了權力。宇宙正式進入式微年代。無止盡的擴張版圖皆化為塵土,長達數世紀的侵略逐漸停止。\n\n吉客族看見了新的出路,科瓦族重獲自由。過去的誤算鋪下了發現新平衡的道路。" + "吉客族第一世代勢衰,寰宇異教接手了權力。式微達到顛峰。無止盡的擴張成了塵土。幾世紀的侵略逐漸停止。\n\n吉客族看到了新的解法,科瓦族重獲自由。過去的計算失誤為發現新平衡的旅程鋪了路。" ], "Options": [ { @@ -11212,7 +11212,7 @@ "Number": 0, "IncomingMessages": [ "絢麗的光芒從古代記號綻開。它圍繞著我,用科瓦族靈魂之聲的記憶與聲響吞沒了我的心靈。以前在此崇拜的存在體的夢變成了我的。", - "一切皆有可能,旅行者的到來也一樣。不過機率微乎其微。儘管如此,我們依然仰望天空。\n\n他們即使不來這裡,也會於別處存在。我們的族人或者與類似我們的種族,會歡迎他們。\n\n在無秩序的無限之中,我們必須死守這個可能性。" + "旅行者的到來的確有可能,任何事皆不無可能。不過機率微乎其微。儘管如此,我們依然看著天空。\n\n若他們不來此處,他們仍會存在於他方,我們的族人、或是類似我們的種族將會歡迎他們。\n\n在無限的混亂之中,我們必須死守可能。" ], "Options": [ { @@ -11269,7 +11269,7 @@ "IsFactory": false, "Number": 0, "IncomingMessages": [ - "石頭彷彿吸收了千年以前此地居民的知識。它現在正用我的母語對我說話。" + "歷史建築悄然無聲。科瓦族的聖約已終了。" ], "Options": [ { diff --git a/assets/json/zh-hant/Buildings.lang.json b/assets/json/zh-hant/Buildings.lang.json index fa3d90df..07460eab 100644 --- a/assets/json/zh-hant/Buildings.lang.json +++ b/assets/json/zh-hant/Buildings.lang.json @@ -20809,9 +20809,9 @@ { "Id": "build1000", "Icon": "building/1000.png", - "Name": "水中生物", + "Name": "裝甲海葵", "Group": "有機裝飾", - "Description": "可建造裝飾品,用以美化你的基地。", + "Description": "一種肉食性海洋有機體。裝甲外殼包裹著核心息肉,只露出刺絲胞觸手。無意識的神經痙攣導致此生物永遠在扭動:總是在追尋,總是在飢餓。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20836,9 +20836,9 @@ { "Id": "build1001", "Icon": "building/1001.png", - "Name": "水中生物", + "Name": "細條珊瑚", "Group": "有機裝飾", - "Description": "可建造裝飾品,用以美化你的基地。", + "Description": "一截巨大的鈣質層,可自然融入不可定向的長條型空間。為任何可居住的基地增添神秘的深海特質。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20863,9 +20863,9 @@ { "Id": "build1002", "Icon": "building/1002.png", - "Name": "水中生物", + "Name": "水中殖民地", "Group": "有機裝飾", - "Description": "可建造裝飾品,用以美化你的基地。", + "Description": "從生機盎然的海床拉出的岩層。附著其上的海洋生物覆蓋在營養豐富的黏液中,在陸地條件下也能保持進食與濕潤。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20890,9 +20890,9 @@ { "Id": "build1003", "Icon": "building/1003.png", - "Name": "花", + "Name": "夜語花", "Group": "有機裝飾", - "Description": "可建造裝飾品,用以美化你的基地。", + "Description": "一叢耐寒的植物,經過基因改造,可在所有環境型態、土壤類型和天氣條件下茁壯成長。帶倒刺的花瓣會將致命的毒素刺進血肉,保護花朵免受潛在的掠食者侵害。接觸時建議使用危險物質防護手套。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20917,9 +20917,9 @@ { "Id": "build1004", "Icon": "building/1004.png", - "Name": "花", + "Name": "海膽花", "Group": "有機裝飾", - "Description": "可建造裝飾品,用以美化你的基地。", + "Description": "一叢耐寒的植物,經過基因改造,可在所有環境型態、土壤類型和天氣條件下茁壯成長。這些奇形怪狀的花朵內充滿花粉,會散發出令人眼花繚亂的甜美香氣。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -20944,9 +20944,9 @@ { "Id": "build1005", "Icon": "building/1005.png", - "Name": "花", + "Name": "永恆之眼花", "Group": "有機裝飾", - "Description": "可建造裝飾品,用以美化你的基地。", + "Description": "一叢耐寒的植物,經過基因改造,可在所有環境型態、土壤類型和天氣條件下茁壯成長。這些舌狀花朵日夜開放,吸收來自當地和遙遠恆星的光線。", "BaseValueUnits": 500.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/zh-hant/Others.lang.json b/assets/json/zh-hant/Others.lang.json index c545ae16..7fa77069 100644 --- a/assets/json/zh-hant/Others.lang.json +++ b/assets/json/zh-hant/Others.lang.json @@ -5296,9 +5296,9 @@ { "Id": "other329", "Icon": "other/329.png", - "Name": "觸手 披風", + "Name": "觸手披風", "Group": "可解鎖的披風", - "Description": "獨家外觀外觀覆蓋。\n在外觀修飾符上轉換外套的外觀。", + "Description": "特殊的強化套裝外觀覆寫<>。\n\n披風的觸手網格由再生纖維素纖維編織而成,在銀河中飄動著。\n\n在外觀改造器<>裡改變你的強化套裝外觀。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5317,9 +5317,9 @@ { "Id": "other330", "Icon": "other/330.png", - "Name": "宇宙巨型動物 披風", + "Name": "宇宙巨型動物披風", "Group": "可解鎖的披風", - "Description": "獨家外觀外觀覆蓋。\n在外觀修飾符上轉換外套的外觀。", + "Description": "特殊的強化套裝外觀覆寫<>。\n\n在太空最深處悠游著宇宙巨型動物<>,牠們與旅行者路徑對齊,夢想著可能的現實。\n\n在外觀改造器<>裡改變你的強化套裝外觀。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, @@ -5338,9 +5338,9 @@ { "Id": "other331", "Icon": "other/331.png", - "Name": "泰坦巨蟲 披風", + "Name": "泰坦巨蟲披風", "Group": "可解鎖的披風", - "Description": "獨家外觀外觀覆蓋。\n\n「蟲王佇立於沙土之上,其血肉遮天。」\n\n在外觀修飾符上轉換外套的外觀。", + "Description": "特殊的強化套裝外觀覆寫<>。\n\n「蟲王佇立在沙土之上,其血肉遮天。」\n\n在外觀改造器<>裡改變你的強化套裝外觀。", "BaseValueUnits": 3000.0, "CurrencyType": "Quicksilver", "MaxStackSize": 5.0, diff --git a/assets/json/zh-hant/Technology.lang.json b/assets/json/zh-hant/Technology.lang.json index 93741e73..8f2f2c12 100644 --- a/assets/json/zh-hant/Technology.lang.json +++ b/assets/json/zh-hant/Technology.lang.json @@ -1054,7 +1054,7 @@ "Quantity": 2 }, { - "Id": "prod115", + "Id": "prod116", "Quantity": 2 } ], diff --git a/assets/lang/language.af.json b/assets/lang/language.af.json index d3d25cb2..3b01a3ed 100644 --- a/assets/lang/language.af.json +++ b/assets/lang/language.af.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "E44580BED12EA5532B278973DEEC9DF1" + "portalCodeCopied": "Portal code copied!", + "hashCode": "B0FA68D5418C816158BEA591F5415FCF" } \ No newline at end of file diff --git a/assets/lang/language.ar.json b/assets/lang/language.ar.json index 5f76effc..8bc95694 100644 --- a/assets/lang/language.ar.json +++ b/assets/lang/language.ar.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "CB2734F9EC59FE6DE81FE7B33A869EF3" + "portalCodeCopied": "Portal code copied!", + "hashCode": "24A82302BC1B923E92842229B67ED41B" } \ No newline at end of file diff --git a/assets/lang/language.cs.json b/assets/lang/language.cs.json index 44877271..f6df3b2f 100644 --- a/assets/lang/language.cs.json +++ b/assets/lang/language.cs.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "47716F6D4B1ED978DB0E82BFBB7A35D8" + "portalCodeCopied": "Portal code copied!", + "hashCode": "E0D47ED7376125B04409404723109BB4" } \ No newline at end of file diff --git a/assets/lang/language.de.json b/assets/lang/language.de.json index 9bd65750..71ed5d66 100644 --- a/assets/lang/language.de.json +++ b/assets/lang/language.de.json @@ -462,8 +462,9 @@ "nomNomStep4": "Gib den Code in die App ein", "syncWithNomNom": "Synchronisiere mit dem NomNom Save Editor", "syncWithNomNomDesc": "Übertrage dein Spiel-Inventar", - "instructions": "Instructions", - "nomNomCollaboration": "NomNom collaboration", - "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "81A3B776727A78AB5DCD2D132D503121" + "instructions": "Anleitung", + "nomNomCollaboration": "Zusammenarbeit mit NomNom", + "nomNomCollaborationDesc": "Synchronisiere dein Inventar im Spiel mit der App über den NomNom-Speichereditor! Nur für PC verfügbar", + "portalCodeCopied": "Portal code copied!", + "hashCode": "464C30FCD897F8A363F2B67F73C7A448" } \ No newline at end of file diff --git a/assets/lang/language.en.json b/assets/lang/language.en.json index ebe74091..07b8c326 100644 --- a/assets/lang/language.en.json +++ b/assets/lang/language.en.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "EAFE3E0B15480B8C418C4E576B8999A2" + "portalCodeCopied": "Portal code copied!", + "hashCode": "B25310A36537CC95D6C299CD63D757F3" } \ No newline at end of file diff --git a/assets/lang/language.es.json b/assets/lang/language.es.json index e21d9426..6b91e599 100644 --- a/assets/lang/language.es.json +++ b/assets/lang/language.es.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "66CDFF31C77E8F22743A0A1B1FD29E2E" + "portalCodeCopied": "Portal code copied!", + "hashCode": "FB41F15B68E9389A2C30D230B3F03083" } \ No newline at end of file diff --git a/assets/lang/language.fr.json b/assets/lang/language.fr.json index f8455bcb..488efa4c 100644 --- a/assets/lang/language.fr.json +++ b/assets/lang/language.fr.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "6564D8BA6CBAC195DF42ED2F198B5F27" + "portalCodeCopied": "Portal code copied!", + "hashCode": "84BBD5920E01C84384CC87FF0DA68C0F" } \ No newline at end of file diff --git a/assets/lang/language.hu.json b/assets/lang/language.hu.json index 0705dfd5..e7cef454 100644 --- a/assets/lang/language.hu.json +++ b/assets/lang/language.hu.json @@ -388,7 +388,7 @@ "markAsClaimed": "Begyűjtöttnek jelölve", "markAsNotClaimed": "Begyűjtetlennek jelölve", "communityMissionMismatchTitle": "Úgy tűnik, hogy a jelenlegi közösségi küldetés jutalma helytelen.", - "showOwned": "Show owned", + "showOwned": "megmutatja a tulajdonost", "communityMissionMismatchMessage": "Ez akkor fordulhat elő, ha a No Man's Sky frissítésre kerül, és megváltozik a közösségi küldetés sorrendje. Kérjük, várja meg az alkalmazás következő frissítését (általában minden pénteken) a játékelemek megjelenítésének javításához", "seasonalExpeditionSeasons": "Expedició Szezonok", "puzzles": "Feladványok", @@ -450,20 +450,21 @@ "syncDocumentationNotice": "Ez az oldal nem szinkronizált a mentéseddel. Kattints ide, hogy kiderítsd miért.", "syncSelectLocationToSaveFile": "Válaszd ki, hogy hova mented a fájlt", "addedInUpdate": "Ebben a frissítésben lett hozzáadva a játékhoz", - "suggestALink": "Suggest a Link", - "creatureHarvestKill": "Kill", - "creatureHarvestHarvest": "Harvest", - "galacticAddressPlanetIndex": "Planet index", - "stepNum": "Step {0}", - "downloadNomNom": "Download and run NomNom", - "downloadFromGithub": "Download from Github", - "nomNomStep2": "Open up the menu in NomNom", - "nomNomStep3": "Select the inventory to sync and generate the code", - "nomNomStep4": "Enter the code into the app", - "syncWithNomNom": "Sync with NomNom save editor", - "syncWithNomNomDesc": "Transfer your in game inventory", - "instructions": "Instructions", - "nomNomCollaboration": "NomNom collaboration", - "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "F0BDF8CC214E3FCB7831A115B2F859E4" + "suggestALink": "Javasolj linket", + "creatureHarvestKill": "Megölni", + "creatureHarvestHarvest": "termés", + "galacticAddressPlanetIndex": "Bolygó index", + "stepNum": "1 lépés , 2 lépés stb", + "downloadNomNom": "töltsdle és futasd a NomNom-ot", + "downloadFromGithub": "letőltés a Gifthub-rol", + "nomNomStep2": "nyisd meg a menüt a NomNom-ban", + "nomNomStep3": "Válassza ki a szinkronizálandó leltárt és generáljon kódot.", + "nomNomStep4": "ird be a kodót az app-ba", + "syncWithNomNom": "Szinkronizálás a NomNom mentési szerkesztővel", + "syncWithNomNomDesc": "A játékban lévő leltár átvitele", + "instructions": "Útmutató", + "nomNomCollaboration": "NomNom együttműködés", + "nomNomCollaborationDesc": "Szinkronizálja játékkészletét az alkalmazással a NomNom mentési szerkesztőn keresztül! Csak PC-re érhető el", + "portalCodeCopied": "Portal code copied!", + "hashCode": "AA0896AFF7F2599E785F0D4154BDE7EE" } \ No newline at end of file diff --git a/assets/lang/language.id.json b/assets/lang/language.id.json index f55f5f7b..bc196db1 100644 --- a/assets/lang/language.id.json +++ b/assets/lang/language.id.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "6D3024CE87039C840DD741E9B94F3CE6" + "portalCodeCopied": "Portal code copied!", + "hashCode": "3305BDDB611B9AA7566FC4A1FAD8D6ED" } \ No newline at end of file diff --git a/assets/lang/language.it.json b/assets/lang/language.it.json index 062af357..a51e7a2e 100644 --- a/assets/lang/language.it.json +++ b/assets/lang/language.it.json @@ -462,8 +462,9 @@ "nomNomStep4": "Inserisci il codice nell'app", "syncWithNomNom": "Sincronizzazione con l'editor di salvataggio NomNom", "syncWithNomNomDesc": "Trasferisci il tuo inventario di gioco", - "instructions": "Instructions", - "nomNomCollaboration": "NomNom collaboration", - "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "6AE0EDACE0F3EC8DFBD85E7D8BB8E2ED" + "instructions": "Instruzioni", + "nomNomCollaboration": "Collaborazione con NomNom", + "nomNomCollaborationDesc": "Sincronizza il tuo inventario di gioco con l'app attraverso il salvataggio dell'editor di NomNom! Disponibile solo per PC", + "portalCodeCopied": "Portal code copied!", + "hashCode": "AFD9C9005564EEE8D4E4FE70C7029BFD" } \ No newline at end of file diff --git a/assets/lang/language.ja.json b/assets/lang/language.ja.json index 70468819..2002e9a0 100644 --- a/assets/lang/language.ja.json +++ b/assets/lang/language.ja.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "FCFD910EEAC92F81F4B4BD61ACA3C65A" + "portalCodeCopied": "Portal code copied!", + "hashCode": "B98C8018ADA7D739252ACE129E3B81B6" } \ No newline at end of file diff --git a/assets/lang/language.ms.json b/assets/lang/language.ms.json index 6b791f98..39c5a297 100644 --- a/assets/lang/language.ms.json +++ b/assets/lang/language.ms.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "1C1FF23059C8D1251A14971AE2ACC0CC" + "portalCodeCopied": "Portal code copied!", + "hashCode": "F7366CFA2E4D62C0BF7CE5490F4E837C" } \ No newline at end of file diff --git a/assets/lang/language.nl.json b/assets/lang/language.nl.json index 401a3f4d..eaec9e7b 100644 --- a/assets/lang/language.nl.json +++ b/assets/lang/language.nl.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "68A42C2F7908800687084E3F13BC8FEF" + "portalCodeCopied": "Portal code copied!", + "hashCode": "52A98CCA49252D27C8CB728BA9443ABB" } \ No newline at end of file diff --git a/assets/lang/language.no.json b/assets/lang/language.no.json index 91a5e5a4..adb4b560 100644 --- a/assets/lang/language.no.json +++ b/assets/lang/language.no.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "136C348E55DB68C4FB7F4D01480B7781" + "portalCodeCopied": "Portal code copied!", + "hashCode": "43C692730EA573E96C4E4A9EB26E26DA" } \ No newline at end of file diff --git a/assets/lang/language.ph.json b/assets/lang/language.ph.json index c0e8226a..408b841f 100644 --- a/assets/lang/language.ph.json +++ b/assets/lang/language.ph.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "B38FCDF75AC75CC3F3D6E4D4C01DF8BB" + "portalCodeCopied": "Portal code copied!", + "hashCode": "2E4FBDBC5A9B1A6AC5ABC03A8A1F898A" } \ No newline at end of file diff --git a/assets/lang/language.pl.json b/assets/lang/language.pl.json index 20bd50ad..f08f1cc2 100644 --- a/assets/lang/language.pl.json +++ b/assets/lang/language.pl.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "88CA09520FA723A14A186B30E16CD87C" + "portalCodeCopied": "Portal code copied!", + "hashCode": "B2AE0A3ED1D72A6F1255534653D15EC4" } \ No newline at end of file diff --git a/assets/lang/language.pt-br.json b/assets/lang/language.pt-br.json index 38aac986..82b3c8e3 100644 --- a/assets/lang/language.pt-br.json +++ b/assets/lang/language.pt-br.json @@ -454,16 +454,17 @@ "creatureHarvestKill": "Mate", "creatureHarvestHarvest": "Colheita", "galacticAddressPlanetIndex": "Index Planetário", - "stepNum": "Step {0}", - "downloadNomNom": "Download and run NomNom", - "downloadFromGithub": "Download from Github", - "nomNomStep2": "Open up the menu in NomNom", - "nomNomStep3": "Select the inventory to sync and generate the code", - "nomNomStep4": "Enter the code into the app", - "syncWithNomNom": "Sync with NomNom save editor", - "syncWithNomNomDesc": "Transfer your in game inventory", - "instructions": "Instructions", - "nomNomCollaboration": "NomNom collaboration", - "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "35E3233582235413D131D00013EF43A9" + "stepNum": "Passo (0)", + "downloadNomNom": "Baixe e execute o NomNom", + "downloadFromGithub": "Baixe do Github", + "nomNomStep2": "Abra o menu no NomNom", + "nomNomStep3": "Selecione o inventário para sincronizar e gerar o código.", + "nomNomStep4": "Insira o código no app", + "syncWithNomNom": "Sincronize com o editor de salvamento do NomNom", + "syncWithNomNomDesc": "Transfira seu inventário no jogo", + "instructions": "Instruções ", + "nomNomCollaboration": "Colaboração NomNom", + "nomNomCollaborationDesc": "Sincronize seu inventário no jogo com o aplicativo por meio do editor de salvamento do NomNom!\n Disponível apenas para computador", + "portalCodeCopied": "Portal code copied!", + "hashCode": "9CB8EB76B1C29BDC8C0B905AA0B33860" } \ No newline at end of file diff --git a/assets/lang/language.pt.json b/assets/lang/language.pt.json index 937712d0..95a0543f 100644 --- a/assets/lang/language.pt.json +++ b/assets/lang/language.pt.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "E7E93519B324AA6CA5C251DC0F14CB38" + "portalCodeCopied": "Portal code copied!", + "hashCode": "6E02360BF86D193F030FE9845CC291BB" } \ No newline at end of file diff --git a/assets/lang/language.ro.json b/assets/lang/language.ro.json index 11db00df..f68f76bb 100644 --- a/assets/lang/language.ro.json +++ b/assets/lang/language.ro.json @@ -41,7 +41,7 @@ "noticeContent": "Ziua Indragostitilor fericita! Sper ca ziua ta să fie plină de dragoste din toate colțurile tuturor galaxiilor! Mulțumiri speciale NMS_GalacticCorporate pentru crearea de carduri de Ziua Îndrăgostiților legate de NMS!", "noticeAccept": "Acceptă", "buyMeACoffee": "Cumpără-mi o cafea", - "patreon": "Patreon", + "patreon": "romania", "paypal": "PayPal", "kofi": "Ko-fi", "searchItems": "Caută item", @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "B25938992327222E3F94F362444807DD" + "portalCodeCopied": "Portal code copied!", + "hashCode": "FE839DE06CE877CB27EFA0D09D72AE32" } \ No newline at end of file diff --git a/assets/lang/language.ru.json b/assets/lang/language.ru.json index f26e068e..7c68a093 100644 --- a/assets/lang/language.ru.json +++ b/assets/lang/language.ru.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "920870A7A83D25859B1FE53976BD6F25" + "portalCodeCopied": "Portal code copied!", + "hashCode": "710E8A87975DD313972856EC0C236F7C" } \ No newline at end of file diff --git a/assets/lang/language.tl.json b/assets/lang/language.tl.json index ebe74091..07b8c326 100644 --- a/assets/lang/language.tl.json +++ b/assets/lang/language.tl.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "EAFE3E0B15480B8C418C4E576B8999A2" + "portalCodeCopied": "Portal code copied!", + "hashCode": "B25310A36537CC95D6C299CD63D757F3" } \ No newline at end of file diff --git a/assets/lang/language.tr.json b/assets/lang/language.tr.json index 1a08d916..5685d444 100644 --- a/assets/lang/language.tr.json +++ b/assets/lang/language.tr.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "F2CB3286188385A80BB1CA10968ACB36" + "portalCodeCopied": "Portal code copied!", + "hashCode": "2D697FF302F3E0D1B34FBE4EB1024B1F" } \ No newline at end of file diff --git a/assets/lang/language.ur.json b/assets/lang/language.ur.json index 9939364e..6a884456 100644 --- a/assets/lang/language.ur.json +++ b/assets/lang/language.ur.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "2089E13470A242AB933A4C6D3BC4422D" + "portalCodeCopied": "Portal code copied!", + "hashCode": "1783500F90B356EE6CEF85AC2B46380A" } \ No newline at end of file diff --git a/assets/lang/language.vi-vn.json b/assets/lang/language.vi-vn.json index 01cd657d..dc4ff572 100644 --- a/assets/lang/language.vi-vn.json +++ b/assets/lang/language.vi-vn.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "469C05B49567B5C55B62C667D0369EDF" + "portalCodeCopied": "Portal code copied!", + "hashCode": "A2DF0E723645CCA7051215A3F026CD44" } \ No newline at end of file diff --git a/assets/lang/language.zh-hans.json b/assets/lang/language.zh-hans.json index c1d06e3c..486dfa98 100644 --- a/assets/lang/language.zh-hans.json +++ b/assets/lang/language.zh-hans.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "AE18B628A7F82738D49801DA53715592" + "portalCodeCopied": "Portal code copied!", + "hashCode": "6658FC0176023C18A799E88A99761452" } \ No newline at end of file diff --git a/assets/lang/language.zh-hant.json b/assets/lang/language.zh-hant.json index abffc5a7..397c0a37 100644 --- a/assets/lang/language.zh-hant.json +++ b/assets/lang/language.zh-hant.json @@ -465,5 +465,6 @@ "instructions": "Instructions", "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", - "hashCode": "370800DBDF08138FDB5A5F797AE063CA" + "portalCodeCopied": "Portal code copied!", + "hashCode": "0D190C3B344C897C3AFD4B594A464C38" } \ No newline at end of file diff --git a/lib/constants/AppAvailableLanguages.dart b/lib/constants/AppAvailableLanguages.dart index 204faeb1..47cdf441 100644 --- a/lib/constants/AppAvailableLanguages.dart +++ b/lib/constants/AppAvailableLanguages.dart @@ -9,18 +9,18 @@ List supportedLanguageMaps = [ LocalizationMap(LocaleKey.italian, 'it', 'it', percentageComplete: 99), LocalizationMap(LocaleKey.russian, 'ru', 'ru', percentageComplete: 99), LocalizationMap(LocaleKey.polish, 'pl', 'pl', percentageComplete: 97), - LocalizationMap(LocaleKey.brazilianPortuguese, 'pt-br', 'br', percentageComplete: 97), + LocalizationMap(LocaleKey.brazilianPortuguese, 'pt-br', 'br', percentageComplete: 99), LocalizationMap(LocaleKey.portuguese, 'pt', 'pt', percentageComplete: 24), LocalizationMap(LocaleKey.norwegian, 'no', 'no', percentageComplete: 78), LocalizationMap(LocaleKey.romanian, 'ro', 'ro', percentageComplete: 37), LocalizationMap(LocaleKey.spanish, 'es', 'es', percentageComplete: 97), LocalizationMap(LocaleKey.czech, 'cs', 'cz', percentageComplete: 94), LocalizationMap(LocaleKey.turkish, 'tr', 'tr', percentageComplete: 90), - LocalizationMap(LocaleKey.hungarian, 'hu', 'hu', percentageComplete: 96), + LocalizationMap(LocaleKey.hungarian, 'hu', 'hu', percentageComplete: 99), LocalizationMap(LocaleKey.simplifiedChinese, 'zh-hans', 'cn', percentageComplete: 97), - LocalizationMap(LocaleKey.traditionalChinese, 'zh-hant', 'cn', percentageComplete: 49), + LocalizationMap(LocaleKey.traditionalChinese, 'zh-hant', 'cn', percentageComplete: 48), LocalizationMap(LocaleKey.arabic, 'ar', 'ar', percentageComplete: 11), - LocalizationMap(LocaleKey.vietnamese, 'vi-vn', 'vn', percentageComplete: 90), + LocalizationMap(LocaleKey.vietnamese, 'vi-vn', 'vn', percentageComplete: 89), LocalizationMap(LocaleKey.urdu, 'ur', 'pk', percentageComplete: 7), LocalizationMap(LocaleKey.filipino, 'ph', 'ph', percentageComplete: 0), LocalizationMap(LocaleKey.indonesian, 'id', 'id', percentageComplete: 88), diff --git a/pubspec.lock b/pubspec.lock index 0af6821a..11e0eb19 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -102,10 +102,10 @@ packages: description: path: "." ref: HEAD - resolved-ref: "8748efa33b8f1b6250cfad0ac99fb5206523d11d" + resolved-ref: "1b3e38b5c1b568a9cc094b71dba65f5788271713" url: "https://github.com/AssistantApps/Flutter.Common.git" source: git - version: "0.2.6" + version: "0.2.7" async: dependency: transitive description: From bdea7f07aad239e9a3bb113f5475bfef7cb55ea3 Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Tue, 22 Nov 2022 12:23:51 +0100 Subject: [PATCH 03/11] =?UTF-8?q?=F0=9F=92=84=20Tweak=20Community=20Missio?= =?UTF-8?q?n=20UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/components/common/prevAndNextPagination.dart | 2 +- .../communityMission/communityMissionPage.dart | 3 ++- .../communityMission/communityMissionRewards.dart | 9 +++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/lib/components/common/prevAndNextPagination.dart b/lib/components/common/prevAndNextPagination.dart index 1adc57e5..3327dbfb 100644 --- a/lib/components/common/prevAndNextPagination.dart +++ b/lib/components/common/prevAndNextPagination.dart @@ -60,7 +60,7 @@ Widget prevAndNextPagination( Positioned( left: 0, right: 0, - bottom: 0, + bottom: 4, child: Container( decoration: BoxDecoration( borderRadius: BorderRadius.circular(4), diff --git a/lib/pages/helloGames/communityMission/communityMissionPage.dart b/lib/pages/helloGames/communityMission/communityMissionPage.dart index 18ba1e48..f39348e4 100644 --- a/lib/pages/helloGames/communityMission/communityMissionPage.dart +++ b/lib/pages/helloGames/communityMission/communityMissionPage.dart @@ -201,11 +201,12 @@ class CommunityMissionPage extends StatelessWidget { listWithScrollbar( itemCount: widgets.length, itemBuilder: (context, index) => widgets[index], + scrollController: ScrollController(), ), Positioned( left: 0, right: 0, - bottom: 0, + bottom: 2, child: Container( child: Padding( padding: const EdgeInsets.only(left: 4, right: 4), diff --git a/lib/pages/helloGames/communityMission/communityMissionRewards.dart b/lib/pages/helloGames/communityMission/communityMissionRewards.dart index 9d8ae722..4ae041f5 100644 --- a/lib/pages/helloGames/communityMission/communityMissionRewards.dart +++ b/lib/pages/helloGames/communityMission/communityMissionRewards.dart @@ -147,6 +147,15 @@ class CommunityMissionRewards extends StatelessWidget { } } + if (qsStore.items.isEmpty) { + widgets.addAll( + [ + emptySpace3x(), + genericItemName(getTranslations().fromKey(LocaleKey.noItems)), + ], + ); + } + return animateWidgetIn( child: Column(children: widgets), ); From fb9281d00ca05a7b1e5d84ddf6ef6f3009c1383f Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Thu, 24 Nov 2022 12:45:17 +0100 Subject: [PATCH 04/11] =?UTF-8?q?=F0=9F=90=9B=20Fix=20images=20in=20descri?= =?UTF-8?q?ptions=20for=20Survey=20Device=20|=20Closes=20#141?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/generic/genericPageDescripHighlightText.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/generic/genericPageDescripHighlightText.dart b/lib/pages/generic/genericPageDescripHighlightText.dart index 2f69b528..ffe386ab 100644 --- a/lib/pages/generic/genericPageDescripHighlightText.dart +++ b/lib/pages/generic/genericPageDescripHighlightText.dart @@ -194,7 +194,7 @@ List genericPageDescripHighlightText( List paragraphNodes = List.empty(growable: true); if (!text.contains('<>')) return [genericItemDescription(text)]; - List paragraphs = text.split(RegExp(r'\r?\n')); + List paragraphs = text.split(RegExp(r'\r?\n|\/')); for (int paragraphIndex = 0; paragraphIndex < paragraphs.length; paragraphIndex++) { From d3ece5dc0f7409f6affacf4950069cc7b75a069f Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Thu, 24 Nov 2022 12:59:57 +0100 Subject: [PATCH 05/11] =?UTF-8?q?=F0=9F=91=BD=EF=B8=8F=20Update=20property?= =?UTF-8?q?=20names?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../expeditionAlphabetTranslation.dart | 3 ++- ...expeditionAlphabetTranslationAnimated.dart | 3 ++- .../patreonModalBottomSheet.dart | 3 ++- .../requiredItemDetailsTilePresenter.dart | 11 +++++------ lib/helpers/genericHelper.dart | 19 ++++--------------- lib/helpers/themeHelper.dart | 14 ++++++++++++++ lib/pages/generic/genericPageComponents.dart | 7 ++----- .../genericPageDescripHighlightText.dart | 3 ++- lib/services/base/themeService.dart | 7 ++++--- lib/theme/themes.dart | 6 +++--- 10 files changed, 40 insertions(+), 36 deletions(-) create mode 100644 lib/helpers/themeHelper.dart diff --git a/lib/components/expeditionAlphabetTranslation.dart b/lib/components/expeditionAlphabetTranslation.dart index 22aeddf7..b350b89a 100644 --- a/lib/components/expeditionAlphabetTranslation.dart +++ b/lib/components/expeditionAlphabetTranslation.dart @@ -3,6 +3,7 @@ import 'package:avatar_glow/avatar_glow.dart'; import 'package:flutter/material.dart'; import '../constants/Fonts.dart'; +import '../helpers/themeHelper.dart'; class ExpeditionAlphabetTranslation extends StatefulWidget { final String text; @@ -23,7 +24,7 @@ class _ExpeditionAlphabetTranslationWidget @override Widget build(BuildContext context) { TextStyle currentFont = - Theme.of(context).textTheme.subtitle1.copyWith(color: Colors.black); + getThemeSubtitle(context).copyWith(color: Colors.black); TextStyle expeditionFont = currentFont.copyWith(fontFamily: nmsExpeditionFontFamily); diff --git a/lib/components/expeditionAlphabetTranslationAnimated.dart b/lib/components/expeditionAlphabetTranslationAnimated.dart index f85ef6aa..84c5229c 100644 --- a/lib/components/expeditionAlphabetTranslationAnimated.dart +++ b/lib/components/expeditionAlphabetTranslationAnimated.dart @@ -4,6 +4,7 @@ import 'dart:math'; import 'package:flutter/material.dart'; import '../constants/Fonts.dart'; +import '../helpers/themeHelper.dart'; class ExpeditionAlphabetTranslationAnimated extends StatefulWidget { final String text; @@ -40,7 +41,7 @@ class _ExpeditionAlphabetTranslationAnimatedWidget @override Widget build(BuildContext context) { TextStyle currentFont = - Theme.of(context).textTheme.subtitle1.copyWith(color: Colors.black); + getThemeSubtitle(context).copyWith(color: Colors.black); TextStyle expeditionFont = currentFont.copyWith(fontFamily: nmsExpeditionFontFamily); diff --git a/lib/components/modalBottomSheet/patreonModalBottomSheet.dart b/lib/components/modalBottomSheet/patreonModalBottomSheet.dart index 0fb7526e..cd5d72fd 100644 --- a/lib/components/modalBottomSheet/patreonModalBottomSheet.dart +++ b/lib/components/modalBottomSheet/patreonModalBottomSheet.dart @@ -8,6 +8,7 @@ import '../../constants/Patreon.dart'; import '../../constants/AppImage.dart'; import '../../constants/NmsUIConstants.dart'; import '../../constants/Routes.dart'; +import '../../helpers/themeHelper.dart'; class PatreonModalBottomSheet extends StatelessWidget { final DateTime unlockDate; @@ -66,7 +67,7 @@ class PatreonModalBottomSheet extends StatelessWidget { padding: const EdgeInsets.symmetric(horizontal: 24), child: RichText( text: TextSpan( - style: Theme.of(context).textTheme.subtitle1, + style: getThemeSubtitle(context), children: nodes, ), textAlign: TextAlign.center, diff --git a/lib/components/tilePresenters/requiredItemDetailsTilePresenter.dart b/lib/components/tilePresenters/requiredItemDetailsTilePresenter.dart index 8b29f4b5..680fe25d 100644 --- a/lib/components/tilePresenters/requiredItemDetailsTilePresenter.dart +++ b/lib/components/tilePresenters/requiredItemDetailsTilePresenter.dart @@ -8,6 +8,7 @@ import '../../contracts/processorRequiredItemDetails.dart'; import '../../contracts/requiredItemDetails.dart'; import '../../helpers/genericHelper.dart'; import '../../helpers/itemsHelper.dart'; +import '../../helpers/themeHelper.dart'; import '../../pages/generic/genericPage.dart'; import '../../pages/generic/genericPageProcessorRecipe.dart'; import 'processorRecipeTilePresentor.dart'; @@ -143,9 +144,7 @@ Widget requiredItemTreeDetailsRowPresenter(BuildContext context, if (itemDetails.quantity != null && itemDetails.quantity > 0) ...[ Text( "${getTranslations().fromKey(LocaleKey.quantity)}: ${itemDetails.quantity.toString()}", - style: _subtitleTextStyle(getTheme().getTheme(context)), - // style: getTheme(context).textTheme.bodyText2, - // style: const TextStyle(color: getTheme(context).textTheme.caption.color), + style: _subtitleTextStyle(context), ), ], ], @@ -205,8 +204,8 @@ Widget requiredItemTreeDetailsRowPresenter(BuildContext context, ); } -TextStyle _subtitleTextStyle(ThemeData theme) { - final TextStyle style = theme.textTheme.bodyText2; - final Color color = theme.textTheme.caption.color; +TextStyle _subtitleTextStyle(BuildContext ctx) { + final TextStyle style = getThemeBodyMedium(ctx); + final Color color = getThemeBodySmall(ctx).color; return style.copyWith(color: color); } diff --git a/lib/helpers/genericHelper.dart b/lib/helpers/genericHelper.dart index d6c9a09b..6dd578a5 100644 --- a/lib/helpers/genericHelper.dart +++ b/lib/helpers/genericHelper.dart @@ -1,5 +1,6 @@ import 'package:assistantapps_flutter_common/assistantapps_flutter_common.dart' hide ExternalUrls; +import 'package:assistantnms_app/helpers/themeHelper.dart'; import 'package:flutter/material.dart'; import 'package:flutter_speed_dial/flutter_speed_dial.dart'; import '../../components/common/image.dart'; @@ -28,11 +29,7 @@ Widget genericItemCredits(BuildContext context, String credits, textAlign: TextAlign.center, overflow: TextOverflow.ellipsis, addDecimal: false, - style: getTheme() - .getTheme(context) - .primaryTextTheme - .bodyText1 - .copyWith(color: colour), + style: getThemeBodyLarge(context).copyWith(color: colour), ), localImage('${getPath().imageAssetPathPrefix}/credits.png', height: 17), ); @@ -84,11 +81,7 @@ Widget genericItemIntCurrency( currency, textAlign: TextAlign.center, overflow: TextOverflow.ellipsis, - style: getTheme() - .getTheme(context) - .primaryTextTheme - .bodyText1 - .copyWith(color: colour), + style: getThemeBodyLarge(context).copyWith(color: colour), ), localImage(imageUrl, height: 17), ); @@ -100,11 +93,7 @@ Widget genericItemTextWithIcon(BuildContext context, String text, IconData icon, text, textAlign: TextAlign.center, overflow: TextOverflow.ellipsis, - style: getTheme() - .getTheme(context) - .primaryTextTheme - .bodyText1 - .copyWith(color: colour), + style: getThemeBodyLarge(context).copyWith(color: colour), ), Icon(icon, size: 17, color: colour), addSpace: addSpace, diff --git a/lib/helpers/themeHelper.dart b/lib/helpers/themeHelper.dart new file mode 100644 index 00000000..b031f71c --- /dev/null +++ b/lib/helpers/themeHelper.dart @@ -0,0 +1,14 @@ +import 'package:assistantapps_flutter_common/assistantapps_flutter_common.dart'; +import 'package:flutter/material.dart'; + +TextStyle getThemeSubtitle(BuildContext ctx) => + getTheme().getTheme(ctx).textTheme.titleMedium; + +TextStyle getThemeBodyLarge(BuildContext ctx) => + getTheme().getTheme(ctx).primaryTextTheme.bodyLarge; + +TextStyle getThemeBodyMedium(BuildContext ctx) => + getTheme().getTheme(ctx).primaryTextTheme.bodyMedium; + +TextStyle getThemeBodySmall(BuildContext ctx) => + getTheme().getTheme(ctx).primaryTextTheme.bodyLarge; diff --git a/lib/pages/generic/genericPageComponents.dart b/lib/pages/generic/genericPageComponents.dart index ef9af45a..ff9f290c 100644 --- a/lib/pages/generic/genericPageComponents.dart +++ b/lib/pages/generic/genericPageComponents.dart @@ -37,6 +37,7 @@ import '../../contracts/requiredItemDetails.dart'; import '../../contracts/statBonus.dart'; import '../../helpers/genericHelper.dart'; import '../../helpers/heroHelper.dart'; +import '../../helpers/themeHelper.dart'; import '../../redux/modules/generic/genericPageViewModel.dart'; import 'allPossibleOutputsPage.dart'; import 'genericPageAllRequiredRawMaterials.dart'; @@ -215,11 +216,7 @@ List getChipList(BuildContext context, GenericPageItem genericItem) { String maxStack = genericItem.maxStackSize.toStringAsFixed(0); chipList.add(genericItemDescription( "$maxStackLang: $maxStack", - textStyle: getTheme() - .getTheme(context) - .primaryTextTheme - .bodyText1 - .copyWith(color: chipColour), + textStyle: getThemeBodyLarge(context).copyWith(color: chipColour), )); } diff --git a/lib/pages/generic/genericPageDescripHighlightText.dart b/lib/pages/generic/genericPageDescripHighlightText.dart index ffe386ab..8d9cba18 100644 --- a/lib/pages/generic/genericPageDescripHighlightText.dart +++ b/lib/pages/generic/genericPageDescripHighlightText.dart @@ -3,6 +3,7 @@ import 'package:flutter/material.dart'; import '../../constants/AppImage.dart'; import '../../contracts/data/platformControlMapping.dart'; +import '../../helpers/themeHelper.dart'; const String paleYellowColourClass = 'C9D68B'; const String goldColourClass = 'B09857'; @@ -178,7 +179,7 @@ Widget textWithHighlightTags( return RichText( text: TextSpan( - style: textStyle ?? Theme.of(context).textTheme.subtitle1, + style: textStyle ?? getThemeSubtitle(context), children: nodes, ), textAlign: textAlign, diff --git a/lib/services/base/themeService.dart b/lib/services/base/themeService.dart index 3df7882c..225a6b0c 100644 --- a/lib/services/base/themeService.dart +++ b/lib/services/base/themeService.dart @@ -28,7 +28,7 @@ class ThemeService implements IThemeService { @override Color getBackgroundColour(BuildContext context) => - darkTheme(defaultFontFamily).backgroundColor; + darkTheme(defaultFontFamily).colorScheme.background; @override Color getScaffoldBackgroundColour(BuildContext context) => @@ -44,7 +44,8 @@ class ThemeService implements IThemeService { @override Color getH1Colour(BuildContext context) { - var textColour = AdaptiveTheme.of(context).theme.textTheme.headline1.color; + var textColour = + AdaptiveTheme.of(context).theme.textTheme.displayLarge.color; if (textColour == null) { return getIsDark(context) ? Colors.white : Colors.black; } @@ -73,7 +74,7 @@ class ThemeService implements IThemeService { @override Color getCardBackgroundColour(BuildContext context) => - darkTheme(defaultFontFamily).backgroundColor; + darkTheme(defaultFontFamily).colorScheme.background; @override bool useWhiteForeground(Color backgroundColor) => diff --git a/lib/theme/themes.dart b/lib/theme/themes.dart index 3b021510..65fe18c3 100644 --- a/lib/theme/themes.dart +++ b/lib/theme/themes.dart @@ -37,12 +37,12 @@ ThemeData darkTheme(String fontFamily) { TextTheme _buildAppTextTheme(TextTheme base, String fontFamily) { return base .copyWith( - headline5: base.headline5.copyWith(fontWeight: FontWeight.w900), - headline6: base.headline6.copyWith( + headlineSmall: base.headlineSmall.copyWith(fontWeight: FontWeight.w900), + titleLarge: base.titleLarge.copyWith( fontSize: 18.0, fontWeight: FontWeight.w500, ), - caption: base.caption.copyWith( + bodySmall: base.bodySmall.copyWith( fontSize: 14.0, fontWeight: FontWeight.w500, ), From 74f9b70c156f39ac40761d4d39106a12e11f3958 Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Thu, 24 Nov 2022 14:20:28 +0100 Subject: [PATCH 06/11] =?UTF-8?q?=E2=9C=A8=20Random=20Portal=20page=20fina?= =?UTF-8?q?lize=20|=20Closes=20#139?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/lang/language.af.json | 5 ++- assets/lang/language.ar.json | 5 ++- assets/lang/language.cs.json | 5 ++- assets/lang/language.de.json | 5 ++- assets/lang/language.en.json | 5 ++- assets/lang/language.es.json | 5 ++- assets/lang/language.fr.json | 5 ++- assets/lang/language.hu.json | 5 ++- assets/lang/language.id.json | 5 ++- assets/lang/language.it.json | 5 ++- assets/lang/language.ja.json | 5 ++- assets/lang/language.ms.json | 5 ++- assets/lang/language.nl.json | 5 ++- assets/lang/language.no.json | 5 ++- assets/lang/language.ph.json | 5 ++- assets/lang/language.pl.json | 5 ++- assets/lang/language.pt-br.json | 5 ++- assets/lang/language.pt.json | 5 ++- assets/lang/language.ro.json | 5 ++- assets/lang/language.ru.json | 5 ++- assets/lang/language.tl.json | 5 ++- assets/lang/language.tr.json | 5 ++- assets/lang/language.ur.json | 5 ++- assets/lang/language.vi-vn.json | 5 ++- assets/lang/language.zh-hans.json | 5 ++- assets/lang/language.zh-hant.json | 5 ++- lib/constants/AppAvailableLanguages.dart | 10 ++--- lib/contracts/misc/customMenu.dart | 41 ++++++++++++++++---- lib/pages/portal/addPortalPage.dart | 37 +++++++++--------- lib/pages/portal/portal_random_page.dart | 2 +- lib/pages/portal/portalsPage.dart | 49 +++++++++++++----------- pubspec.lock | 4 +- 32 files changed, 166 insertions(+), 107 deletions(-) diff --git a/assets/lang/language.af.json b/assets/lang/language.af.json index 3b01a3ed..29486901 100644 --- a/assets/lang/language.af.json +++ b/assets/lang/language.af.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Alle Resepte", "loading": "Laai tans", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "B0FA68D5418C816158BEA591F5415FCF" + "randomPortal": "Random Portal", + "hashCode": "2DCC867A4C5FDDBB1469C36B0473AD53" } \ No newline at end of file diff --git a/assets/lang/language.ar.json b/assets/lang/language.ar.json index 8bc95694..ee4792a4 100644 --- a/assets/lang/language.ar.json +++ b/assets/lang/language.ar.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "ar/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "جميع الوصفات", "loading": "تحميل", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "24A82302BC1B923E92842229B67ED41B" + "randomPortal": "Random Portal", + "hashCode": "24BD0DA35C8C15F984AEA61B3C011AA7" } \ No newline at end of file diff --git a/assets/lang/language.cs.json b/assets/lang/language.cs.json index f6df3b2f..1733f57c 100644 --- a/assets/lang/language.cs.json +++ b/assets/lang/language.cs.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Všechny položky", "loading": "Načítání", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "E0D47ED7376125B04409404723109BB4" + "randomPortal": "Random Portal", + "hashCode": "2FD672ACB137C86ED1E35C46991052E7" } \ No newline at end of file diff --git a/assets/lang/language.de.json b/assets/lang/language.de.json index 71ed5d66..13b5d738 100644 --- a/assets/lang/language.de.json +++ b/assets/lang/language.de.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "de/WeekendMissionsSeason3.lang", "factionJson": "de/Factions.lang", "guildMissionJson": "de/GuildMissions.lang", - "creatureHarvestJson": "de/CreatureHarvest.lang", "seasonalExpeditionJson": "de/SeasonalExpedition.lang", + "creatureHarvestJson": "de/CreatureHarvest.lang", "journeyMilestoneJson": "de/Milestones.lang", "title": "Alle Rezepte", "loading": "Lädt", @@ -466,5 +466,6 @@ "nomNomCollaboration": "Zusammenarbeit mit NomNom", "nomNomCollaborationDesc": "Synchronisiere dein Inventar im Spiel mit der App über den NomNom-Speichereditor! Nur für PC verfügbar", "portalCodeCopied": "Portal code copied!", - "hashCode": "464C30FCD897F8A363F2B67F73C7A448" + "randomPortal": "Random Portal", + "hashCode": "CB150B69063779D839B6D6EB4D51666E" } \ No newline at end of file diff --git a/assets/lang/language.en.json b/assets/lang/language.en.json index 07b8c326..c6b274fd 100644 --- a/assets/lang/language.en.json +++ b/assets/lang/language.en.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Assistant for No Man's Sky", "loading": "Loading", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "B25310A36537CC95D6C299CD63D757F3" + "randomPortal": "Random Portal", + "hashCode": "331368EDC60C5513A7AC67169C7929E2" } \ No newline at end of file diff --git a/assets/lang/language.es.json b/assets/lang/language.es.json index 6b91e599..4528effe 100644 --- a/assets/lang/language.es.json +++ b/assets/lang/language.es.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "es/WeekendMissionsSeason3.lang", "factionJson": "es/Factions.lang", "guildMissionJson": "es/GuildMissions.lang", - "creatureHarvestJson": "es/CreatureHarvest.lang", "seasonalExpeditionJson": "es/SeasonalExpedition.lang", + "creatureHarvestJson": "es/CreatureHarvest.lang", "journeyMilestoneJson": "es/Milestones.lang", "title": "Todas las recetas", "loading": "Cargando", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "FB41F15B68E9389A2C30D230B3F03083" + "randomPortal": "Random Portal", + "hashCode": "F8726202602F3C115B07EFB417108568" } \ No newline at end of file diff --git a/assets/lang/language.fr.json b/assets/lang/language.fr.json index 488efa4c..292ebedb 100644 --- a/assets/lang/language.fr.json +++ b/assets/lang/language.fr.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "fr/WeekendMissionsSeason3.lang", "factionJson": "fr/Factions.lang", "guildMissionJson": "fr/GuildMissions.lang", - "creatureHarvestJson": "fr/CreatureHarvest.lang", "seasonalExpeditionJson": "fr/SeasonalExpedition.lang", + "creatureHarvestJson": "fr/CreatureHarvest.lang", "journeyMilestoneJson": "fr/Milestones.lang", "title": "Assistant pour No Man's Sky", "loading": "Chargement", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "84BBD5920E01C84384CC87FF0DA68C0F" + "randomPortal": "Random Portal", + "hashCode": "55AA192A985FFA7094BD897D04C74BD6" } \ No newline at end of file diff --git a/assets/lang/language.hu.json b/assets/lang/language.hu.json index e7cef454..08f19f75 100644 --- a/assets/lang/language.hu.json +++ b/assets/lang/language.hu.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Minden recept", "loading": "Töltés", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom együttműködés", "nomNomCollaborationDesc": "Szinkronizálja játékkészletét az alkalmazással a NomNom mentési szerkesztőn keresztül! Csak PC-re érhető el", "portalCodeCopied": "Portal code copied!", - "hashCode": "AA0896AFF7F2599E785F0D4154BDE7EE" + "randomPortal": "Random Portal", + "hashCode": "533B3D0C9903DD03EAB2163D30A847B5" } \ No newline at end of file diff --git a/assets/lang/language.id.json b/assets/lang/language.id.json index bc196db1..7747c342 100644 --- a/assets/lang/language.id.json +++ b/assets/lang/language.id.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Seluruh Resep", "loading": "Memuat", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "3305BDDB611B9AA7566FC4A1FAD8D6ED" + "randomPortal": "Random Portal", + "hashCode": "DB80E1DF68ADE26C3EC96AEA8F310198" } \ No newline at end of file diff --git a/assets/lang/language.it.json b/assets/lang/language.it.json index a51e7a2e..a95284df 100644 --- a/assets/lang/language.it.json +++ b/assets/lang/language.it.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "it/WeekendMissionsSeason3.lang", "factionJson": "it/Factions.lang", "guildMissionJson": "it/GuildMissions.lang", - "creatureHarvestJson": "it/CreatureHarvest.lang", "seasonalExpeditionJson": "it/SeasonalExpedition.lang", + "creatureHarvestJson": "it/CreatureHarvest.lang", "journeyMilestoneJson": "it/Milestones.lang", "title": "Tutti gli oggetti", "loading": "Caricamento", @@ -466,5 +466,6 @@ "nomNomCollaboration": "Collaborazione con NomNom", "nomNomCollaborationDesc": "Sincronizza il tuo inventario di gioco con l'app attraverso il salvataggio dell'editor di NomNom! Disponibile solo per PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "AFD9C9005564EEE8D4E4FE70C7029BFD" + "randomPortal": "Random Portal", + "hashCode": "D2063D7C2E8C7E914FB41C3E59EAFBF0" } \ No newline at end of file diff --git a/assets/lang/language.ja.json b/assets/lang/language.ja.json index 2002e9a0..0fb18880 100644 --- a/assets/lang/language.ja.json +++ b/assets/lang/language.ja.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "ja/WeekendMissionsSeason3.lang", "factionJson": "ja/Factions.lang", "guildMissionJson": "ja/GuildMissions.lang", - "creatureHarvestJson": "ja/CreatureHarvest.lang", "seasonalExpeditionJson": "ja/SeasonalExpedition.lang", + "creatureHarvestJson": "ja/CreatureHarvest.lang", "journeyMilestoneJson": "ja/Milestones.lang", "title": "建築", "loading": "Loading", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "B98C8018ADA7D739252ACE129E3B81B6" + "randomPortal": "Random Portal", + "hashCode": "D5E0490197569EA36722081A9DA23079" } \ No newline at end of file diff --git a/assets/lang/language.ms.json b/assets/lang/language.ms.json index 39c5a297..8fbd1503 100644 --- a/assets/lang/language.ms.json +++ b/assets/lang/language.ms.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Semua Resipi ", "loading": "Memuatkan ", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "F7366CFA2E4D62C0BF7CE5490F4E837C" + "randomPortal": "Random Portal", + "hashCode": "01748706D5FFBE74E24C84C1871D1775" } \ No newline at end of file diff --git a/assets/lang/language.nl.json b/assets/lang/language.nl.json index eaec9e7b..046de0d0 100644 --- a/assets/lang/language.nl.json +++ b/assets/lang/language.nl.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "nl/WeekendMissionsSeason3.lang", "factionJson": "nl/Factions.lang", "guildMissionJson": "nl/GuildMissions.lang", - "creatureHarvestJson": "nl/CreatureHarvest.lang", "seasonalExpeditionJson": "nl/SeasonalExpedition.lang", + "creatureHarvestJson": "nl/CreatureHarvest.lang", "journeyMilestoneJson": "nl/Milestones.lang", "title": "Alle Recepten", "loading": "Laden", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "52A98CCA49252D27C8CB728BA9443ABB" + "randomPortal": "Random Portal", + "hashCode": "292CC668EF1E16F0F4D40225B6AEA43D" } \ No newline at end of file diff --git a/assets/lang/language.no.json b/assets/lang/language.no.json index adb4b560..0f8665b7 100644 --- a/assets/lang/language.no.json +++ b/assets/lang/language.no.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "alle oppskrifter", "loading": "laster", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "43C692730EA573E96C4E4A9EB26E26DA" + "randomPortal": "Random Portal", + "hashCode": "844A0FF9447527790163B84AD8483397" } \ No newline at end of file diff --git a/assets/lang/language.ph.json b/assets/lang/language.ph.json index 408b841f..67ecb593 100644 --- a/assets/lang/language.ph.json +++ b/assets/lang/language.ph.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Lahat ng Recipe", "loading": "Nagkakarga..", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "2E4FBDBC5A9B1A6AC5ABC03A8A1F898A" + "randomPortal": "Random Portal", + "hashCode": "4676CF926487998415B87E43510D3999" } \ No newline at end of file diff --git a/assets/lang/language.pl.json b/assets/lang/language.pl.json index f08f1cc2..fe6ecadc 100644 --- a/assets/lang/language.pl.json +++ b/assets/lang/language.pl.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "pl/WeekendMissionsSeason3.lang", "factionJson": "pl/Factions.lang", "guildMissionJson": "pl/GuildMissions.lang", - "creatureHarvestJson": "pl/CreatureHarvest.lang", "seasonalExpeditionJson": "pl/SeasonalExpedition.lang", + "creatureHarvestJson": "pl/CreatureHarvest.lang", "journeyMilestoneJson": "pl/Milestones.lang", "title": "Wszystkie receptury", "loading": "Ładowanie", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "B2AE0A3ED1D72A6F1255534653D15EC4" + "randomPortal": "Random Portal", + "hashCode": "1926854733760E2078AA17A960C21FC7" } \ No newline at end of file diff --git a/assets/lang/language.pt-br.json b/assets/lang/language.pt-br.json index 82b3c8e3..0a641e12 100644 --- a/assets/lang/language.pt-br.json +++ b/assets/lang/language.pt-br.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "pt-br/WeekendMissionsSeason3.lang", "factionJson": "pt-br/Factions.lang", "guildMissionJson": "pt-br/GuildMissions.lang", - "creatureHarvestJson": "pt-br/CreatureHarvest.lang", "seasonalExpeditionJson": "pt-br/SeasonalExpedition.lang", + "creatureHarvestJson": "pt-br/CreatureHarvest.lang", "journeyMilestoneJson": "pt-br/Milestones.lang", "title": "Todas as Receitas", "loading": "Carregando", @@ -466,5 +466,6 @@ "nomNomCollaboration": "Colaboração NomNom", "nomNomCollaborationDesc": "Sincronize seu inventário no jogo com o aplicativo por meio do editor de salvamento do NomNom!\n Disponível apenas para computador", "portalCodeCopied": "Portal code copied!", - "hashCode": "9CB8EB76B1C29BDC8C0B905AA0B33860" + "randomPortal": "Random Portal", + "hashCode": "3486DA0651E5414B855C8F87DC3F4833" } \ No newline at end of file diff --git a/assets/lang/language.pt.json b/assets/lang/language.pt.json index 95a0543f..72760021 100644 --- a/assets/lang/language.pt.json +++ b/assets/lang/language.pt.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "pt/WeekendMissionsSeason3.lang", "factionJson": "pt/Factions.lang", "guildMissionJson": "pt/GuildMissions.lang", - "creatureHarvestJson": "pt/CreatureHarvest.lang", "seasonalExpeditionJson": "pt/SeasonalExpedition.lang", + "creatureHarvestJson": "pt/CreatureHarvest.lang", "journeyMilestoneJson": "pt/Milestones.lang", "title": "Todas as Receitas", "loading": "Carregando", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "6E02360BF86D193F030FE9845CC291BB" + "randomPortal": "Random Portal", + "hashCode": "7D9CAC86A5B4C2DD6E87F7400C723BD7" } \ No newline at end of file diff --git a/assets/lang/language.ro.json b/assets/lang/language.ro.json index f68f76bb..51c1e97f 100644 --- a/assets/lang/language.ro.json +++ b/assets/lang/language.ro.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Toate rețetele", "loading": "Se încarcă", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "FE839DE06CE877CB27EFA0D09D72AE32" + "randomPortal": "Random Portal", + "hashCode": "7D9966A4EF5433AEFD6EAEBD8FA96E7F" } \ No newline at end of file diff --git a/assets/lang/language.ru.json b/assets/lang/language.ru.json index 7c68a093..5104155f 100644 --- a/assets/lang/language.ru.json +++ b/assets/lang/language.ru.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "ru/WeekendMissionsSeason3.lang", "factionJson": "ru/Factions.lang", "guildMissionJson": "ru/GuildMissions.lang", - "creatureHarvestJson": "ru/CreatureHarvest.lang", "seasonalExpeditionJson": "ru/SeasonalExpedition.lang", + "creatureHarvestJson": "ru/CreatureHarvest.lang", "journeyMilestoneJson": "ru/Milestones.lang", "title": "Все рецепты", "loading": "Загрузка", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "710E8A87975DD313972856EC0C236F7C" + "randomPortal": "Random Portal", + "hashCode": "B24B41910902A42DF33D6344EFEFD2B6" } \ No newline at end of file diff --git a/assets/lang/language.tl.json b/assets/lang/language.tl.json index 07b8c326..c6b274fd 100644 --- a/assets/lang/language.tl.json +++ b/assets/lang/language.tl.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Assistant for No Man's Sky", "loading": "Loading", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "B25310A36537CC95D6C299CD63D757F3" + "randomPortal": "Random Portal", + "hashCode": "331368EDC60C5513A7AC67169C7929E2" } \ No newline at end of file diff --git a/assets/lang/language.tr.json b/assets/lang/language.tr.json index 5685d444..42f55196 100644 --- a/assets/lang/language.tr.json +++ b/assets/lang/language.tr.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Tüm Tarifler", "loading": "Yükleniyor", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "2D697FF302F3E0D1B34FBE4EB1024B1F" + "randomPortal": "Random Portal", + "hashCode": "C4682BBD6579F0130F269908BF28FDA0" } \ No newline at end of file diff --git a/assets/lang/language.ur.json b/assets/lang/language.ur.json index 6a884456..d1d9b4fb 100644 --- a/assets/lang/language.ur.json +++ b/assets/lang/language.ur.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "en/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "تمام ریسپیز", "loading": "لوڈنگ", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "1783500F90B356EE6CEF85AC2B46380A" + "randomPortal": "Random Portal", + "hashCode": "85CD762ACC24BF2DFEF32E267A73168A" } \ No newline at end of file diff --git a/assets/lang/language.vi-vn.json b/assets/lang/language.vi-vn.json index dc4ff572..14d3c19a 100644 --- a/assets/lang/language.vi-vn.json +++ b/assets/lang/language.vi-vn.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "en/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "en/GuildMissions.lang", - "creatureHarvestJson": "en/CreatureHarvest.lang", "seasonalExpeditionJson": "vi-VN/SeasonalExpedition.lang", + "creatureHarvestJson": "en/CreatureHarvest.lang", "journeyMilestoneJson": "en/Milestones.lang", "title": "Tất cả công thức", "loading": "Đang tải", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "A2DF0E723645CCA7051215A3F026CD44" + "randomPortal": "Random Portal", + "hashCode": "11D055FE09B86D0EE56984D3ED958B3F" } \ No newline at end of file diff --git a/assets/lang/language.zh-hans.json b/assets/lang/language.zh-hans.json index 486dfa98..30334981 100644 --- a/assets/lang/language.zh-hans.json +++ b/assets/lang/language.zh-hans.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "zh-hans/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "zh-hans/GuildMissions.lang", - "creatureHarvestJson": "zh-hans/CreatureHarvest.lang", "seasonalExpeditionJson": "zh-hans/SeasonalExpedition.lang", + "creatureHarvestJson": "zh-hans/CreatureHarvest.lang", "journeyMilestoneJson": "zh-hans/Milestones.lang", "title": "无人深空助手", "loading": "加载中", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "6658FC0176023C18A799E88A99761452" + "randomPortal": "Random Portal", + "hashCode": "A5E92A9349A89122CB0423A7B25DF762" } \ No newline at end of file diff --git a/assets/lang/language.zh-hant.json b/assets/lang/language.zh-hant.json index 397c0a37..f7fd1937 100644 --- a/assets/lang/language.zh-hant.json +++ b/assets/lang/language.zh-hant.json @@ -24,8 +24,8 @@ "weekendMissionSeason3Json": "zh-hant/WeekendMissionsSeason3.lang", "factionJson": "en/Factions.lang", "guildMissionJson": "zh-hant/GuildMissions.lang", - "creatureHarvestJson": "zh-hant/CreatureHarvest.lang", "seasonalExpeditionJson": "zh-hant/SeasonalExpedition.lang", + "creatureHarvestJson": "zh-hant/CreatureHarvest.lang", "journeyMilestoneJson": "zh-hant/Milestones.lang", "title": "所有材料", "loading": "載入中", @@ -466,5 +466,6 @@ "nomNomCollaboration": "NomNom collaboration", "nomNomCollaborationDesc": "Sync your in game inventory with the app through the NomNom save editor!\nOnly available for PC", "portalCodeCopied": "Portal code copied!", - "hashCode": "0D190C3B344C897C3AFD4B594A464C38" + "randomPortal": "Random Portal", + "hashCode": "F476ECE6513FCFD1F1113128044CDE99" } \ No newline at end of file diff --git a/lib/constants/AppAvailableLanguages.dart b/lib/constants/AppAvailableLanguages.dart index 47cdf441..ad4da7a9 100644 --- a/lib/constants/AppAvailableLanguages.dart +++ b/lib/constants/AppAvailableLanguages.dart @@ -3,11 +3,11 @@ import 'package:assistantapps_flutter_common/assistantapps_flutter_common.dart'; List supportedLanguageMaps = [ LocalizationMap(LocaleKey.english, 'en', 'gb', percentageComplete: 100), - LocalizationMap(LocaleKey.dutch, 'nl', 'nl', percentageComplete: 68), + LocalizationMap(LocaleKey.dutch, 'nl', 'nl', percentageComplete: 67), LocalizationMap(LocaleKey.german, 'de', 'de', percentageComplete: 99), - LocalizationMap(LocaleKey.french, 'fr', 'fr', percentageComplete: 99), + LocalizationMap(LocaleKey.french, 'fr', 'fr', percentageComplete: 98), LocalizationMap(LocaleKey.italian, 'it', 'it', percentageComplete: 99), - LocalizationMap(LocaleKey.russian, 'ru', 'ru', percentageComplete: 99), + LocalizationMap(LocaleKey.russian, 'ru', 'ru', percentageComplete: 98), LocalizationMap(LocaleKey.polish, 'pl', 'pl', percentageComplete: 97), LocalizationMap(LocaleKey.brazilianPortuguese, 'pt-br', 'br', percentageComplete: 99), LocalizationMap(LocaleKey.portuguese, 'pt', 'pt', percentageComplete: 24), @@ -23,8 +23,8 @@ List supportedLanguageMaps = [ LocalizationMap(LocaleKey.vietnamese, 'vi-vn', 'vn', percentageComplete: 89), LocalizationMap(LocaleKey.urdu, 'ur', 'pk', percentageComplete: 7), LocalizationMap(LocaleKey.filipino, 'ph', 'ph', percentageComplete: 0), - LocalizationMap(LocaleKey.indonesian, 'id', 'id', percentageComplete: 88), - LocalizationMap(LocaleKey.malaysian, 'ms', 'my', percentageComplete: 88), + LocalizationMap(LocaleKey.indonesian, 'id', 'id', percentageComplete: 87), + LocalizationMap(LocaleKey.malaysian, 'ms', 'my', percentageComplete: 87), LocalizationMap(LocaleKey.tagalog, 'tl', 'ph', percentageComplete: 0), LocalizationMap(LocaleKey.japanese, 'ja', 'jp', percentageComplete: 6), LocalizationMap(LocaleKey.afrikaans, 'af', 'za', percentageComplete: 29), diff --git a/lib/contracts/misc/customMenu.dart b/lib/contracts/misc/customMenu.dart index 5c23c505..9b22f6bd 100644 --- a/lib/contracts/misc/customMenu.dart +++ b/lib/contracts/misc/customMenu.dart @@ -106,12 +106,6 @@ List getMenuOptionsSection2( drawerIcon: localGetDrawerFromIcon(Icons.star), title: LocaleKey.favourites, navigateToNamed: Routes.favourites, - onLongPress: (longCtx) { - getNavigation().navigateAwayFromHomeAsync( - context, - navigateToNamed: Routes.randomPortal, - ); - }, ), CustomMenu( icon: getListTileImage(AppImage.catalogue, size: imageSize), @@ -145,7 +139,10 @@ List getMenuOptionsSection2( } List getMenuOptionsSection3( - BuildContext context, DrawerSettingsViewModel vm, Color drawerIconColour) { + BuildContext context, + DrawerSettingsViewModel vm, + Color drawerIconColour, +) { // Widget localGetFromIcon(IconData icon) => getCorrectlySizedImageFromIcon(context, icon, @@ -178,6 +175,36 @@ List getMenuOptionsSection3( title: LocaleKey.portalLibrary, navigateToNamed: Routes.portals, ), + CustomMenu( + icon: SizedBox( + width: imageSize, + height: imageSize, + child: Stack( + fit: StackFit.expand, + children: [ + Positioned( + child: getListTileImage(AppImage.portal, size: imageSize * 0.66), + left: 0, + bottom: 0, + ), + Positioned( + child: getCorrectlySizedImageFromIcon( + context, + Icons.casino_outlined, + colour: getTheme().getSecondaryColour(context), + maxSize: imageSize * 0.66, + ), + top: 0, + right: 0, + ), + ], + ), + ), + drawerIcon: getListTileImage(AppImage.portal), + title: LocaleKey.randomPortal, + navigateToNamed: Routes.randomPortal, + hideInDrawer: true, + ), CustomMenu( icon: getListTileImage(AppImage.inventory, size: imageSize), drawerIcon: getListTileImage(AppImage.inventory), diff --git a/lib/pages/portal/addPortalPage.dart b/lib/pages/portal/addPortalPage.dart index 3b744b38..e78dcc95 100644 --- a/lib/pages/portal/addPortalPage.dart +++ b/lib/pages/portal/addPortalPage.dart @@ -1,6 +1,7 @@ // ignore_for_file: no_logic_in_create_state import 'package:assistantapps_flutter_common/assistantapps_flutter_common.dart'; +import 'package:assistantnms_app/constants/Routes.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_redux/flutter_redux.dart'; @@ -52,7 +53,7 @@ class _PortalPageState extends State { if (item.codes.length >= 12) return; setState(() { item.codes.add(code); - var tempHexStr = allUpperCase(intArrayToHex(item.codes)); + String tempHexStr = allUpperCase(intArrayToHex(item.codes)); _setHexCoordText(tempHexStr); if (item.codes.isNotEmpty) disableEditBtns = false; }); @@ -84,7 +85,7 @@ class _PortalPageState extends State { item = item.copyWith( codes: item.codes.sublist(0, item.codes.length - 1), ); - var tempHexStr = allUpperCase(intArrayToHex(item.codes)); + String tempHexStr = allUpperCase(intArrayToHex(item.codes)); _setHexCoordText(tempHexStr); if (item.codes.isEmpty) disableEditBtns = true; }); @@ -96,7 +97,7 @@ class _PortalPageState extends State { item = item.copyWith( codes: [], ); - var tempHexStr = allUpperCase(intArrayToHex(item.codes)); + String tempHexStr = allUpperCase(intArrayToHex(item.codes)); _setHexCoordText(tempHexStr); disableEditBtns = true; }); @@ -128,12 +129,12 @@ class _PortalPageState extends State { ), ], body: getBody(context, viewModel), - fab: getFab(), + fab: getFab(context), ), ); } - Widget getFab() { + Widget getFab(BuildContext fabCtx) { if (item.codes.length != 12) return null; String name = (item.name == null) ? getTranslations().fromKey(LocaleKey.newPortalEntry) @@ -149,7 +150,7 @@ class _PortalPageState extends State { .map((cc) => cc as String) .toList(); //So that it isn't passed by reference getNavigation().pop( - context, + fabCtx, PortalRecord( name: name, uuid: item.uuid, @@ -160,15 +161,15 @@ class _PortalPageState extends State { }, heroTag: 'AddPortalPage', child: const Icon(Icons.check), - foregroundColor: getTheme().fabForegroundColourSelector(context), - backgroundColor: getTheme().fabColourSelector(context), + foregroundColor: getTheme().fabForegroundColourSelector(fabCtx), + backgroundColor: getTheme().fabColourSelector(fabCtx), ); } - Widget getBody(BuildContext context, PortalViewModel portalViewModel) { + Widget getBody(BuildContext bodyCtx, PortalViewModel portalViewModel) { List widgets = List.empty(growable: true); - String colour = getTheme().getIsDark(context) ? 'white' : 'black'; + String colour = getTheme().getIsDark(bodyCtx) ? 'white' : 'black'; if (portalViewModel.useAltGlyphs) colour = 'alt'; widgets.add(Container( @@ -264,7 +265,7 @@ class _PortalPageState extends State { ), Flexible( child: portalInput( - context, + bodyCtx, colour: colour, addCode: _addCode, ), @@ -276,22 +277,22 @@ class _PortalPageState extends State { List tags = List.empty(growable: true); for (var item in this.item.tags) { - tags.add(genericChip(context, item, onTap: () async { - _removeTag(context, item); + tags.add(genericChip(bodyCtx, item, onTap: () async { + _removeTag(bodyCtx, item); })); } tags.add( genericChip( - context, + bodyCtx, '+' + getTranslations().fromKey(LocaleKey.addTag), onTap: () async { var availableTags = portalViewModel.availableTags .where((at) => !item.tags.contains(at)) .toList(); String temp = await getNavigation().navigateAsync( - context, - navigateTo: (context) => OptionsListPageDialog( + bodyCtx, + navigateTo: (_) => OptionsListPageDialog( 'Tags', availableTags.map((g) => DropdownOption(g.toString())).toList(), addOption: (DropdownOption option) { @@ -303,7 +304,7 @@ class _PortalPageState extends State { ), ); if (temp == null || temp.isEmpty) return; - _addTag(context, temp); + _addTag(bodyCtx, temp); }, ), ); @@ -318,7 +319,7 @@ class _PortalPageState extends State { return listWithScrollbar( itemCount: widgets.length, - itemBuilder: (context, index) => widgets[index], + itemBuilder: (_, index) => widgets[index], scrollController: ScrollController(), ); } diff --git a/lib/pages/portal/portal_random_page.dart b/lib/pages/portal/portal_random_page.dart index 594846d9..3b4cfc84 100644 --- a/lib/pages/portal/portal_random_page.dart +++ b/lib/pages/portal/portal_random_page.dart @@ -118,7 +118,7 @@ class _RandomPortalPageState extends State { converter: (store) => PortalViewModel.fromStore(store), builder: (_, viewModel) => basicGenericPageScaffold( context, - title: getTranslations().fromKey(LocaleKey.savedPortalCoordinates), + title: getTranslations().fromKey(LocaleKey.randomPortal), actions: [ ActionItem( icon: Icons.screen_rotation_alt_rounded, diff --git a/lib/pages/portal/portalsPage.dart b/lib/pages/portal/portalsPage.dart index 9ae822ad..79113a0a 100644 --- a/lib/pages/portal/portalsPage.dart +++ b/lib/pages/portal/portalsPage.dart @@ -43,32 +43,37 @@ class _PortalsPageState extends State { ) ], body: getBody(context, portalViewModel), - fab: FloatingActionButton( - onPressed: () async { - PortalRecord temp = - await getNavigation().navigateAsync( - context, - navigateTo: (context) => AddPortalPage( - PortalRecord( - codes: List.empty(growable: true), - tags: List.empty(growable: true)), - ), - ); - if (temp == null || temp is! PortalRecord) return; - portalViewModel.addPortal(temp.name, temp.codes, temp.tags); - setState(() { - _counter++; - }); - }, - heroTag: 'PortalsPage', - child: const Icon(Icons.add), - foregroundColor: getTheme().fabForegroundColourSelector(context), - backgroundColor: getTheme().fabColourSelector(context), - ), + fab: getFab(context, portalViewModel), ), ); } + Widget getFab(BuildContext fabCtx, PortalViewModel portalViewModel) { + Color foregroundColor = getTheme().fabForegroundColourSelector(fabCtx); + Color backgroundColor = getTheme().fabColourSelector(fabCtx); + return FloatingActionButton( + onPressed: () async { + PortalRecord currentRecord = PortalRecord( + codes: List.empty(growable: true), + tags: List.empty(growable: true), + ); + PortalRecord temp = await getNavigation().navigateAsync( + context, + navigateTo: (context) => AddPortalPage(currentRecord), + ); + if (temp == null || temp is! PortalRecord) return; + portalViewModel.addPortal(temp.name, temp.codes, temp.tags); + setState(() { + _counter++; + }); + }, + heroTag: 'PortalsPage', + child: const Icon(Icons.add), + foregroundColor: foregroundColor, + backgroundColor: backgroundColor, + ); + } + Widget getBody(BuildContext context, PortalViewModel portalViewModel) { return SearchableList( getSearchListFutureFromList(portalViewModel.portals), diff --git a/pubspec.lock b/pubspec.lock index 11e0eb19..68131e0a 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -102,10 +102,10 @@ packages: description: path: "." ref: HEAD - resolved-ref: "1b3e38b5c1b568a9cc094b71dba65f5788271713" + resolved-ref: c08b30bd4f9f5f38fc0de56d79f2d32f13c730ff url: "https://github.com/AssistantApps/Flutter.Common.git" source: git - version: "0.2.7" + version: "0.2.9" async: dependency: transitive description: From 1e41468aa7deb83f4fdf71605f0e3bf9f6b6a8f9 Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Thu, 24 Nov 2022 15:27:46 +0100 Subject: [PATCH 07/11] =?UTF-8?q?=F0=9F=93=9D=20Update=20metadata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/data/meta.json | 4 ++-- release_notes.txt | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/assets/data/meta.json b/assets/data/meta.json index 9b3da3d9..a8b0a811 100644 --- a/assets/data/meta.json +++ b/assets/data/meta.json @@ -1,5 +1,5 @@ { - "GameVersion": "4.6", + "GameVersion": "4.06", "GameBuildNumber": 9964564, - "GeneratedDate": "2022-11-22" + "GeneratedDate": "2022-11-24" } \ No newline at end of file diff --git a/release_notes.txt b/release_notes.txt index 5910642d..e850a740 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -1,8 +1,7 @@ -- ✨ Add NomNom Integration (Github issue #95) -- 🐛 Fix the "What is New" page not showing older releases in some situations (Github issue #127) -- 🩹 Fix Community Search integration -- ⬆️ Update packages & dependencies +- ✨ Random portal page (Github issue #139) +- 🐛 Fix images in descriptions for Survey Device (Github issue #141) +- 💄 Tweak Community Mission UI -Submitted to App Stores 2022-11-09 +Submitted to App Stores 2022-11-24 For more details on this update please visit the "What is New" page in the Apps or on the website \ No newline at end of file From c2a2f11526a6e9a9a76bbbf63a2fb80f5f620ae0 Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Thu, 24 Nov 2022 16:32:55 +0100 Subject: [PATCH 08/11] =?UTF-8?q?=E2=9C=A8=20Add=20Expedition=205=20Redux?= =?UTF-8?q?=20data=20|=20Closes=20#142?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/data/unusedMilestonePatches.json | 1 + assets/json/de/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ .../json/es-la/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/es/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/fr/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/it/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/ja/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/ko/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/nl/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/pl/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ .../json/pt-br/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/pt/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ assets/json/ru/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ .../json/zh-hans/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ .../json/zh-hant/SeasonalExpedition.lang.json | 1688 +++++++++++++++++ release_notes.txt | 1 + 16 files changed, 23634 insertions(+) diff --git a/assets/data/unusedMilestonePatches.json b/assets/data/unusedMilestonePatches.json index df61b721..b6895011 100644 --- a/assets/data/unusedMilestonePatches.json +++ b/assets/data/unusedMilestonePatches.json @@ -10,6 +10,7 @@ "milestonePatches/PATCH.BUILDINGINDUSTRIAL.png", "milestonePatches/PATCH.COLLECT.png", "milestonePatches/PATCH.COOK.1.png", + "milestonePatches/PATCH.CREATUREMILK.png", "milestonePatches/PATCH.CREATUREPLANET.1.png", "milestonePatches/PATCH.CREATURESPHOTO.png", "milestonePatches/PATCH.DISCOVERPLANET.1.png", diff --git a/assets/json/de/SeasonalExpedition.lang.json b/assets/json/de/SeasonalExpedition.lang.json index f2e7dcbe..a4367b4b 100644 --- a/assets/json/de/SeasonalExpedition.lang.json +++ b/assets/json/de/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Expedition Fünf: Exobiologie", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Phase 1", + "Description": "Aktueller Fortschritt: 0/8", + "DescriptionDone": "Phase 1 abgeschlossen", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Pfotenabdrücke", + "Description": "Reite einen Begleiter: 0u/850u.", + "DescriptionDone": "850u geritten", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "Der Metallesel", + "Description": "Lokalisiere dein Raumschiff", + "DescriptionDone": "Du hast dein Raumschiff erreicht", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Porträt des besten Freundes", + "Description": "Mache ein Foto von deinem Begleiter", + "DescriptionDone": "Deinen Begleiter fotografiert", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Abheben", + "Description": "Verlasse den Planeten", + "DescriptionDone": "Planet verlassen", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Zu helleren Sternen", + "Description": "Verlasse dieses leblose System", + "DescriptionDone": "Lichtgeschwindigkeit erreicht", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Heimatwelt", + "Description": "Besuche eine üppige Welt", + "DescriptionDone": "Einen üppigen Planeten besucht", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "Die nächste Generation", + "Description": "Fördere das Legen eines Begleiter-Eies", + "DescriptionDone": "Neues Leben geschenkt", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Treffen 1", + "Description": "Erreiche das erste Treffen", + "DescriptionDone": "Erstes Treffen erreicht", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Phase 2", + "Description": "Aktueller Fortschritt: 0/7", + "DescriptionDone": "Phase 2 abgeschlossen", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Treffen 2", + "Description": "Erreiche das zweite Treffen", + "DescriptionDone": "Zweites Treffen erreicht", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Dauerhafte Freundschaft", + "Description": "Habe das volle Vertrauen e. Begleiters", + "DescriptionDone": "Das volle Vertrauen eines Begleiters gewonnen", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Käferkunde", + "Description": "Zähme einen Käfer-Begleiter", + "DescriptionDone": "Einen Käfer-Begleiter gezähmt", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Verrückte Wissenschaft", + "Description": "Modifziere ein Begleiter-Ei genetisch", + "DescriptionDone": "Resequenzierter genetischer Code", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Eine ganze Schar", + "Description": "Füttere eine Gruppe von 8 Kreaturen", + "DescriptionDone": "Eine große Gruppe von Lebewesen gefüttert", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Vogelkunde", + "Description": "Entdecke 4 fliegende Kreaturen", + "DescriptionDone": "Entdeckte fliegende Kreaturen", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Schnappschüsse am Boden", + "Description": "Mache ein Foto von 10 am Boden lebenden Kreaturen", + "DescriptionDone": "Eine Gruppe von Kreaturen fotografiert", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Phase 3", + "Description": "Aktueller Fortschritt: 0/5", + "DescriptionDone": "Phase 3 abgeschlossen", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Treffen 3", + "Description": "Erreiche das dritte Treffen", + "DescriptionDone": "Drittes Treffen erreicht", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Ungelegte Eier", + "Description": "Sammle 3 Sorten Eier", + "DescriptionDone": "Eine Auswahl verschiedener Eier gesammelt", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Sightseeing-Tourist", + "Description": "Erkunde spezifische Umgebungen: 0/1", + "DescriptionDone": "5 Arten von Planeten erkundet", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Naschkatze", + "Description": "Backe einen Kuchen", + "DescriptionDone": "Einen Kuchen gebacken", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Ein anspruchsvoller Gaumen", + "Description": "Beeindrucke Kronos", + "DescriptionDone": "Den Respekt von Kronos verdient", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Phase 4", + "Description": "Aktueller Fortschritt: 0/7", + "DescriptionDone": "Phase 4 abgeschlossen", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Treffen 4", + "Description": "Erreiche den vierten Treffpunkt", + "DescriptionDone": "Vierten Treffpunkt erreicht", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Verdauungsanalyse", + "Description": "Suche Dungproben: 0/20", + "DescriptionDone": "20 Dungproben gesucht", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Begleitung", + "Description": "Adoptiere Begleiter: 0/3", + "DescriptionDone": "3 Begleiter adoptiert", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Augen im Schilf", + "Description": "Entdecke Kreaturen in einer Sumpfwelt", + "DescriptionDone": "Lebewesen auf einem Sumpfplaneten entdeckt", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Meeresbiologie", + "Description": "Entdecke 4 Wasserlebewesen", + "DescriptionDone": "Entdeckte Wasserlebewesen", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Was da unten lauert", + "Description": "Entkomme einem Tiefseemonster", + "DescriptionDone": "Die Begegnung mit einem Tiefseemonster überlebt", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Wertvolle Daten", + "Description": "Verdiene 200000 Units für die Entdeckung einer Kreatur", + "DescriptionDone": "Entdeckte Kreaturendaten im Wert von %AMOUNT% Units", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Phase 5", + "Description": "Aktueller Fortschritt: 0/7", + "DescriptionDone": "Phase 5 abgeschlossen", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Treffen 5", + "Description": "Erreiche den letzten Treffpunkt", + "DescriptionDone": "Letzten Treffpunkt erreicht", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Ein randvolles Universum", + "Description": "Besuche eine von %NUM% Arten bewohnte Welt", + "DescriptionDone": "Einen Planeten mit üppiger Fauna besucht", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Spannweite", + "Description": "Fliege mit einem Begleiter: 0u/2000u", + "DescriptionDone": "2000u auf einem Begleiter geflogen", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiologie", + "Description": "Entdecke 1 exotische Kreaturen", + "DescriptionDone": "Entdeckte bizarre Lebensformen", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Berühmter Entdecker", + "Description": "Verbessere dein Ansehen bei der Entdeckergilde: 0/5", + "DescriptionDone": "Respektiert in der Entdeckergilde", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Vorfahren", + "Description": "Grabe uralte Knochen aus: 0/10", + "DescriptionDone": "10 Fossilien gesammelt", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Erkennbares Leben", + "Description": "Begegne einem Weltraumwesen", + "DescriptionDone": "Mit einem gasförmigen Wesen kommuniziert", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/es-la/SeasonalExpedition.lang.json b/assets/json/es-la/SeasonalExpedition.lang.json index 6f580ae6..8de8d934 100644 --- a/assets/json/es-la/SeasonalExpedition.lang.json +++ b/assets/json/es-la/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Expedición cinco: Exobiología", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Fase 1", + "Description": "Progreso actual: 0/8", + "DescriptionDone": "Fase 1 completada", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Huellas de patas", + "Description": "Monta una mascota: 0u/850u", + "DescriptionDone": "Montaste 850u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "La montura metálica", + "Description": "Localiza tu nave", + "DescriptionDone": "Llegaste a tu nave", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Retrato de mi mejor amigo", + "Description": "Tómale una foto a tu compañero", + "DescriptionDone": "Le tomaste una foto a tu compañero", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Despegar", + "Description": "Deja el planeta", + "DescriptionDone": "Dejaste el planeta", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Rumbo a estrellas más brillantes", + "Description": "Vete de este sistema sin vida", + "DescriptionDone": "Fuiste a la velocidad luz", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Planeta natal", + "Description": "Visita un mundo exuberante", + "DescriptionDone": "Visitaste un planeta exuberante", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "La próxima generación", + "Description": "Incuba el huevo de una mascota compañera", + "DescriptionDone": "Una nueva vida vio la luz", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Punto de encuentro 1", + "Description": "Llega al primer punto de encuentro", + "DescriptionDone": "Llegaste al primer punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Fase 2", + "Description": "Progreso actual: 0/7", + "DescriptionDone": "Fase 2 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Punto de encuentro 2", + "Description": "Llega al segundo punto de encuentro", + "DescriptionDone": "Llegaste al segundo punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Amistad duradera", + "Description": "Gánate la confianza absoluta de un compañero", + "DescriptionDone": "Te ganaste la confianza absoluta de un compañero", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Coleopterología", + "Description": "Adopta un escarabajo como compañero", + "DescriptionDone": "Adoptaste un escarabajo como compañero", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Ciencia loca", + "Description": "Modifica genéticamente el huevo de un compañero", + "DescriptionDone": "Reescribe un código genético", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Enjambre hambriento", + "Description": "Alimenta a un grupo de 8 criaturas", + "DescriptionDone": "Alimentaste a un grupo numeroso de criaturas.", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornitología", + "Description": "Descubre 4 criaturas voladoras", + "DescriptionDone": "Descubriste criaturas voladoras", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Fotografías en tierra firme", + "Description": "Toma una foto de 10 criaturas terrestres", + "DescriptionDone": "Tomaste una foto de un grupo de criaturas", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Fase 3", + "Description": "Progreso actual: 0/5", + "DescriptionDone": "Fase 3 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Punto de encuentro 3", + "Description": "Llega al tercer punto de encuentro", + "DescriptionDone": "Llegaste al tercer punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Los planos mejor diseñados", + "Description": "Recolecta 3 tipos de huevos", + "DescriptionDone": "Recolectaste una amplia variedad de huevos", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Excursionista", + "Description": "Explora entornos específicos: 0/1", + "DescriptionDone": "Exploraste 5 tipos de planeta", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Me encantan los postres", + "Description": "Hornea un pastel", + "DescriptionDone": "Horneaste un pastel", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Un paladar exigente", + "Description": "Impresiona a Cronos", + "DescriptionDone": "Te ganaste el respeto de Cronos", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Fase 4", + "Description": "Progreso actual: 0/7", + "DescriptionDone": "Fase 4 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Punto de encuentro 4", + "Description": "Llega al cuarto punto de encuentro", + "DescriptionDone": "Cuarto punto de encuentro alcanzado", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Análisis Digestivo", + "Description": "Busca muestras de estiércol: 0/20", + "DescriptionDone": "Busca 20 muestras de estiércol", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Compañía", + "Description": "Adopta compañeros: 0/3", + "DescriptionDone": "Adoptaste a 3 compañeros", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Ojos entre la hierba", + "Description": "Descubre criaturas en un mundo pantanoso", + "DescriptionDone": "Descubriste criaturas en un mundo pantanoso", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Biología marina", + "Description": "Descubre 4 criaturas acuáticas", + "DescriptionDone": "Descubriste vida acuática", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Lo que acecha en las profundidades", + "Description": "Sobrevive a las garras de un horror abisal", + "DescriptionDone": "Sobreviviste a un encuentro con un horror abisal", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Datos valiosos", + "Description": "Gana 200000 unidades por descubrir a una criatura", + "DescriptionDone": "Descubriste datos de una criatura con un valor de %AMOUNT% unidades", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Fase 5", + "Description": "Progreso actual: 0/7", + "DescriptionDone": "Fase 5 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Punto de encuentro 5", + "Description": "Llega al último encuentro", + "DescriptionDone": "Llegaste al último punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Un mundo lleno de vida", + "Description": "Visita un mundo habitado por %NUM% especies", + "DescriptionDone": "Visitaste un planeta donde abunda la fauna.", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Envergadura", + "Description": "Vuela con una criatura compañera: 0u/2000u", + "DescriptionDone": "Volaste 2000u con una criatura compañera", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiología", + "Description": "Descubre 1 criaturas exóticas", + "DescriptionDone": "Descubriste formas de vida extrañas", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Explorador famoso", + "Description": "Consigue una buena reputación con el gremio de exploradores: 0/5", + "DescriptionDone": "Con reputación en el gremio de exploradores", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Ancestros", + "Description": "Excava huesos antiguos: 0/10", + "DescriptionDone": "10 fósiles recolectados", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Forma de vida reconocible", + "Description": "Tópate con una conciencia del espacio sideral", + "DescriptionDone": "Entraste en comunión con una conciencia de gas", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/es/SeasonalExpedition.lang.json b/assets/json/es/SeasonalExpedition.lang.json index 71fe2cbd..56788ac1 100644 --- a/assets/json/es/SeasonalExpedition.lang.json +++ b/assets/json/es/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Expedición Cinco: Exobiología", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Fase 1", + "Description": "Progreso actual: 0/8", + "DescriptionDone": "Fase 1 completada", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Huellas", + "Description": "Monta en un compañero: 0 u/850 u", + "DescriptionDone": "Has montado en 850 u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "La Montura Metálica", + "Description": "Localiza tu nave", + "DescriptionDone": "Has llegado a tu nave", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Retrato de mejor amigo", + "Description": "Haz una foto de tu compañero", + "DescriptionDone": "Has fotografiado a tu compañero", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Despegar", + "Description": "Deja el planeta", + "DescriptionDone": "Has dejado el planeta", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "A estrellas más brillantes", + "Description": "Deja este sistema sin vida", + "DescriptionDone": "Viajaste a la velocidad de la luz", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Mundo natal", + "Description": "Visita un mundo exuberante", + "DescriptionDone": "Has visitado un mundo exuberante", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "La próxima generación", + "Description": "Induce un huevo de compañero", + "DescriptionDone": "Has entregado una nueva vida", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Punto de encuentro 1", + "Description": "Llega al primer punto de encuentro", + "DescriptionDone": "Has llegado al primer punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Fase 2", + "Description": "Progreso actual: 0/7", + "DescriptionDone": "Fase 2 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Punto de encuentro 2", + "Description": "Llega al segundo punto de encuentro", + "DescriptionDone": "Has llegado al segundo punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Amistad duradera", + "Description": "Gánate la confianza total de un compañero", + "DescriptionDone": "Te has ganado la plena confianza de un compañero", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Coleopterología", + "Description": "Adopta un compañero escarabajo", + "DescriptionDone": "Has adoptado un compañero escarabajo", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Ciencia loca", + "Description": "Modifica genéticamente un huevo de compañero", + "DescriptionDone": "Código genético resecuenciado", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Enjambre", + "Description": "Alimenta a un grupo de 8 criaturas", + "DescriptionDone": "Has alimentado a un gran grupo de criaturas", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornitología", + "Description": "Descubre 4 criaturas voladoras", + "DescriptionDone": "Has descubierto criaturas voladoras", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Fotos terrestres", + "Description": "Saca una foto de 10 criaturas terrestres", + "DescriptionDone": "Has fotografiado un grupo de criaturas", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Fase 3", + "Description": "Progreso actual: 0/5", + "DescriptionDone": "Fase 3 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Punto de encuentro 3", + "Description": "Llega al tercer punto de encuentro", + "DescriptionDone": "Has llegado al tercer punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Los mejores planes", + "Description": "Reúne 3 tipos de huevos.", + "DescriptionDone": "Has reunido una variedad de huevos.", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Excursionista", + "Description": "Explora entornos específicos: 0/1", + "DescriptionDone": "Has explorado 5 tipos de planetas", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Goloso", + "Description": "Hornea un pastel", + "DescriptionDone": "Has horneado un pastel", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Un paladar exigente", + "Description": "Impresiona a Cronos", + "DescriptionDone": "Te has ganado el respeto de Cronos.", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Fase 4", + "Description": "Progreso actual: 0/7", + "DescriptionDone": "Fase 4 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Punto de encuentro 4", + "Description": "Llega al cuarto punto de encuentro", + "DescriptionDone": "Has llegado al cuarto punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Análisis Digestivo", + "Description": "Busca muestras de estiércol: 0/20", + "DescriptionDone": "Has encontrado 20 muestras de estiércol", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Compañía", + "Description": "Adopta compañeros: 0/3", + "DescriptionDone": "Has adoptado 3 compañeros", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Ojos entre los juncos", + "Description": "Descubre criaturas en un mundo pantanoso.", + "DescriptionDone": "Has descubierto criaturas en un planeta pantanoso", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Biología Marina", + "Description": "Descubre 4 criaturas acuáticas", + "DescriptionDone": "Has descubierto vida acuática", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Lo que acecha abajo", + "Description": "Sobrevive a las garras de un horror de las profundidades marinas", + "DescriptionDone": "Has sobrevivido a un encuentro con un horror abisal", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Datos valiosos", + "Description": "Gana 200000 unidades por descubrir una criatura", + "DescriptionDone": "Los datos de la criatura descubierta tienen un valor de %AMOUNT% unidades", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Fase 5", + "Description": "Progreso actual: 0/7", + "DescriptionDone": "Fase 5 completada", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Punto de encuentro 5", + "Description": "Llega al último punto de encuentro", + "DescriptionDone": "Has llegado al último punto de encuentro", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Un universo abarrotado", + "Description": "Visita un mundo habitado por %NUM% especies", + "DescriptionDone": "Has visitado un planeta repleto de fauna.", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Envergadura", + "Description": "Vuela en un compañero: 0 u/2000 u", + "DescriptionDone": "Has volado 2000 u en un compañero", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiología", + "Description": "Descubre 1 criaturas exóticas", + "DescriptionDone": "Has descubierto formas de vida extrañas", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Explorador famoso", + "Description": "Consigue una buena reputación con el gremio de exploradores: 0/5", + "DescriptionDone": "Con reputación en el gremio de exploradores", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Ancestros", + "Description": "Excava huesos antiguos: 0/10", + "DescriptionDone": "Has recogido 10 fósiles", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Vida reconocible", + "Description": "Conoce a una conciencia del espacio profundo", + "DescriptionDone": "Has comulgado con una conciencia de gas", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/fr/SeasonalExpedition.lang.json b/assets/json/fr/SeasonalExpedition.lang.json index 80ab474f..84da166d 100644 --- a/assets/json/fr/SeasonalExpedition.lang.json +++ b/assets/json/fr/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Expédition cinq : Exobiologie", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Phase 1", + "Description": "Progression : 0/8", + "DescriptionDone": "Phase 1 terminée", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Empreintes de pattes", + "Description": "Monter un compagnon : 0 u/850 u", + "DescriptionDone": "Distance parcourue : 850 u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "La Monture de métal", + "Description": "Localiser votre vaisseau", + "DescriptionDone": "Vaisseau atteint", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Photo avec mon meilleur ami", + "Description": "Prendre une photo de votre compagnon", + "DescriptionDone": "Compagnon photographié", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Décoller", + "Description": "Quitter la planète", + "DescriptionDone": "A quitté la planète", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Vers des étoiles plus brillantes", + "Description": "Quitter ce système sans vie", + "DescriptionDone": "A atteint la vitesse lumière", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Planète d'origine", + "Description": "Visiter une planète luxuriante", + "DescriptionDone": "Planète luxuriante visitée", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "La prochaine génération", + "Description": "Déclencher la ponte d'un compagnon", + "DescriptionDone": "A assisté à une nouvelle naissance", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Rendez-vous 1", + "Description": "Atteindre le 1er rendez-vous", + "DescriptionDone": "1er rendez-vous atteint", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Phase 2", + "Description": "Progression : 0/7", + "DescriptionDone": "Phase 2 terminée", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Rendez-vous 2", + "Description": "Atteindre le 2e rendez-vous", + "DescriptionDone": "2e rendez-vous atteint", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Amitié durable", + "Description": "Gagner la confiance totale d'un compagnon", + "DescriptionDone": "Pleine confiance d'un compagnon gagnée", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Coléoptérologie", + "Description": "Adopter un scarabée", + "DescriptionDone": "Scarabée adopté", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Folies scientifiques", + "Description": "Modifier génétiquement un œuf de compagnon", + "DescriptionDone": "Code génétique re-séquencé", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Essaim", + "Description": "Nourrir un groupe de 8 créatures", + "DescriptionDone": "Grand groupe de créatures nourri", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornithologie", + "Description": "Découvrir 4 créatures volantes", + "DescriptionDone": "Créatures aériennes découvertes", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Clichés terrestres", + "Description": "Photographier 10 créatures terrestres", + "DescriptionDone": "Groupe de créatures photographié", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Phase 3", + "Description": "Progression : 0/5", + "DescriptionDone": "Phase 3 terminée", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Rendez-vous 3", + "Description": "Atteindre le 3e rendez-vous", + "DescriptionDone": "3e rendez-vous atteint", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "On ne fait pas d'omelette...", + "Description": "Récolter 3 sortes d'œufs", + "DescriptionDone": "Assortiment d'œufs récolté", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Touriste", + "Description": "Explorer des environnements spécifiques : 0/1", + "DescriptionDone": "A visité 5 types de planètes", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "L'heure du goûter", + "Description": "Faire un gâteau", + "DescriptionDone": "Gâteau préparé", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Un palais exigeant", + "Description": "Impressionner Cronos", + "DescriptionDone": "Respect de Cronos gagné", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Phase 4", + "Description": "Progression : 0/7", + "DescriptionDone": "Phase 4 terminée", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Rendez-vous 4", + "Description": "Atteindre le quatrième point de rendez-vous", + "DescriptionDone": "Quatrième point de rendez-vous atteint", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Analyse de selles", + "Description": "Fouiller des échantillons de bouse : 0/20", + "DescriptionDone": "20 échantillons de bouse fouillés", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Camaraderie", + "Description": "Adopter des compagnons : 0/3", + "DescriptionDone": "A adopté 3 compagnons", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Des yeux parmi les roseaux", + "Description": "Découvrir des créatures sur un monde marécageux", + "DescriptionDone": "Créatures découvertes sur une planète marécageuse", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Biologie marine", + "Description": "Découvrir 4 créatures aquatiques", + "DescriptionDone": "Nouvelle vie aquatique découverte", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Tapie dans les profondeurs", + "Description": "Survivre aux griffes d'une horreur sous-marine", + "DescriptionDone": "A survécu à une rencontre avec une créature abyssale", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Des données précieuses", + "Description": "Obtenir 200000 unités en découvrant une créature", + "DescriptionDone": "%AMOUNT% unités gagnées en découvrant des créatures", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Phase 5", + "Description": "Progression : 0/7", + "DescriptionDone": "Phase 5 terminée", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Point de rendez-vous 5", + "Description": "Atteindre le dernier point de rendez-vous", + "DescriptionDone": "Dernier point de rendez-vous atteint", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Un univers plein de vie", + "Description": "Visiter un monde habité par %NUM% espèces", + "DescriptionDone": "Planète regorgeant de vie visitée", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "À vol d'oiseau", + "Description": "Voler avec un compagnon : 0 u/2000 u", + "DescriptionDone": "2000 u parcourues en volant avec un compagnon", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xénobiologie", + "Description": "Découvrir 1 créatures exotiques", + "DescriptionDone": "Formes de vie étranges découvertes", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Explorateur célèbre", + "Description": "Gagner l'estime de la Guilde des explorateurs : 0/5", + "DescriptionDone": "Renommé parmi la Guilde des explorateurs", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Ancêtres", + "Description": "Déterrez des os anciens : 0/10", + "DescriptionDone": "10 fossiles collectés", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Vie identifiée", + "Description": "Rencontrer une conscience de l'espace lointain", + "DescriptionDone": "Communié avec une conscience gazeuse", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/it/SeasonalExpedition.lang.json b/assets/json/it/SeasonalExpedition.lang.json index 6d96f183..01ead40f 100644 --- a/assets/json/it/SeasonalExpedition.lang.json +++ b/assets/json/it/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Spedizione 5: Esobiologia", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normale", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Fase 1", + "Description": "Progressi attuali: 0/8", + "DescriptionDone": "Fase 1 completata", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Scia di impronte", + "Description": "Cavalca un compagno: 0u/850u", + "DescriptionDone": "Ha cavalcato per 850u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "Il destriero di metallo", + "Description": "Trova la tua astronave", + "DescriptionDone": "Hai raggiunto la tua astronave", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Ritratto del migliore amico", + "Description": "Scatta una foto al tuo compagno", + "DescriptionDone": "Hai fotografato il tuo compagno", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Decollo", + "Description": "Lascia il pianeta", + "DescriptionDone": "Hai lasciato il pianeta", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Verso stelle più luminose", + "Description": "Lascia questo sistema senza vita", + "DescriptionDone": "Hai raggiunto la velocità della luce", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Pianeta natale", + "Description": "Visita un mondo lussureggiante", + "DescriptionDone": "Hai visitato un pianeta lussureggiante", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "La prossima generazione", + "Description": "Fai deporre un uovo al tuo compagno", + "DescriptionDone": "Hai fatto nascere una nuova vita", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Ritrovo 1", + "Description": "Raggiungi il 1° ritrovo", + "DescriptionDone": "Hai raggiunto il 1° ritrovo", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Fase 2", + "Description": "Progressi attuali: 0/7", + "DescriptionDone": "Fase 2 completata", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Ritrovo 2", + "Description": "Raggiungi il 2° ritrovo", + "DescriptionDone": "Hai raggiunto il 2° ritrovo", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Amicizia duratura", + "Description": "Guadagna la piena fiducia di un compagno", + "DescriptionDone": "Hai guadagnato la piena fiducia di un compagno", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Coleopterologia", + "Description": "Adotta un compagno coleottero", + "DescriptionDone": "Hai adottato un compagno coleottero", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Scienza pazza", + "Description": "Modifica geneticamente un uovo di compagno", + "DescriptionDone": "Hai ri-sequenziato un codice genetico", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Sciame", + "Description": "Dai da mangiare a un gruppo di 8 creature", + "DescriptionDone": "Hai dato da mangiare a un folto gruppo di creature", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornitologia", + "Description": "Scopri 4 creature volanti", + "DescriptionDone": "Hai scoperto creature volanti", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Scatti terrestri", + "Description": "Scatta una foto di 10 creature terrestri", + "DescriptionDone": "Hai fotografato un gruppo di creature", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Fase 3", + "Description": "Progressi attuali: 0/5", + "DescriptionDone": "Fase 3 completata", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Ritrovo 3", + "Description": "Raggiungi il 3° ritrovo", + "DescriptionDone": "Hai raggiunto il 3° ritrovo", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Piani migliori", + "Description": "Raccogli 3 tipi di uova", + "DescriptionDone": "Hai raccolto un assortimento di uova", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Visitatore", + "Description": "Esplora ambienti specifici: 0/1", + "DescriptionDone": "Hai esplorato 5 tipi di pianeta", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Peccato di gola", + "Description": "Sforna una torta", + "DescriptionDone": "Hai sfornato una torta", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Un palato sopraffino", + "Description": "Fai colpo su Crono", + "DescriptionDone": "Hai ottenuto il rispetto di Crono", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Fase 4", + "Description": "Progressi attuali: 0/7", + "DescriptionDone": "Fase 4 completata", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Ritrovo 4", + "Description": "Raggiungi il quarto ritrovo", + "DescriptionDone": "Hai raggiunto il quarto ritrovo", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Analisi digestiva", + "Description": "Ispeziona i campioni di sterco: 0/20", + "DescriptionDone": "Hai ispezionato 20 campioni di sterco", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Compagnia", + "Description": "Adotta compagni: 0/3", + "DescriptionDone": "Hai adottato 3 compagni", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Occhi nel canneto", + "Description": "Scopri creature in un mondo paludoso", + "DescriptionDone": "Hai scoperto creature su un pianeta paludoso", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Biologia marina", + "Description": "Scopri 4 creature acquatiche", + "DescriptionDone": "Hai scoperto della vita acquatica", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Cosa c'è sotto", + "Description": "Sopravvivi alle grinfie di un orrore degli abissi", + "DescriptionDone": "Hai superato indenne un incontro con un orrore abissale", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Dati preziosi", + "Description": "Guadagna 200000 unità per aver scoperto una creatura", + "DescriptionDone": "I dati di una creatura scoperta valgono %AMOUNT% unità", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Fase 5", + "Description": "Progressi attuali: 0/7", + "DescriptionDone": "Fase 5 completata", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Ritrovo 5", + "Description": "Raggiungi l'ultimo ritrovo", + "DescriptionDone": "Hai raggiunto l'ultimo ritrovo", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Un universo affollato", + "Description": "Visita un mondo abitato da %NUM% specie", + "DescriptionDone": "Visitato un pianeta brulicante di fauna", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Apertura alare", + "Description": "Vola su un compagno: 0u/2000u", + "DescriptionDone": "Hai volato per 2000u su un compagno", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiologia", + "Description": "Scopri 1 creature esotiche", + "DescriptionDone": "Hai scoperto forme di vita bizzarre", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Esploratore famoso", + "Description": "Migliora la tua reputazione presso la gilda degli esploratori: 0/5", + "DescriptionDone": "Illustre nella gilda degli esploratori", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Antenati", + "Description": "Dissotterra ossa antiche: 0/10", + "DescriptionDone": "Hai recuperato 10 fossili", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Vita riconoscibile", + "Description": "Incontra un essere senziente dello spazio profondo", + "DescriptionDone": "Hai stabilito un contatto con un essere senziente gassoso", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/ja/SeasonalExpedition.lang.json b/assets/json/ja/SeasonalExpedition.lang.json index 25995f20..4923334a 100644 --- a/assets/json/ja/SeasonalExpedition.lang.json +++ b/assets/json/ja/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "探検5:宇宙生物学", + "IsRedux": true, + "PortalCode": "", + "GameMode": "ノーマル", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "フェーズ1", + "Description": "現在の進行度:0/8", + "DescriptionDone": "フェーズ1達成", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "足跡", + "Description": "コンパニオンに乗る:0u/850u", + "DescriptionDone": "850u乗った", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "メタルマウント", + "Description": "宇宙船を探せ", + "DescriptionDone": "宇宙船に到達した", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "親友のポートレート", + "Description": "コンパニオンの写真を撮る", + "DescriptionDone": "コンパニオンを撮影した", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "離陸", + "Description": "惑星から飛び立つ", + "DescriptionDone": "惑星から飛び立つ", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "さらに輝く星を目指して", + "Description": "生き物のいないこの星系を去る", + "DescriptionDone": "光速に達した", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "母星", + "Description": "肥沃の世界を訪れる", + "DescriptionDone": "肥沃の惑星を訪問", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "次の世代", + "Description": "コンパニオンの卵を産ませる", + "DescriptionDone": "新しい命を届けた", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "ランデブー1", + "Description": "最初のランデブーポイントに向かう", + "DescriptionDone": "最初のランデブーポイントに到着", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "フェーズ2", + "Description": "現在の進行度:0/7", + "DescriptionDone": "フェーズ2達成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "ランデブー2", + "Description": "2番目のランデブーポイントに向かう", + "DescriptionDone": "2番目のランデブーポイントに到着", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "不朽の友情", + "Description": "コンパニオンから完全に信頼される", + "DescriptionDone": "コンパニオンから完全に信頼された", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "甲虫学", + "Description": "甲虫をコンパニオンにする", + "DescriptionDone": "甲虫をコンパニオンにした", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "マッドサイエンス", + "Description": "コンパニオンの卵の遺伝子を組み換える", + "DescriptionDone": "遺伝情報を再配列する", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "大群", + "Description": "8体の生物の群れに餌をやる", + "DescriptionDone": "生物の大群に餌をやった", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "鳥類学", + "Description": "4匹の飛行生物を発見する", + "DescriptionDone": "空中の生き物を発見した", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "陸地のスナップ", + "Description": "10体の地上の生物の写真を撮る", + "DescriptionDone": "生物の群れを撮影した", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "フェーズ3", + "Description": "現在の進行度:0/5", + "DescriptionDone": "フェーズ3達成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "ランデブー3", + "Description": "3番目のランデブーポイントに向かう", + "DescriptionDone": "3番目のランデブーポイントに到着", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "綿密な計画", + "Description": "卵を3種類集める", + "DescriptionDone": "卵のセットを集めた", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "観光客", + "Description": "特定の環境を探索する:0/1", + "DescriptionDone": "5種類の惑星を探索した", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "甘党", + "Description": "ケーキを焼く", + "DescriptionDone": "ケーキを焼いた", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "美食家", + "Description": "クロノスを感心させる", + "DescriptionDone": "クロノスの敬意を得た", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "フェーズ4", + "Description": "現在の進行度:0/7", + "DescriptionDone": "フェーズ4達成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "ランデブー4", + "Description": "4番目のランデブーポイントに向かう", + "DescriptionDone": "4番目のランデブーポイントに到着", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "消化分析", + "Description": "糞のサンプルを探す:0/20", + "DescriptionDone": "20個の糞のサンプルを探した", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "交友", + "Description": "動物をコンパニオンにする:0/3", + "DescriptionDone": "3の動物をコンパニオンにする", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "葦の中の目", + "Description": "沼の世界で生物を発見する", + "DescriptionDone": "沼の惑星で生物を発見した", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "海洋生物学", + "Description": "4匹の水生生物を発見する", + "DescriptionDone": "水生生物を発見した", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "下に潜むもの", + "Description": "深海の恐怖のカギ爪から逃れる", + "DescriptionDone": "深海の危険生物との遭遇を生き延びた", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "貴重なデータ", + "Description": "生物を発見して200000ユニットを獲得する", + "DescriptionDone": "%AMOUNT%ユニット相当の生物データを発見した", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "フェーズ5", + "Description": "現在の進行度:0/7", + "DescriptionDone": "フェーズ5達成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "ランデブー5", + "Description": "最後のランデブーポイントに向かう", + "DescriptionDone": "最後のランデブーポイントに到着", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "混み合った宇宙", + "Description": "%NUM%種族が生息する世界を訪ねる", + "DescriptionDone": "動物群で満ちあふれた惑星を訪れた", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "翼を広げて", + "Description": "コンパニオンに乗って飛ぶ:0u/2000u", + "DescriptionDone": "コンパニオンに乗って2000u飛んだ", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "宇宙生物学", + "Description": "1匹の外来生物を発見する", + "DescriptionDone": "奇妙な生命体を発見した", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "有名探検家", + "Description": "探検家ギルドから評価を得る:0/5", + "DescriptionDone": "探検家ギルドで著名", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "先祖", + "Description": "発掘した古代生物の骨:0/10", + "DescriptionDone": "化石を10個集めた", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "認識できる生命", + "Description": "深宇宙の知覚体に出会う", + "DescriptionDone": "ガス状の知覚体と交流した", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/ko/SeasonalExpedition.lang.json b/assets/json/ko/SeasonalExpedition.lang.json index 89563939..f1b5a534 100644 --- a/assets/json/ko/SeasonalExpedition.lang.json +++ b/assets/json/ko/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "원정 5: 우주생물학", + "IsRedux": true, + "PortalCode": "", + "GameMode": "보통", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "1단계", + "Description": "현재 진행도: 0/8", + "DescriptionDone": "1단계 완료", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "발자국", + "Description": "반려동물 타기: 0u/850u", + "DescriptionDone": "타고 850u 이동함", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "메탈 마운트", + "Description": "내 함선 찾기", + "DescriptionDone": "내 함선에 도달함", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "가장 친한 친구의 초상화", + "Description": "반려동물의 사진 찍기", + "DescriptionDone": "반려동물의 사진을 찍음", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "이륙", + "Description": "행성에서 떠나기", + "DescriptionDone": "행성에서 떠남", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "더 밝은 별로", + "Description": "이 생명체 없는 성계 떠나기", + "DescriptionDone": "광속에 도달함", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "고향", + "Description": "우거진 세상 방문하기", + "DescriptionDone": "우거진 행성 방문 완료", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "다음 세대", + "Description": "반려동물의 산란 유도하기", + "DescriptionDone": "새 생명을 발견함", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "합류지 1", + "Description": "첫 번째 합류지에 도달하기", + "DescriptionDone": "첫 번째 합류지에 도달 완료", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "2단계", + "Description": "현재 진행도: 0/7", + "DescriptionDone": "2단계 완료", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "합류지 2", + "Description": "두 번째 합류지에 도달하기", + "DescriptionDone": "두 번째 합류지에 도달 완료", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "오래가는 우정", + "Description": "반려동물의 완전한 신뢰 얻기", + "DescriptionDone": "반려동물의 완전한 신뢰를 받음", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "딱정벌레학", + "Description": "딱정벌레 반려동물 입양하기", + "DescriptionDone": "딱정벌레 반려동물을 입양함", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "미친 과학자", + "Description": "반려동물 알의 유전자 조작하기", + "DescriptionDone": "재배열된 유전 암호", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "우글우글", + "Description": "8마리의 생물체 무리에게 먹이 주기", + "DescriptionDone": "많은 수의 생물체에게 먹이를 줌", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "조류학", + "Description": "비행 생물체 4마리 발견하기", + "DescriptionDone": "비행 생물체를 발견함", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "지상 스냅 사진", + "Description": "지상 생물체 10마리의 사진 찍기", + "DescriptionDone": "생물체 무리의 사진을 찍음", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "3단계", + "Description": "현재 진행도: 0/5", + "DescriptionDone": "3단계 완료", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "합류지 3", + "Description": "세 번째 합류지에 도달하기", + "DescriptionDone": "세 번째 합류지에 도달 완료", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "최적의 계획", + "Description": "3가지 종류의 알 모으기", + "DescriptionDone": "알 여러 개를 입수함", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "유람객", + "Description": "특정 환경 탐험: 0/1", + "DescriptionDone": "다섯 가지 행성 유형 탐험 완료", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "달콤한 게 좋아", + "Description": "케이크 굽기", + "DescriptionDone": "케이크를 구움", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "뛰어난 미각", + "Description": "크로누스에게 깊은 인상 남기기", + "DescriptionDone": "크로누스의 존경을 받음", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "4단계", + "Description": "현재 진행도: 0/7", + "DescriptionDone": "4단계 완료", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "합류지 4", + "Description": "네 번째 합류지에 도달하기", + "DescriptionDone": "네 번째 합류지에 도달 완료", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "소화 분석", + "Description": "배설물 표본 찾기: 0/20", + "DescriptionDone": "20개의 배설물 표본을 찾음", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "동료애", + "Description": "반려동물 입양하기: 0 / 3", + "DescriptionDone": "3마리의 반려동물 입양 완료", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "갈대밭의 눈", + "Description": "질척거리는 세상에서 생물체 발견하기", + "DescriptionDone": "늪 행성에서 생물체 발견 완료", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "해양 생물학", + "Description": "수생 동물 4마리 발견하기", + "DescriptionDone": "수생 동물을 발견함", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "그 아래 도사리는 것", + "Description": "심해 공포의 손아귀에서 살아남기", + "DescriptionDone": "심연의 공포와의 만남에서 살아남음", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "가치 있는 데이터", + "Description": "생물체를 발견해 200000유닛 획득하기", + "DescriptionDone": "%AMOUNT%유닛 가치가 있는 생물체 데이터를 발견함", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "5단계", + "Description": "현재 진행도: 0/7", + "DescriptionDone": "5단계 완료", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "합류지 5", + "Description": "마지막 합류지에 도달하기", + "DescriptionDone": "마지막 합류지에 도달 완료", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "붐비는 우주", + "Description": "%NUM%종의 생명체가 사는 세상 방문하기", + "DescriptionDone": "동물이 가득한 행성에 방문함", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "날개 길이", + "Description": "반려동물을 타고 비행: 0u/2000u", + "DescriptionDone": "반려동물을 타고 2000u 비행함", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "외계생물학", + "Description": "이국적인 생물체 1마리 발견하기", + "DescriptionDone": "기괴한 생명체를 발견함", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "유명 탐험가", + "Description": "탐험가 길드의 우호도 얻기: 0/5", + "DescriptionDone": "탐험가 길드 사이에서 유명한", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "선조", + "Description": "고대 뼈 발굴: 0/10", + "DescriptionDone": "화석 10개 발굴", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "인식 가능한 생명", + "Description": "심우주 지성체 만나기", + "DescriptionDone": "가스 지성체와 교감함", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/nl/SeasonalExpedition.lang.json b/assets/json/nl/SeasonalExpedition.lang.json index a89539b4..510398a9 100644 --- a/assets/json/nl/SeasonalExpedition.lang.json +++ b/assets/json/nl/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Expeditie vijf: Exobiologie", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normaal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Fase 1", + "Description": "Voortgang: 0/8", + "DescriptionDone": "Fase 1 voltooid", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Pootafdrukken", + "Description": "Berijd een gezelschapsdier: 0 u/850 u", + "DescriptionDone": "Bereden: 850 u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "Het Metaalgebergte", + "Description": "Vind je ruimteschip", + "DescriptionDone": "Je hebt je ruimteschip gevonden", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Portret van je beste vriend", + "Description": "Maak een foto van je gezelschapsdier", + "DescriptionDone": "Je gezelschapsdier gefotografeerd", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Opstijgen", + "Description": "Verlaat de planeet", + "DescriptionDone": "Planeet verlaten", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Naar fellere sterren", + "Description": "Verlaat dit levenloze systeem", + "DescriptionDone": "Lichtsnelheid bereikt", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Thuiswereld", + "Description": "Bezoek een rijk begroeide wereld", + "DescriptionDone": "Rijk begroeide wereld bezocht", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "De volgende generatie", + "Description": "Wek een ei van een gezelschapsdier op", + "DescriptionDone": "Nieuw leven verzorgd", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Trefpunt 1", + "Description": "Ga naar het eerste trefpunt", + "DescriptionDone": "Eerste trefpunt bereikt", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Fase 2", + "Description": "Voortgang: 0/7", + "DescriptionDone": "Fase 2 voltooid", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Trefpunt 2", + "Description": "Ga naar het tweede trefpunt", + "DescriptionDone": "Tweede trefpunt bereikt", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Onverwoestbare vriendschap", + "Description": "Win het volledige vertrouwen van een gezelschapsdier", + "DescriptionDone": "Het volledige vertrouwen van een gezelschapsdier gewonnen", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Keverkunde", + "Description": "Adopteer een kever als gezelschapsdier", + "DescriptionDone": "Een kever geadopteerd als gezelschapsdier", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Gestoorde wetenschap", + "Description": "Voer genetische manipulatie uit op een ei van een gezelschapsdier", + "DescriptionDone": "Gemanipuleerde genetische code", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Zwerm", + "Description": "Geef eten aan een groep van 8 wezens", + "DescriptionDone": "Een grote groep wezens eten gegeven", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornithologie", + "Description": "Ontdek 4 vliegende wezens", + "DescriptionDone": "Zwevende wezens ontdekt", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Grondfoto's", + "Description": "Maak een foto van 10 grondwezens", + "DescriptionDone": "Een groep wezens gefotografeerd", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Fase 3", + "Description": "Voortgang: 0/5", + "DescriptionDone": "Fase 3 voltooid", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Trefpunt 3", + "Description": "Ga naar het derde trefpunt", + "DescriptionDone": "Derde trefpunt bereikt", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Ei van Columbus", + "Description": "Verzamel drie soorten eieren", + "DescriptionDone": "Een assortiment eieren verzameld", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Toerist", + "Description": "Verken specifieke omgevingen: 0/1", + "DescriptionDone": "5 planeetsoorten verkend", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Zoetekauw", + "Description": "Bak een taart", + "DescriptionDone": "Taart gebakken", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Een verfijnde smaak", + "Description": "Maak indruk op Cronus", + "DescriptionDone": "Het respect van Cronus verdiend", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Fase 4", + "Description": "Voortgang: 0/7", + "DescriptionDone": "Fase 4 voltooid", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Trefpunt 4", + "Description": "Ga naar het vierde trefpunt", + "DescriptionDone": "Vierde trefpunt bereikt", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Verteringsanalyse", + "Description": "Vind mestmonsters: 0/20", + "DescriptionDone": "20 mestmonsters gevonden", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Gezelschapsdieren", + "Description": "Adopteer gezelschapsdieren: 0/3", + "DescriptionDone": "3 gezelschapsdieren geadopteerd", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Ogen in het riet", + "Description": "Ontdek wezens op een moerasachtige wereld", + "DescriptionDone": "Wezens ontdekt op een moerasachtige planeet", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Mariene biologie", + "Description": "Ontdek 4 aquatische wezens", + "DescriptionDone": "Aquatisch leven ontdekt", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Wat verschuilt zich in de diepte", + "Description": "Overleef de klauwen van een diepzeeverschrikking", + "DescriptionDone": "Een contact met een abyssaal gedrocht overleefd", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Waardevolle gegevens", + "Description": "Verdien 200000 units voor het ontdekken van een wezen", + "DescriptionDone": "Wezengegevens ter waarde van %AMOUNT% units ontdekt", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Fase 5", + "Description": "Voortgang: 0/7", + "DescriptionDone": "Fase 5 voltooid", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Trefpunt 5", + "Description": "Ga naar het laatste trefpunt", + "DescriptionDone": "Het laatste trefpunt bereikt", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Wat een drukte", + "Description": "Bezoek een wereld die wordt bevolkt door %NUM% soorten", + "DescriptionDone": "Een planeet bezocht die barstte van de fauna", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Spanwijdte", + "Description": "Vlieg op een gezelschapsdier: 0 u/2000 u", + "DescriptionDone": "2000 u gevlogen op een gezelschapsdier", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiologie", + "Description": "Ontdek 1 exotische wezens", + "DescriptionDone": "Bizarre levensvormen ontdekt", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Beroemde verkenner", + "Description": "Verdien reputatie bij het Verkennersgilde: 0/5", + "DescriptionDone": "Befaamd bij het Verkennersgilde", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Voorouders", + "Description": "Graaf oude beenderen op: 0/10", + "DescriptionDone": "10 fossielen verzameld", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Herkenbaar leven", + "Description": "Ontmoet een ruimtebewustzijn", + "DescriptionDone": "Gecommuniceerd met een gasbewustzijn", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/pl/SeasonalExpedition.lang.json b/assets/json/pl/SeasonalExpedition.lang.json index 26d37e03..bf927c7b 100644 --- a/assets/json/pl/SeasonalExpedition.lang.json +++ b/assets/json/pl/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Ekspedycja piąta: Egzobiologia", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normalny", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Faza 1", + "Description": "Obecne postępy: 0/8.", + "DescriptionDone": "Faza 1 zaliczona.", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Ślady łap", + "Description": "Przejedź na towarzyszu: 0 j/850 j", + "DescriptionDone": "Przejechano 850 j", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "Metalowy uchwyt", + "Description": "Zlokalizuj swój statek gwiezdny.", + "DescriptionDone": "Osiągnięto statek gwiezdny.", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Portret najlepszego przyjaciela", + "Description": "Zrób zdjęcie swojemu towarzyszowi", + "DescriptionDone": "Zrobiono zdjęcie towarzyszowi", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Start", + "Description": "Opuść planetę.", + "DescriptionDone": "Opuszczono planetę.", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Do jaśniejszych gwiazd", + "Description": "Opuść ten system bez życia", + "DescriptionDone": "Udało ci się osiągnąć prędkość świetlną.", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Ojczyzna", + "Description": "Odwiedź bujną planetę", + "DescriptionDone": "Odwiedzono bujną planetę", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "Następne pokolenie", + "Description": "Wzbudź jajo towarzysza", + "DescriptionDone": "Powstało nowe życie", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Spotkanie 1", + "Description": "Osiągnij 1. punkt spotkania.", + "DescriptionDone": "Osiągnięto 1. punkt spotkania.", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Faza 2", + "Description": "Obecne postępy: 0/7.", + "DescriptionDone": "Faza 2 zaliczona.", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Spotkanie 2", + "Description": "Osiągnij 2. punkt spotkania.", + "DescriptionDone": "Osiągnięto 2. punkt spotkania.", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Trwała przyjaźń", + "Description": "Zyskaj całkowite zaufanie towarzysza", + "DescriptionDone": "Zyskano całkowite zaufanie towarzysza", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Koleopterologia", + "Description": "Przysposób towarzysza chrząszcza", + "DescriptionDone": "Przysposobiono towarzysza chrząszcza", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Szalona nauka", + "Description": "Zmodyfikuj genetycznie jajo towarzysza", + "DescriptionDone": "Resekwencjonowano kod genetyczny", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Wyroiło się", + "Description": "Nakarm grupę stworzeń liczącą 8 szt.", + "DescriptionDone": "Nakarmiono dużą grupę stworzeń", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornitologia", + "Description": "Odkryj latające stworzenia: 4", + "DescriptionDone": "Odkryto podniebne stworzenia", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Ujęcia z ziemi", + "Description": "Zrób zdjęcia stworzeniom naziemnym: 10", + "DescriptionDone": "Sfotografowano grupę stworzeń", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Faza 3", + "Description": "Obecne postępy: 0/5.", + "DescriptionDone": "Faza 3 zaliczona.", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Spotkanie 3", + "Description": "Osiągnij 3. punkt spotkania.", + "DescriptionDone": "Osiągnięto 3. punkt spotkania.", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Planowanie hodowli", + "Description": "Zbierz 3 rodzaje jaj", + "DescriptionDone": "Zebrano różne jaja", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Turysta", + "Description": "Odwiedź konkretne środowiska: 0/1.", + "DescriptionDone": "Odwiedzono 5 rodzajów planet.", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Łasuch", + "Description": "Upiecz ciasto", + "DescriptionDone": "Upieczono ciasto", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Wytrawne podniebienie", + "Description": "Zrób wrażenie na Cronusie", + "DescriptionDone": "Zdobyto szacunek Cronusa", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Faza 4", + "Description": "Obecne postępy: 0/7.", + "DescriptionDone": "Faza 4 zaliczona.", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Spotkanie 4", + "Description": "Osiągnij 4. punkt spotkania", + "DescriptionDone": "Osiągnięto 4. punkt spotkania", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Analiza trawienna", + "Description": "Zbadaj próbki łajna: 0/20", + "DescriptionDone": "Zbadane próbki łajna: 20", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Towarzystwo", + "Description": "Przysposób towarzyszy: 0/3.", + "DescriptionDone": "Przysposobiono towarzyszy: 3.", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Oczy w szuwarach", + "Description": "Odkryj stworzenia w bagiennym świecie", + "DescriptionDone": "Odkryto stworzenia na bagiennej planecie", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Biologia morska", + "Description": "Odkryj morskie stworzenia: 4", + "DescriptionDone": "Odkryto wodne życie", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Co czai się na dnie", + "Description": "Przetrwaj w szponach głębinowego horroru", + "DescriptionDone": "Przetrwano spotkanie z głębinowym okropieństwem", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Cenne dane", + "Description": "Zarób 200000 j za odkrycie stworzenia", + "DescriptionDone": "Odkryto dane stworzenia warte %AMOUNT% j", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Faza 5", + "Description": "Obecne postępy: 0/7.", + "DescriptionDone": "Faza 5 zaliczona.", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Spotkanie 5", + "Description": "Osiągnij ostatni punkt spotkania", + "DescriptionDone": "Osiągnięto ostatni punkt spotkania", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Zatłoczony wszechświat", + "Description": "Odwiedź planetę zamieszkaną przez nast. liczbę gatunków: %NUM%", + "DescriptionDone": "Odwiedzono planetę o bogatej faunie", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Rozpiętość skrzydeł", + "Description": "Przeleć na towarzyszu: 0 j/2000 j", + "DescriptionDone": "Przeleciano 2000 j na towarzyszu", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Ksenobiologia", + "Description": "Odkryj egzotyczne stworzenia: 1", + "DescriptionDone": "Odkryto dziwaczne formy życia", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Sławny odkrywca", + "Description": "Zyskaj reputację w gildii odkrywców: 0/5.", + "DescriptionDone": "Popularność w gildii odkrywców.", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Przodkowie", + "Description": "Wydobądź starożytne kości: 0/10", + "DescriptionDone": "Zebranie 10 skamielin", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Rozpoznawalne życie", + "Description": "Poznaj świadomość z głębin kosmosu", + "DescriptionDone": "Spotkano gazową świadomość", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/pt-br/SeasonalExpedition.lang.json b/assets/json/pt-br/SeasonalExpedition.lang.json index 19c9bf61..3d880b4e 100644 --- a/assets/json/pt-br/SeasonalExpedition.lang.json +++ b/assets/json/pt-br/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Expedição cinco: Exobiologia", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Fase 1", + "Description": "Progresso atual: 0/8", + "DescriptionDone": "Fase 1 concluída", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Pegadas", + "Description": "Cavalgue em um companheiro: 0 u/850 u", + "DescriptionDone": "Cavalgou 850 u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "A montaria metálica", + "Description": "Localize sua nave", + "DescriptionDone": "Alcançou sua nave", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Retrato do melhor amigo", + "Description": "Tire uma foto de seu companheiro", + "DescriptionDone": "Tirou uma foto de seu companheiro", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Decolagem", + "Description": "Deixe o planeta", + "DescriptionDone": "Deixou o planeta", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Para estrelas mais brilhantes", + "Description": "Deixe este sistema sem vida", + "DescriptionDone": "Assumiu a velocidade da luz", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Planeta de origem", + "Description": "Visite um mundo verdejante", + "DescriptionDone": "Visitou um planeta verdejante", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "A próxima geração", + "Description": "Induza um companheiro a botar um ovo", + "DescriptionDone": "Trouxe uma nova vida", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Ponto de encontro 1", + "Description": "Chegue ao primeiro ponto de encontro", + "DescriptionDone": "Chegou ao primeiro ponto de encontro", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Fase 2", + "Description": "Progresso atual: 0/7", + "DescriptionDone": "Fase 2 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Ponto de encontro 2", + "Description": "Chegue ao segundo ponto de encontro", + "DescriptionDone": "Chegou ao segundo ponto de encontro", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Amizade duradoura", + "Description": "Ganhe a confiança total de um companheiro", + "DescriptionDone": "Ganhou a confiança total de um companheiro", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Coleopterologia", + "Description": "Adote um companheiro besouro", + "DescriptionDone": "Adotou um companheiro besouro", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Ciência maluca", + "Description": "Modifique geneticamente um ovo de companheiro", + "DescriptionDone": "Código genético ressequenciado", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Cercado", + "Description": "Alimente um grupo de 8 criaturas", + "DescriptionDone": "Alimentou um grande grupo de criaturas", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornitologia", + "Description": "Descubra 4 criaturas voadoras", + "DescriptionDone": "Descobriu criaturas voadoras", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Fotos terrestres", + "Description": "Tire uma foto de 10 criaturas terrestres", + "DescriptionDone": "Fotografou um grupo de criaturas", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Fase 3", + "Description": "Progresso atual: 0/5", + "DescriptionDone": "Fase 3 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Ponto de encontro 3", + "Description": "Chegue ao terceiro ponto de encontro", + "DescriptionDone": "Chegou ao terceiro ponto de encontro", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Melhores planos", + "Description": "Obtenha 3 tipos de ovo", + "DescriptionDone": "Obteve uma variedade de ovos", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Turismo", + "Description": "Explore ambientes específicos: 0/1", + "DescriptionDone": "Explorou 5 tipos de planetas", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Guloso", + "Description": "Asse um bolo", + "DescriptionDone": "Assou um bolo", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Um paladar exigente", + "Description": "Impressione Cronos", + "DescriptionDone": "Ganhou o respeito de Cronos", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Fase 4", + "Description": "Progresso atual: 0/7", + "DescriptionDone": "Fase 4 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Ponto de encontro 4", + "Description": "Chegue ao quarto ponto de encontro", + "DescriptionDone": "Chegou ao quarto ponto de encontro", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Análise digestiva", + "Description": "Procure amostras de esterco: 0/20", + "DescriptionDone": "Procurou 20 amostras de esterco", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Companheirismo", + "Description": "Adote companheiros: 0/3", + "DescriptionDone": "Adotou 3 companheiros", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "De olho nos juncos", + "Description": "Descubra criaturas em um mundo pantanoso", + "DescriptionDone": "Descobriu criaturas em um planeta pantanoso", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Biologia marinha", + "Description": "Descubra 4 criaturas aquáticas", + "DescriptionDone": "Descobriu uma vida aquática", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "O que se esconde lá embaixo", + "Description": "Sobreviva ao ataque de um horror do fundo do mar", + "DescriptionDone": "Sobreviveu a um encontro com um horror abissal", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Dados valiosos", + "Description": "Ganhe 200000 unidades por descobrir uma criatura", + "DescriptionDone": "Dados de criaturas descobertas que valem %AMOUNT% unidades", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Fase 5", + "Description": "Progresso atual: 0/7", + "DescriptionDone": "Fase 5 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Ponto de encontro 5", + "Description": "Chegue ao último ponto de encontro", + "DescriptionDone": "Chegou ao último ponto de encontro", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Um universo lotado", + "Description": "Visite um mundo habitado por %NUM% espécies", + "DescriptionDone": "Visitou um planeta repleto de fauna", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Envergadura", + "Description": "Voe em um companheiro: 0 u/2000 u", + "DescriptionDone": "Voou 2000 u em um companheiro", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiologia", + "Description": "Descubra 1 criaturas exóticas", + "DescriptionDone": "Descobriu formas de vida bizarras", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Explorador famoso", + "Description": "Ganhe reputação na guilda dos exploradores: 0/5", + "DescriptionDone": "Obteve renome na guilda dos exploradores", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Ancestrais", + "Description": "Escave ossos antigos: 0/10", + "DescriptionDone": "Coletou 10 fósseis", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Vida reconhecível", + "Description": "Conheça uma inteligência do espaço profundo", + "DescriptionDone": "Entrou em comunhão com uma inteligência gasosa", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/pt/SeasonalExpedition.lang.json b/assets/json/pt/SeasonalExpedition.lang.json index 851bee02..30571f15 100644 --- a/assets/json/pt/SeasonalExpedition.lang.json +++ b/assets/json/pt/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Expedição Cinco: Exobiologia", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Fase 1", + "Description": "Progresso atual: 0/8", + "DescriptionDone": "Fase 1 concluída", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Pegadas", + "Description": "Monta um companheiro: 0u/850u", + "DescriptionDone": "Montaste 850u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "A Montada Metálica", + "Description": "Localiza a tua nave espacial", + "DescriptionDone": "Chegaste à tua nave espacial", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Retrato do melhor amigo", + "Description": "Tira uma fotografia do teu companheiro", + "DescriptionDone": "Fotografaste o teu companheiro", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Descolagem", + "Description": "Sair do planeta", + "DescriptionDone": "Saíste do planeta", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "Para estrelas mais brilhantes", + "Description": "Deixa este sistema sem vida", + "DescriptionDone": "Atingiste a velocidade da luz", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Planeta-natal", + "Description": "Visita um mundo luxuriante", + "DescriptionDone": "Visitaste um planeta luxuriante", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "A próxima geração", + "Description": "Induz um ovo de companheiro", + "DescriptionDone": "Trouxeste vida ao mundo", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Ponto de encontro 1", + "Description": "Alcança o primeiro ponto de encontro", + "DescriptionDone": "Primeiro ponto de encontro alcançado", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Fase 2", + "Description": "Progresso atual: 0/7", + "DescriptionDone": "Fase 2 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Ponto de encontro 2", + "Description": "Alcança o segundo ponto de encontro", + "DescriptionDone": "Segundo ponto de encontro alcançado", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Amizade Eterna", + "Description": "Ganha a confiança total de um companheiro", + "DescriptionDone": "Ganhaste a confiança total de um companheiro", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Coleopterologia", + "Description": "Adota um companheiro escaravelho", + "DescriptionDone": "Adotaste um companheiro escaravelho", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Ciência Louca", + "Description": "Modifica geneticamente um ovo de companheiro", + "DescriptionDone": "Alteraste código genético", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Aos Magotes", + "Description": "Alimenta um grupo de 8 criaturas", + "DescriptionDone": "Alimentaste um grande grupo de criaturas", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornitologia", + "Description": "Descobre 4 criaturas voadoras", + "DescriptionDone": "Descobriste criaturas aéreas", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Fotos Terrestres", + "Description": "Tirar uma fotografia a 10 criaturas terrestres", + "DescriptionDone": "Fotografaste um grupo de criaturas", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Fase 3", + "Description": "Progresso atual: 0/5", + "DescriptionDone": "Fase 3 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Ponto de encontro 3", + "Description": "Alcança o terceiro ponto de encontro", + "DescriptionDone": "Terceiro ponto de encontro alcançado", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Os melhores planos", + "Description": "Reúne 3 tipos de ovo", + "DescriptionDone": "Reuniste uma variedade de ovos", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Excursionista", + "Description": "Explora ambientes específicos: 0/1", + "DescriptionDone": "Cinco tipos de planetas explorados", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Queda por doces", + "Description": "Faz um bolo", + "DescriptionDone": "Fizeste um bolo", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Um Palato Exigente", + "Description": "Impressiona Cronos", + "DescriptionDone": "Ganhaste o respeito de Cronos", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Fase 4", + "Description": "Progresso atual: 0/7", + "DescriptionDone": "Fase 4 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Ponto de encontro 4", + "Description": "Alcança o quarto ponto de encontro", + "DescriptionDone": "Alcançaste o quarto ponto de encontro", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Análise Digestiva", + "Description": "Analisa amostras de estrume: 0/20", + "DescriptionDone": "Analisaste 20 amostras de estrume", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Companheirismo", + "Description": "Adota companheiros: 0/3", + "DescriptionDone": "3 companheiros adotados", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Olho no juncal", + "Description": "Descobre criaturas num mundo pantanoso", + "DescriptionDone": "Descobriste criaturas num planeta pantanoso", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Biologia Marinha", + "Description": "Descobre 4 criaturas aquáticas", + "DescriptionDone": "Descobriste vida aquática", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Oculto nas profundezas", + "Description": "Sobrevive às garras de um horror nas profundezas do mar", + "DescriptionDone": "Sobreviveste a um encontro com um Horror Abissal", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Dados Valiosos", + "Description": "Ganha 200000 unidades por descobrir uma criatura", + "DescriptionDone": "Descobriste dados de criaturas no valor de %AMOUNT% unidades", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Fase 5", + "Description": "Progresso atual: 0/7", + "DescriptionDone": "Fase 5 concluída", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Ponto de encontro 5", + "Description": "Alcança o último ponto de encontro", + "DescriptionDone": "Último ponto de encontro alcançado", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Um universo cheio", + "Description": "Visita um mundo habitado por %NUM% espécies", + "DescriptionDone": "Visitaste um planeta repleto de fauna", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Envergadura de asa", + "Description": "Voa num companheiro: 0u/2000u", + "DescriptionDone": "Voaste 2000u num companheiro", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiologia", + "Description": "Descobre 1 criaturas exóticas", + "DescriptionDone": "Descobriste formas de vida bizarras", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Explorador famoso", + "Description": "Ganha reputação na Guilda dos Exploradores: 0/5", + "DescriptionDone": "Reputado na Guilda dos Exploradores", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Antepassados", + "Description": "Escava ossos antigos: 0/10", + "DescriptionDone": "Recolhidos 10 fósseis", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Vida Reconhecível", + "Description": "Encontra um senciente do espaço profundo", + "DescriptionDone": "Comunicaste com um senciente gasoso", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/ru/SeasonalExpedition.lang.json b/assets/json/ru/SeasonalExpedition.lang.json index afbb09f6..36b0e671 100644 --- a/assets/json/ru/SeasonalExpedition.lang.json +++ b/assets/json/ru/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "Экспедиция пять: «Экзобиология»", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Стандартный режим", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Фаза 1", + "Description": "Прогресс: 0/8", + "DescriptionDone": "Фаза 1 пройдена", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Отпечатки лап", + "Description": "Проехать на питомце: 0/850 ед.", + "DescriptionDone": "Вы проехали 850 ед.", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "Металлический скакун", + "Description": "Найдите свой звездолет", + "DescriptionDone": "Вы добрались до своего звездолета", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Портрет лучшего друга", + "Description": "Сделайте снимок вашего питомца", + "DescriptionDone": "Вы сфотографировали своего питомца", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "На взлет", + "Description": "Покиньте планету", + "DescriptionDone": "Вы покинули планету", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "К ярким звездам", + "Description": "Покинуть эту безжизненную систему", + "DescriptionDone": "Вы перешли на световую скорость", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Родная планета", + "Description": "Посетить лесистую планету", + "DescriptionDone": "Посещена лесистая планета", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "Следующее поколение", + "Description": "Стимулируйте появление яйца питомца", + "DescriptionDone": "Вы помогли появиться новой жизни", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Место встречи 1", + "Description": "Доберитесь до места встречи 1", + "DescriptionDone": "Вы добрались до места встречи 1", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Фаза 2", + "Description": "Прогресс: 0/7", + "DescriptionDone": "Фаза 2 пройдена", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Место встречи 2", + "Description": "Доберитесь до места встречи 2", + "DescriptionDone": "Вы добрались до места встречи 2", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Долгая дружба", + "Description": "Добейтесь полного доверия питомца", + "DescriptionDone": "Питомец полностью доверяет вам", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Колеоптерология", + "Description": "Приручите питомца-жука", + "DescriptionDone": "Приручен питомец-жук", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Безумная наука", + "Description": "Генетически измените яйцо питомца", + "DescriptionDone": "Модифицирован генетический код", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Стая", + "Description": "Накормите группу существ: 8", + "DescriptionDone": "Накормлена большая группа существ", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Орнитология", + "Description": "Найдите летающих животных: 4", + "DescriptionDone": "Найдены летающие животные", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Земные фотки", + "Description": "Сделайте снимок группы наземных существ: 10", + "DescriptionDone": "Сделана фотография группы существ", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Фаза 3", + "Description": "Прогресс: 0/5", + "DescriptionDone": "Фаза 3 пройдена", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Место встречи 3", + "Description": "Доберитесь до места встречи 3", + "DescriptionDone": "Вы добрались до места встречи 3", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Яйца в одной корзине", + "Description": "Соберите 3 типа яиц", + "DescriptionDone": "Собраны различные яйца", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Турист", + "Description": "Исследуйте определенные биомы: 0/1", + "DescriptionDone": "Исследовано 5 типов планет", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Сладкоежка", + "Description": "Испеките пирог", + "DescriptionDone": "Вы испекли пирог", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "Утонченный вкус", + "Description": "Впечатлите Крона", + "DescriptionDone": "Заработано уважение Крона", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Фаза 4", + "Description": "Прогресс: 0/7", + "DescriptionDone": "Фаза 4 пройдена", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Место встречи 4", + "Description": "Доберитесь до места встречи 4", + "DescriptionDone": "Вы добрались до места встречи 4", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Анализ пищеварения", + "Description": "Найдите образцы навоза: 0/20", + "DescriptionDone": "Найдено образов навоза: 20", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Животновод", + "Description": "Приручите питомцев: 0/3", + "DescriptionDone": "Приручено питомцев: 3", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Глаза в тростнике", + "Description": "Найдите существ в болотном мире", + "DescriptionDone": "Обнаружены существа на болотной планете", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Морская биология", + "Description": "Найдите водных существ: 4", + "DescriptionDone": "Обнаружены водные существа", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "Подводные тайны", + "Description": "Выживите в столкновении с глубинным ужасом", + "DescriptionDone": "Вы пережили встречу с глубинным ужасом", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Ценные данные", + "Description": "Заработайте 200000 юн. за обнаружение существа", + "DescriptionDone": "Обнаружены данные о существе стоимостью %AMOUNT% юн.", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Фаза 5", + "Description": "Прогресс: 0/7", + "DescriptionDone": "Фаза 5 пройдена", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Место встречи 5", + "Description": "Доберитесь до последнего места встречи", + "DescriptionDone": "Вы добрались до последнего места встречи", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "Тесная вселенная", + "Description": "Посетите мир, населенный несколькими видами: %NUM%", + "DescriptionDone": "Посещена планета с разнообразной фауной", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Перелет", + "Description": "Пролетите на питомце: 0/2000 ед.", + "DescriptionDone": "Вы пролетели на питомце 2000 ед.", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Ксенобиология", + "Description": "Найдите экзотических существ: 1", + "DescriptionDone": "Найдены гротескные формы жизни", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Знаменитый исследователь", + "Description": "Улучш. отн. с гильдией исследователей: 0/5", + "DescriptionDone": "Вы знамениты в гильдии исследователей", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Предки", + "Description": "Извлеките древние кости: 0/10", + "DescriptionDone": "Собрано окаменелостей: 10", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Узнаваемая жизнь", + "Description": "Повстречайте разумное существо в открытом космосе", + "DescriptionDone": "Вы пообщались с газообразной разумной жизнью", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/zh-hans/SeasonalExpedition.lang.json b/assets/json/zh-hans/SeasonalExpedition.lang.json index d023ea65..858442ea 100644 --- a/assets/json/zh-hans/SeasonalExpedition.lang.json +++ b/assets/json/zh-hans/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "远征五:异星生物学", + "IsRedux": true, + "PortalCode": "", + "GameMode": "普通", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "阶段 I", + "Description": "当前进度:0/8", + "DescriptionDone": "完成阶段 I", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "掌印", + "Description": "骑乘同伴:0u/850u", + "DescriptionDone": "已骑乘前行850u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "金骑", + "Description": "定位你的飞船", + "DescriptionDone": "已抵达你的飞船", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "最佳好友的相片", + "Description": "为同伴拍照", + "DescriptionDone": "已为同伴拍照", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "起飞", + "Description": "离开行星", + "DescriptionDone": "离开行星", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "更璀璨的群星", + "Description": "离开这个死寂星系", + "DescriptionDone": "已达到光速", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "家园", + "Description": "访问一个繁茂的世界", + "DescriptionDone": "已访问一个繁茂的星球", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "全新下一代", + "Description": "引导同伴产卵", + "DescriptionDone": "新生命已经诞生", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "会面点1", + "Description": "抵达第一个会面点", + "DescriptionDone": "已抵达第一个会面点", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "阶段 II", + "Description": "当前进度:0/7", + "DescriptionDone": "完成阶段 II", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "会面点2", + "Description": "抵达第二个会面点", + "DescriptionDone": "已抵达第二个会面点", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "友谊日久天长", + "Description": "得到一位同伴的完全信任", + "DescriptionDone": "已得到一位同伴的完全信任", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "鞘翅学", + "Description": "收养一位甲虫同伴", + "DescriptionDone": "已收养一位甲虫同伴", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "疯狂科学", + "Description": "对一枚同伴卵进行基因改造", + "DescriptionDone": "已重新调整遗传因子", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "蜂拥而至", + "Description": "喂食包含8只生物的生物群", + "DescriptionDone": "已喂食大群动物", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "鸟类学", + "Description": "发现4种飞行生物", + "DescriptionDone": "已发现飞行生物", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "陆行快照", + "Description": "同时为10只陆行生物拍照", + "DescriptionDone": "已为一群生物拍照", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "阶段 III", + "Description": "当前进度:0/5", + "DescriptionDone": "完成阶段 III", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "会面点3", + "Description": "抵达第三个会面点", + "DescriptionDone": "已抵达第三个会面点", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "最佳家长", + "Description": "收集3种卵", + "DescriptionDone": "已收集各类卵", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "游客", + "Description": "探索特定环境:0/1", + "DescriptionDone": "已探索5种行星", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "嗜甜如命", + "Description": "烘焙蛋糕", + "DescriptionDone": "已烘焙一份蛋糕", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "挑剔的味蕾", + "Description": "打动克洛诺斯", + "DescriptionDone": "已打动克洛诺斯的味蕾", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "阶段 IV", + "Description": "当前进度:0/7", + "DescriptionDone": "完成阶段 IV", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "会面点4", + "Description": "抵达第四个会面点", + "DescriptionDone": "已抵达第四个会面点", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "消化物分析", + "Description": "搜寻粪便样本:0/20", + "DescriptionDone": "已找到20份粪便样本", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "同伴", + "Description": "收养同伴:0/3", + "DescriptionDone": "已收养3个同伴", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "芦苇丛中的眼睛", + "Description": "在一个土本沼泽世界上发现生物", + "DescriptionDone": "已在一颗土本沼泽行星上发现生物", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "海洋生物学", + "Description": "发现4种水生生物", + "DescriptionDone": "已发现水生生命", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "海面之下", + "Description": "逃出一头深海惧物的追捕", + "DescriptionDone": "已逃脱一头深渊惧物的追捕", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "宝贵数据", + "Description": "通过发现一种生物获得200000货币", + "DescriptionDone": "已发现价值%AMOUNT%货币的生物数据", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "阶段 V", + "Description": "当前进度:0/7", + "DescriptionDone": "完成阶段 V", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "会面点5", + "Description": "抵达最终的会面点", + "DescriptionDone": "已抵达最后一个会面点", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "拥挤的宇宙", + "Description": "拜访居住着%NUM%个物种的世界", + "DescriptionDone": "已拜访一颗存在大量动物群系的行星", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "展翅高飞", + "Description": "骑乘一位同伴飞行:0u/2000u", + "DescriptionDone": "已骑乘一位同伴飞行2000u", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "异星生物学", + "Description": "发现1种异星生物", + "DescriptionDone": "已发现奇特生命体", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "知名探险家", + "Description": "提升你在探险家公会中的声望:0/5", + "DescriptionDone": "探险家公会声望等级:尊重", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "先祖们", + "Description": "挖掘古代骸骨:0/10", + "DescriptionDone": "已收集10块化石", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "潜在生命形态", + "Description": "遇见一个深空智慧生命", + "DescriptionDone": "已与一个气态智慧生命交流", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/assets/json/zh-hant/SeasonalExpedition.lang.json b/assets/json/zh-hant/SeasonalExpedition.lang.json index ad57d733..e2f44e52 100644 --- a/assets/json/zh-hant/SeasonalExpedition.lang.json +++ b/assets/json/zh-hant/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "探險五:外星生物學", + "IsRedux": true, + "PortalCode": "", + "GameMode": "正常", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "第 1 階段", + "Description": "目前進度:0/8", + "DescriptionDone": "第 1 階段完成", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "掌印", + "Description": "騎乘同伴:0u/850u", + "DescriptionDone": "已騎乘 850u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "金屬坐騎", + "Description": "找到你的太空船", + "DescriptionDone": "已抵達你的太空船", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "最佳好友的肖像", + "Description": "拍攝同伴的相片", + "DescriptionDone": "已拍攝你的同伴", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "升空", + "Description": "離開星球", + "DescriptionDone": "已離開星球", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "前往更光明的星球", + "Description": "離開這個了無生機的星系", + "DescriptionDone": "光速前進", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "家園", + "Description": "拜訪蒼翠世界", + "DescriptionDone": "已拜訪茂盛星球", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "次世代", + "Description": "催生一顆同伴蛋", + "DescriptionDone": "新生命已誕生", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "會合點 1", + "Description": "抵達會合點 1", + "DescriptionDone": "抵達會合點 1", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "第 2 階段", + "Description": "目前進度:0/7", + "DescriptionDone": "第 2 階段完成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "會合點 2", + "Description": "抵達第 2 個會合點", + "DescriptionDone": "已抵達第 2 個會合點", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "友誼長存", + "Description": "贏得同伴的完全信任", + "DescriptionDone": "已贏得同伴的完全信任", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "鞘翅學", + "Description": "收養甲蟲同伴", + "DescriptionDone": "已收養一隻甲蟲同伴", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "瘋狂科學", + "Description": "對同伴蛋進行基因改造", + "DescriptionDone": "已重新定序基因密碼", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "蜂擁而至", + "Description": "餵食總計 8 隻的生物群", + "DescriptionDone": "已餵食一大群生物", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "鳥類學", + "Description": "發現 4 種飛行生物", + "DescriptionDone": "已發現空中生物", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "陸棲快照", + "Description": "拍攝 10 隻地面生物的相片", + "DescriptionDone": "已拍攝一群生物", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "第 3 階段", + "Description": "目前進度:0/5", + "DescriptionDone": "第 3 階段完成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "會合點 3", + "Description": "抵達第 3 個會合點", + "DescriptionDone": "已抵達第 3 個會合點", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "最佳計劃", + "Description": "收集 3 種蛋", + "DescriptionDone": "已收集各式各樣的蛋", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "觀光客", + "Description": "探索特定環境型態:0/1", + "DescriptionDone": "已造訪 5 種星球", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "甜食愛好者", + "Description": "烤一個蛋糕", + "DescriptionDone": "已烤出一個蛋糕", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "挑剔的味蕾", + "Description": "讓克洛諾斯感到佩服", + "DescriptionDone": "贏得克洛諾斯的尊重", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "第 4 階段", + "Description": "目前進度:0/7", + "DescriptionDone": "第 4 階段完成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "會合點 4", + "Description": "抵達第四個會合點", + "DescriptionDone": "已抵達第四個會合點", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "消化分析", + "Description": "搜尋糞便樣本:0/20", + "DescriptionDone": "已搜尋 20 份糞便樣本", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "家有同伴", + "Description": "收養同伴:0/3", + "DescriptionDone": "已收養 3 個同伴", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "蘆葦叢中的眼睛", + "Description": "在沼澤世界中發現生物", + "DescriptionDone": "已在沼澤星球上發現生物", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "海洋生物學", + "Description": "發現 4 種水中生物", + "DescriptionDone": "已發現水中生物", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "深海潛伏之物", + "Description": "在深海懼獸的魔爪中倖存下來", + "DescriptionDone": "在遭遇深淵懼獸後倖存下來", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "珍貴的資料", + "Description": "發現生物即可賺取 200000 貨幣", + "DescriptionDone": "已發現的生物資料價值 %AMOUNT% 貨幣", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "第 5 階段", + "Description": "目前進度:0/7", + "DescriptionDone": "第 5 階段完成", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "會合點 5", + "Description": "抵達最終會合點", + "DescriptionDone": "已抵達最終會合點", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "熙來攘往的宇宙", + "Description": "拜訪一個居住著 %NUM% 個物種的世界", + "DescriptionDone": "已參觀一個充滿動物群的星球", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "翼展", + "Description": "搭乘同伴飛行:0u/2000u", + "DescriptionDone": "已在同伴身上飛行 2000u", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "異源生物學", + "Description": "發現 1 種特異生物", + "DescriptionDone": "已發現奇異生命體", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "知名探險家", + "Description": "贏得探險家工會評價:0/5", + "DescriptionDone": "在探險家工會中廣為知名", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "祖先", + "Description": "挖掘古老骨骸:0/10", + "DescriptionDone": "已收集 10 化石", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "可辨識的生命", + "Description": "遇見深空智慧生物", + "DescriptionDone": "與氣體智慧生物交流", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/release_notes.txt b/release_notes.txt index e850a740..69815191 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -1,6 +1,7 @@ - ✨ Random portal page (Github issue #139) - 🐛 Fix images in descriptions for Survey Device (Github issue #141) - 💄 Tweak Community Mission UI +- ✨ Add Expedition 5 Redux data (Github issue #142) Submitted to App Stores 2022-11-24 From 73869dfbca0cbbfbb3670e71d34b06f9ca46da1d Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Thu, 24 Nov 2022 16:34:31 +0100 Subject: [PATCH 09/11] =?UTF-8?q?=F0=9F=90=9B=20Limit=202nd=20glyph=20to?= =?UTF-8?q?=200,=201=20or=202=20on=20Random=20Portal=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/portal/portal_random_page.dart | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/pages/portal/portal_random_page.dart b/lib/pages/portal/portal_random_page.dart index 3b4cfc84..ba88ed65 100644 --- a/lib/pages/portal/portal_random_page.dart +++ b/lib/pages/portal/portal_random_page.dart @@ -83,7 +83,7 @@ class _RandomPortalPageState extends State { }); // _rollSlotController0.animateRandomly(); - // _rollSlotController1.animateRandomly(); + _rollSlotController1.animateRandomly(); _rollSlotController2.animateRandomly(); _rollSlotController3.animateRandomly(); _rollSlotController4.animateRandomly(); @@ -146,10 +146,7 @@ class _RandomPortalPageState extends State { 16, (index) => index.toRadixString(16), ); - List secondReel = [ - portalList[1], - ...portalList.where((p) => p != '1'), - ].toList(); + List secondReel = ['0', '1', '2'].toList(); return Column( mainAxisSize: MainAxisSize.max, From b56b0923419ec49a7a720c914910cb9f84aadeca Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Fri, 25 Nov 2022 12:14:48 +0100 Subject: [PATCH 10/11] =?UTF-8?q?=F0=9F=9A=A8=20Fix=20issues=20with=20Scro?= =?UTF-8?q?llController=20on=20Expedition=20pages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../seasonalExpedition/commonSeasonalExpeditionSeasonList.dart | 1 + lib/pages/seasonalExpedition/seasonalExpeditionDetailPage.dart | 1 + .../seasonalExpedition/seasonalExpeditionPhaseListPage.dart | 1 + 3 files changed, 3 insertions(+) diff --git a/lib/pages/seasonalExpedition/commonSeasonalExpeditionSeasonList.dart b/lib/pages/seasonalExpedition/commonSeasonalExpeditionSeasonList.dart index b09b2635..0addfb96 100644 --- a/lib/pages/seasonalExpedition/commonSeasonalExpeditionSeasonList.dart +++ b/lib/pages/seasonalExpedition/commonSeasonalExpeditionSeasonList.dart @@ -136,5 +136,6 @@ Widget getExpeditionBodyFromFuture( shrinkWrap: true, itemCount: listItems.length, itemBuilder: (BuildContext context, int index) => listItems[index], + scrollController: ScrollController(), ); } diff --git a/lib/pages/seasonalExpedition/seasonalExpeditionDetailPage.dart b/lib/pages/seasonalExpedition/seasonalExpeditionDetailPage.dart index ae89d4ad..96856816 100644 --- a/lib/pages/seasonalExpedition/seasonalExpeditionDetailPage.dart +++ b/lib/pages/seasonalExpedition/seasonalExpeditionDetailPage.dart @@ -68,6 +68,7 @@ class SeasonalExpeditionDetailPage extends StatelessWidget { child: listWithScrollbar( itemCount: widgets.length, itemBuilder: (context, index) => widgets[index], + scrollController: ScrollController(), ), ), ], diff --git a/lib/pages/seasonalExpedition/seasonalExpeditionPhaseListPage.dart b/lib/pages/seasonalExpedition/seasonalExpeditionPhaseListPage.dart index 72ab26ad..8281c972 100644 --- a/lib/pages/seasonalExpedition/seasonalExpeditionPhaseListPage.dart +++ b/lib/pages/seasonalExpedition/seasonalExpeditionPhaseListPage.dart @@ -165,6 +165,7 @@ class SeasonalExpeditionPhaseListPage extends StatelessWidget { body: listWithScrollbar( itemCount: widgets.length, itemBuilder: (context, index) => widgets[index], + scrollController: ScrollController(), ), ); } From 488f99a23a440ad8b6c2e9f332f69b94b64259d1 Mon Sep 17 00:00:00 2001 From: Kurt Lourens Date: Fri, 25 Nov 2022 12:15:46 +0100 Subject: [PATCH 11/11] =?UTF-8?q?=F0=9F=94=96=202.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/json/en/SeasonalExpedition.lang.json | 1688 +++++++++++++++++++ lib/assistantAppsSettings.dart | 2 +- lib/env/appVersionNum.dart | 6 +- pubspec.yaml | 4 +- release_notes.txt | 2 +- 5 files changed, 1695 insertions(+), 7 deletions(-) diff --git a/assets/json/en/SeasonalExpedition.lang.json b/assets/json/en/SeasonalExpedition.lang.json index c1090795..0f23494b 100644 --- a/assets/json/en/SeasonalExpedition.lang.json +++ b/assets/json/en/SeasonalExpedition.lang.json @@ -13376,6 +13376,1694 @@ } ] }, + { + "Id": "seas-5-redux", + "Icon": "milestonePatches/PATCH.EXPEDITION.5.png", + "StartDate": "2022-11-24T00:00:00", + "EndDate": "2022-12-08T00:00:00", + "Title": "EXPEDITION #5 REDUX: Expedition Five: Exobiology", + "IsRedux": true, + "PortalCode": "", + "GameMode": "Normal", + "GameModeType": "Normal", + "Phases": [ + { + "Id": "seas-5-redux-expedPhase-1", + "Icon": "milestonePatches/PATCH.MILESTONE.1.png", + "Title": "Phase 1", + "Description": "Current Progress: 0/8", + "DescriptionDone": "Phase 1 Complete", + "Milestones": [ + { + "MissionId": "PET_DISTANCE", + "Id": "seas-5-redux-expedPhase-1-milestone-1", + "Title": "Pawprints", + "Description": "Ride a companion: 0u/850u", + "DescriptionDone": "Rode 850u", + "Icon": "milestonePatches/PATCH.CREATUREPAWS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd3", + "Type": 8, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook122", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 50, + "AmountMax": 50, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod5", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FIND_SHIP", + "Id": "seas-5-redux-expedPhase-1-milestone-2", + "Title": "The Metal Mount", + "Description": "Locate your starship", + "DescriptionDone": "Reached your starship", + "Icon": "milestonePatches/PATCH.CRASH.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech99", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech28", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PHOTO_PET", + "Id": "seas-5-redux-expedPhase-1-milestone-3", + "Title": "Best Friend's Portrait", + "Description": "Take a photo of your companion", + "DescriptionDone": "Photographed your companion", + "Icon": "milestonePatches/PATCH.CREATURESBFFPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 500000, + "AmountMax": 500000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 14, + "AmountMin": 100, + "AmountMax": 100, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw67", + "Type": 5, + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_PLANET", + "Id": "seas-5-redux-expedPhase-1-milestone-4", + "Title": "Lift Off", + "Description": "Leave the planet", + "DescriptionDone": "Left the planet", + "Icon": "milestonePatches/PATCH.FIRSTPLANET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech27", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod81", + "Type": 0, + "AmountMin": 2, + "AmountMax": 2, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod116", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "LEAVE_SYSTEM", + "Id": "seas-5-redux-expedPhase-1-milestone-5", + "Title": "To Brighter Stars", + "Description": "Leave this lifeless system", + "DescriptionDone": "Went to light speed", + "Icon": "milestonePatches/PATCH.SHIPFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod18", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod75", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BIOME_LUSH", + "Id": "seas-5-redux-expedPhase-1-milestone-6", + "Title": "Homeworld", + "Description": "Visit a lush world", + "DescriptionDone": "Visited a lush planet", + "Icon": "milestonePatches/PATCH.BIOME.2.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "other205", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other207", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other208", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 256, + "AmountMax": 256, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG", + "Id": "seas-5-redux-expedPhase-1-milestone-7", + "Title": "The Next Generation", + "Description": "Induce a companion egg", + "DescriptionDone": "Delivered new life", + "Icon": "milestonePatches/PATCH.CREATUREBABY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "prod23", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw2", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1200, + "AmountMax": 1200, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PARTY_PLANET1", + "Id": "seas-5-redux-expedPhase-1-milestone-8", + "Title": "Rendezvous 1", + "Description": "Reach the 1st rendezvous", + "DescriptionDone": "Reached the 1st rendezvous", + "Icon": "milestonePatches/PATCH.PARTY.1.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build851", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-2", + "Icon": "milestonePatches/PATCH.MILESTONE.2.png", + "Title": "Phase 2", + "Description": "Current Progress: 0/7", + "DescriptionDone": "Phase 2 Complete", + "Milestones": [ + { + "MissionId": "PARTY_PLANET2", + "Id": "seas-5-redux-expedPhase-2-milestone-1", + "Title": "Rendezvous 2", + "Description": "Reach the 2nd rendezvous", + "DescriptionDone": "Reached the 2nd rendezvous", + "Icon": "milestonePatches/PATCH.PARTY.2.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_TRUST", + "Id": "seas-5-redux-expedPhase-2-milestone-2", + "Title": "Enduring Friendship", + "Description": "Earn complete trust from a companion", + "DescriptionDone": "Earned a companion's full trust", + "Icon": "milestonePatches/PATCH.CREATURETRUST.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech91", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech92", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech93", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech30", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech31", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech32", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_BEETLE", + "Id": "seas-5-redux-expedPhase-2-milestone-3", + "Title": "Coleopterology", + "Description": "Adopt a beetle companion", + "DescriptionDone": "Adopted a beetle companion", + "Icon": "milestonePatches/PATCH.CREATUREBEETLE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech13", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod110", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod55", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1024, + "AmountMax": 1024, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "PET_EGG_MOD", + "Id": "seas-5-redux-expedPhase-2-milestone-4", + "Title": "Mad Science", + "Description": "Genetically modify a companion egg", + "DescriptionDone": "Re-sequenced genetic code", + "Icon": "milestonePatches/PATCH.EGGMODIFY.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur14", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod44", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "FEED_GROUP", + "Id": "seas-5-redux-expedPhase-2-milestone-5", + "Title": "Swarmed", + "Description": "Feed a group of 8 creatures", + "DescriptionDone": "Fed a large group of creatures", + "Icon": "milestonePatches/PATCH.CREATUREFEED.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech64", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech70", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech71", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_FLYING", + "Id": "seas-5-redux-expedPhase-2-milestone-6", + "Title": "Ornithology", + "Description": "Discover 4 flying creatures", + "DescriptionDone": "Discovered airborne creatures", + "Icon": "milestonePatches/PATCH.DISCOVERANIMAL.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod50", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw29", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 150, + "AmountMax": 150, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tech142", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "EXPED_PHOTO_CRE", + "Id": "seas-5-redux-expedPhase-2-milestone-7", + "Title": "Terrestrial Snaps", + "Description": "Take a photo of 10 ground creatures", + "DescriptionDone": "Photographed a group of creatures", + "Icon": "milestonePatches/PATCH.CREATURESGROUPPHOTO.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + } + ], + "Rewards": [ + { + "Id": "build852", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build853", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build854", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-3", + "Icon": "milestonePatches/PATCH.MILESTONE.3.png", + "Title": "Phase 3", + "Description": "Current Progress: 0/5", + "DescriptionDone": "Phase 3 Complete", + "Milestones": [ + { + "MissionId": "PARTY_PLANET3", + "Id": "seas-5-redux-expedPhase-3-milestone-1", + "Title": "Rendezvous 3", + "Description": "Reach the 3rd rendezvous", + "DescriptionDone": "Reached the 3rd rendezvous", + "Icon": "milestonePatches/PATCH.PARTY.3.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_EGGS", + "Id": "seas-5-redux-expedPhase-3-milestone-2", + "Title": "Best-Laid Plans", + "Description": "Gather 3 types of egg", + "DescriptionDone": "Gathered an assortment of eggs", + "Icon": "milestonePatches/PATCH.CREATUREEGGS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook11", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook10", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook49", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cook45", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 16, + "AmountMax": 16, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech17", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "BASIC_BIOME2", + "Id": "seas-5-redux-expedPhase-3-milestone-3", + "Title": "Sightseer", + "Description": "Explore specific enviroments: 0/1", + "DescriptionDone": "Explored 5 planet types", + "Icon": "milestonePatches/PATCH.PLANETTYPES.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw10", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "raw23", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 999, + "AmountMax": 999, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech103", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "COOK_CAKE", + "Id": "seas-5-redux-expedPhase-3-milestone-4", + "Title": "Sweet Tooth", + "Description": "Bake a cake", + "DescriptionDone": "Baked a cake", + "Icon": "milestonePatches/PATCH.CAKE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build449", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build465", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build456", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build458", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build459", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build462", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build451", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build454", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build453", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build455", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build457", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build539", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "NEXUSCHEF_BEST", + "Id": "seas-5-redux-expedPhase-3-milestone-5", + "Title": "A Discerning Palate", + "Description": "Impress Cronus", + "DescriptionDone": "Earned the respect of Cronus", + "Icon": "milestonePatches/PATCH.CRONUS.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cook219", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook133", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook235", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook168", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook245", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "cook206", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other210", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-4", + "Icon": "milestonePatches/PATCH.MILESTONE.4.png", + "Title": "Phase 4", + "Description": "Current Progress: 0/7", + "DescriptionDone": "Phase 4 Complete", + "Milestones": [ + { + "MissionId": "PARTY_PLANET4", + "Id": "seas-5-redux-expedPhase-4-milestone-1", + "Title": "Rendezvous 4", + "Description": "Reach the 4th rendezvous", + "DescriptionDone": "Reached the 4th rendezvous", + "Icon": "milestonePatches/PATCH.PARTY.4.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_POOP", + "Id": "seas-5-redux-expedPhase-4-milestone-2", + "Title": "Digestive Analysis", + "Description": "Search dung samples: 0/20", + "DescriptionDone": "Searched 20 dung samples", + "Icon": "milestonePatches/PATCH.CREATUREDIG.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "conTech26", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech105", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech104", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech103", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod130", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GOT_PETS", + "Id": "seas-5-redux-expedPhase-4-milestone-3", + "Title": "Companionship", + "Description": "Adopt companions: 0/3", + "DescriptionDone": "Adopted 3 companions", + "Icon": "milestonePatches/PATCH.GETPET.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod58", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "raw3", + "Type": 0, + "MultiItemRewardType": "Substance", + "AmountMin": 1234, + "AmountMax": 1234, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_SWAMP", + "Id": "seas-5-redux-expedPhase-4-milestone-4", + "Title": "Eyes in the Reeds", + "Description": "Discover creatures on a swamp world", + "DescriptionDone": "Discovered creatures on a swamp planet", + "Icon": "milestonePatches/PATCH.CREATUREPLANET.3.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod70", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod20", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 25, + "AmountMax": 25, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "CRE_WATER", + "Id": "seas-5-redux-expedPhase-4-milestone-5", + "Title": "Marine Biology", + "Description": "Discover 4 aquatic creatures", + "DescriptionDone": "Discovered aquatic life", + "Icon": "milestonePatches/PATCH.CREATUREUNDERWATER.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "procProd24", + "Type": 8, + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod10", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build272", + "Type": 10, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GRABPLANT", + "Id": "seas-5-redux-expedPhase-4-milestone-6", + "Title": "What Lurks Below", + "Description": "Survive the clutches of a deep-sea horror", + "DescriptionDone": "Survived an encounter with an Abyssal Horror", + "Icon": "milestonePatches/PATCH.LURKSBELOW.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tMod15", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod165", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tMod30", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech205", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech208", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "tech78", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CASH_SCAN_CRE", + "Id": "seas-5-redux-expedPhase-4-milestone-7", + "Title": "Valuable Data", + "Description": "Earn 200000 units for discovering a creature", + "DescriptionDone": "Discovered creature data worth %AMOUNT% units", + "Icon": "milestonePatches/PATCH.BIGSELL.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw57", + "Type": 2, + "AmountMin": 600, + "AmountMax": 600, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other211", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "Id": "seas-5-redux-expedPhase-5", + "Icon": "milestonePatches/PATCH.MILESTONE.5.png", + "Title": "Phase 5", + "Description": "Current Progress: 0/7", + "DescriptionDone": "Phase 5 Complete", + "Milestones": [ + { + "MissionId": "PARTY_PLANET5", + "Id": "seas-5-redux-expedPhase-5-milestone-1", + "Title": "Rendezvous 5", + "Description": "Reach the final rendezvous", + "DescriptionDone": "Reached the final rendezvous", + "Icon": "milestonePatches/PATCH.PARTY.5.png", + "Type": "Rendezvous", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 1000, + "AmountMax": 1000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build938", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech64", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 1, + "AmountMax": 1, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "LIFE_HIGH", + "Id": "seas-5-redux-expedPhase-5-milestone-2", + "Title": "A Crowded Universe", + "Description": "Visit a world inhabited by 13 species", + "DescriptionDone": "Visited a planet teeming with fauna", + "Icon": "milestonePatches/PATCH.SYSTEM.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "build935", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build936", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "build937", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 10, + "AmountMax": 10, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "PET_DIST_FLY", + "Id": "seas-5-redux-expedPhase-5-milestone-3", + "Title": "Wingspan", + "Description": "Fly on a companion: 0u/2000u", + "DescriptionDone": "Flew 2000u on a companion", + "Icon": "milestonePatches/PATCH.CREATUREFLYING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "tech7", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "CRE_WEIRD", + "Id": "seas-5-redux-expedPhase-5-milestone-4", + "Title": "Xenobiology", + "Description": "Discover an exotic creature", + "DescriptionDone": "Discovered bizarre lifeforms", + "Icon": "milestonePatches/PATCH.CREATUREWEIRD.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw56", + "Type": 2, + "AmountMin": 450, + "AmountMax": 450, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build162", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build163", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build167", + "Type": 0, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "RANK_EGUILD", + "Id": "seas-5-redux-expedPhase-5-milestone-5", + "Title": "Famous Explorer", + "Description": "Earn Explorers Guild standing: 0/5", + "DescriptionDone": "Renowned in the Explorers Guild", + "Icon": "milestonePatches/PATCH.RAISEEXPLORER.1.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "prod99", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "conTech100", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 15, + "AmountMax": 15, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur22", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 5, + "AmountMax": 5, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + } + ] + }, + { + "MissionId": "GOT_FOSSILS", + "Id": "seas-5-redux-expedPhase-5-milestone-6", + "Title": "Ancestors", + "Description": "Excavate ancient bones: 0/10", + "DescriptionDone": "Collected 10 fossils", + "Icon": "milestonePatches/PATCH.GETDIGGING.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "raw58", + "Type": 2, + "AmountMin": 750000, + "AmountMax": 750000, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "prod160", + "Type": 1, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, + { + "MissionId": "GAS_POI", + "Id": "seas-5-redux-expedPhase-5-milestone-7", + "Title": "Recognisable Life", + "Description": "Meet a deep-space sentience", + "DescriptionDone": "Communed with a gas sentience", + "Icon": "milestonePatches/PATCH.GASSENTIENCE.png", + "Type": "Normal", + "Rewards": [ + { + "Id": "cur51", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "cur52", + "Type": 0, + "MultiItemRewardType": "Product", + "AmountMin": 3, + "AmountMax": 3, + "Currency": 0, + "ProcTechGroup": "", + "ProcTechQuality": 0, + "ProcProdType": "Loot", + "ProcProdRarity": "Common" + }, + { + "Id": "tMod80", + "Type": 8, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other212", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "build963", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + }, + { + "Id": "other214", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + } + ], + "Rewards": [ + { + "Id": "other215", + "Type": 3, + "AmountMin": 0, + "AmountMax": 0, + "Currency": 0, + "ProcTechQuality": 0 + } + ] + }, { "Id": "seas-6", "Icon": "milestonePatches/PATCH.EXPEDITION.6.png", diff --git a/lib/assistantAppsSettings.dart b/lib/assistantAppsSettings.dart index 72574f40..f87bb349 100644 --- a/lib/assistantAppsSettings.dart +++ b/lib/assistantAppsSettings.dart @@ -1,3 +1,3 @@ const assistantAppsApiUrl = 'https://api.assistantapps.com'; const assistantAppsAppGuid = '589405b4-e40f-4cd9-b793-6bf37944ee09'; -const currentWhatIsNewGuid = 'e9a23e18-2eac-44ab-98f0-53f3fd39a7ae'; +const currentWhatIsNewGuid = '5d286c7c-2c29-40c7-a0fa-998c25ec845a'; diff --git a/lib/env/appVersionNum.dart b/lib/env/appVersionNum.dart index 03770160..65fe8695 100644 --- a/lib/env/appVersionNum.dart +++ b/lib/env/appVersionNum.dart @@ -1,3 +1,3 @@ -const appsBuildNum = 297; -const appsBuildName = '2.2.0'; -const appsCommit = '3501a2d1a11d3396e60043a699f97d40b4931147'; \ No newline at end of file +const appsBuildNum = 298; +const appsBuildName = '2.3.0'; +const appsCommit = 'b56b0923419ec49a7a720c914910cb9f84aadeca'; \ No newline at end of file diff --git a/pubspec.yaml b/pubspec.yaml index 878f21ed..da1d414f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: assistantnms_app description: Assistant for No Man's Sky homepage: https://nmsassistant.com # author: Kurt Lourens -version: 2.2.1+297 # dart scripts\versionNumScript.dart +version: 2.3.0+298 # dart scripts\versionNumScript.dart publish_to: 'none' environment: @@ -94,7 +94,7 @@ flutter_icons: ## flutter pub run flutter_launcher_icons:main msix_config: # https://pub.dev/documentation/msix/latest/ display_name: Assistant for No Man's Sky publisher_display_name: AssistantApps - msix_version: 2.2.0.0 + msix_version: 2.3.0.0 identity_name: notSureIfSecret publisher: notSureIfSecret logo_path: './assets/images/fullSizeIcon.png' diff --git a/release_notes.txt b/release_notes.txt index 69815191..d14007e7 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -3,6 +3,6 @@ - 💄 Tweak Community Mission UI - ✨ Add Expedition 5 Redux data (Github issue #142) -Submitted to App Stores 2022-11-24 +Submitted to App Stores 2022-11-25 For more details on this update please visit the "What is New" page in the Apps or on the website \ No newline at end of file