feat: cheat Unlock All Dojo Deco Recipes (#1543)
Reviewed-on: OpenWF/SpaceNinjaServer#1543 Reviewed-by: Sainan <sainan@calamity.inc> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									85b5bb438e
								
							
						
					
					
						commit
						cc338c2173
					
				@ -191,6 +191,7 @@ const guildSchema = new Schema<IGuildDatabase>(
 | 
				
			|||||||
        VaultMiscItems: { type: [typeCountSchema], default: undefined },
 | 
					        VaultMiscItems: { type: [typeCountSchema], default: undefined },
 | 
				
			||||||
        VaultShipDecorations: { type: [typeCountSchema], default: undefined },
 | 
					        VaultShipDecorations: { type: [typeCountSchema], default: undefined },
 | 
				
			||||||
        VaultFusionTreasures: { type: [fusionTreasuresSchema], default: undefined },
 | 
					        VaultFusionTreasures: { type: [fusionTreasuresSchema], default: undefined },
 | 
				
			||||||
 | 
					        VaultDecoRecipes: { type: [typeCountSchema], default: undefined },
 | 
				
			||||||
        TechProjects: { type: [techProjectSchema], default: undefined },
 | 
					        TechProjects: { type: [techProjectSchema], default: undefined },
 | 
				
			||||||
        ActiveDojoColorResearch: { type: String, default: "" },
 | 
					        ActiveDojoColorResearch: { type: String, default: "" },
 | 
				
			||||||
        Class: { type: Number, default: 0 },
 | 
					        Class: { type: Number, default: 0 },
 | 
				
			||||||
 | 
				
			|||||||
@ -29,6 +29,7 @@ interface IConfig {
 | 
				
			|||||||
    unlockAllFlavourItems?: boolean;
 | 
					    unlockAllFlavourItems?: boolean;
 | 
				
			||||||
    unlockAllSkins?: boolean;
 | 
					    unlockAllSkins?: boolean;
 | 
				
			||||||
    unlockAllCapturaScenes?: boolean;
 | 
					    unlockAllCapturaScenes?: boolean;
 | 
				
			||||||
 | 
					    unlockAllDecoRecipes?: boolean;
 | 
				
			||||||
    universalPolarityEverywhere?: boolean;
 | 
					    universalPolarityEverywhere?: boolean;
 | 
				
			||||||
    unlockDoubleCapacityPotatoesEverywhere?: boolean;
 | 
					    unlockDoubleCapacityPotatoesEverywhere?: boolean;
 | 
				
			||||||
    unlockExilusEverywhere?: boolean;
 | 
					    unlockExilusEverywhere?: boolean;
 | 
				
			||||||
 | 
				
			|||||||
@ -30,6 +30,7 @@ import { Inbox } from "../models/inboxModel";
 | 
				
			|||||||
import { IFusionTreasure, ITypeCount } from "../types/inventoryTypes/inventoryTypes";
 | 
					import { IFusionTreasure, ITypeCount } from "../types/inventoryTypes/inventoryTypes";
 | 
				
			||||||
import { IInventoryChanges } from "../types/purchaseTypes";
 | 
					import { IInventoryChanges } from "../types/purchaseTypes";
 | 
				
			||||||
import { parallelForeach } from "../utils/async-utils";
 | 
					import { parallelForeach } from "../utils/async-utils";
 | 
				
			||||||
 | 
					import allDecoRecipes from "@/static/fixed_responses/allDecoRecipes.json";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const getGuildForRequest = async (req: Request): Promise<TGuildDatabaseDocument> => {
 | 
					export const getGuildForRequest = async (req: Request): Promise<TGuildDatabaseDocument> => {
 | 
				
			||||||
    const accountId = await getAccountIdForRequest(req);
 | 
					    const accountId = await getAccountIdForRequest(req);
 | 
				
			||||||
@ -114,7 +115,10 @@ export const getGuildVault = (guild: TGuildDatabaseDocument): IGuildVault => {
 | 
				
			|||||||
        DojoRefundMiscItems: guild.VaultMiscItems,
 | 
					        DojoRefundMiscItems: guild.VaultMiscItems,
 | 
				
			||||||
        DojoRefundPremiumCredits: guild.VaultPremiumCredits,
 | 
					        DojoRefundPremiumCredits: guild.VaultPremiumCredits,
 | 
				
			||||||
        ShipDecorations: guild.VaultShipDecorations,
 | 
					        ShipDecorations: guild.VaultShipDecorations,
 | 
				
			||||||
        FusionTreasures: guild.VaultFusionTreasures
 | 
					        FusionTreasures: guild.VaultFusionTreasures,
 | 
				
			||||||
 | 
					        DecoRecipes: config.unlockAllDecoRecipes
 | 
				
			||||||
 | 
					            ? allDecoRecipes.map(recipe => ({ ItemType: recipe, ItemCount: 1 }))
 | 
				
			||||||
 | 
					            : guild.VaultDecoRecipes
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -44,6 +44,7 @@ export interface IGuildDatabase {
 | 
				
			|||||||
    VaultMiscItems?: IMiscItem[];
 | 
					    VaultMiscItems?: IMiscItem[];
 | 
				
			||||||
    VaultShipDecorations?: ITypeCount[];
 | 
					    VaultShipDecorations?: ITypeCount[];
 | 
				
			||||||
    VaultFusionTreasures?: IFusionTreasure[];
 | 
					    VaultFusionTreasures?: IFusionTreasure[];
 | 
				
			||||||
 | 
					    VaultDecoRecipes?: ITypeCount[];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    TechProjects?: ITechProjectDatabase[];
 | 
					    TechProjects?: ITechProjectDatabase[];
 | 
				
			||||||
    ActiveDojoColorResearch: string;
 | 
					    ActiveDojoColorResearch: string;
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										92
									
								
								static/fixed_responses/allDecoRecipes.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										92
									
								
								static/fixed_responses/allDecoRecipes.json
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,92 @@
 | 
				
			|||||||
 | 
					[
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/AmbulasEventBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/AmbulasEventGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/AmbulasEventSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/AmbulasEventTerracottaTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/AridFearBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/AridFearGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/AridFearSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/BreedingGroundsBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/BreedingGroundsGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/BreedingGroundsSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/CiceroCrisisBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/CiceroCrisisGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/CiceroCrisisSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DisruptionEventBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DisruptionEventGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DisruptionEventSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DisruptionEventTerracottaTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DojoRemasterTrophyBronzeARecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DojoRemasterTrophyGoldARecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DojoRemasterTrophyPlatinumARecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/DojoRemasterTrophySilverARecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EntratiEventBaseTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EntratiEventBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EntratiEventGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EntratiEventSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EntratiEventTerracottaTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EvacuationEventBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EvacuationEventGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EvacuationEventSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EvacuationEventTerracottaTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/EyesOfBlightTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/FalseProfitBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/FalseProfitClayTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/FalseProfitGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/FalseProfitSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/FusionMoaTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemmaCorpusBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemmaCorpusGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemmaCorpusSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemmaGrineerBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemmaGrineerGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemmaGrineerSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/IcePlanetTrophyBronzeRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/IcePlanetTrophyGoldRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/IcePlanetTrophySilverRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/JadeShadowsEventBaseTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/JadeShadowsEventBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/JadeShadowsEventGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/JadeShadowsEventPewterTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/JadeShadowsEventSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/MechEventTrophyBronzeRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/MechEventTrophyGoldRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/MechEventTrophySilverRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/MechEventTrophyTerracottaRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/MutalistIncursionBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/MutalistIncursionGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/MutalistIncursionSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/OrokinMusicBoxRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/OrokinSabotageTrophyBronzeRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/OrokinSabotageTrophyGoldRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/OrokinSabotageTrophySilverRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ProjectSinisterBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ProjectSinisterClayTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ProjectSinisterGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ProjectSinisterSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/RailjackResearchTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/RathuumBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/RathuumClayTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/RathuumGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/RathuumSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ShipyardsEventBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ShipyardsEventGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ShipyardsEventSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/SlingStoneTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/SpyDroneTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/SurvivalEventBronzeTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/SurvivalEventGoldTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/SurvivalEventSilverTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/TennoConDojoGhostTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/TennoConDojoMoonTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/TennoConDojoMountainTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/TennoConDojoShadowTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/TennoConDojoStormTrophyRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ThumperTrophyBronzeRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ThumperTrophyCrystalRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ThumperTrophyGoldRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/ThumperTrophySilverRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/CorpusPlaceables/GasTurbineConeRecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/NaturalPlaceables/CoralChunkARecipe",
 | 
				
			||||||
 | 
					  "/Lotus/Levels/ClanDojo/ComponentPropRecipes/TennoPlaceables/TnoBeaconEmitterRecipe"
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
@ -568,6 +568,10 @@
 | 
				
			|||||||
                                        <input class="form-check-input" type="checkbox" id="unlockAllCapturaScenes" />
 | 
					                                        <input class="form-check-input" type="checkbox" id="unlockAllCapturaScenes" />
 | 
				
			||||||
                                        <label class="form-check-label" for="unlockAllCapturaScenes" data-loc="cheats_unlockAllCapturaScenes"></label>
 | 
					                                        <label class="form-check-label" for="unlockAllCapturaScenes" data-loc="cheats_unlockAllCapturaScenes"></label>
 | 
				
			||||||
                                    </div>
 | 
					                                    </div>
 | 
				
			||||||
 | 
					                                    <div class="form-check">
 | 
				
			||||||
 | 
					                                        <input class="form-check-input" type="checkbox" id="unlockAllDecoRecipes" />
 | 
				
			||||||
 | 
					                                        <label class="form-check-label" for="unlockAllDecoRecipes" data-loc="cheats_unlockAllDecoRecipes"></label>
 | 
				
			||||||
 | 
					                                    </div>
 | 
				
			||||||
                                    <div class="form-check">
 | 
					                                    <div class="form-check">
 | 
				
			||||||
                                        <input class="form-check-input" type="checkbox" id="universalPolarityEverywhere" />
 | 
					                                        <input class="form-check-input" type="checkbox" id="universalPolarityEverywhere" />
 | 
				
			||||||
                                        <label class="form-check-label" for="universalPolarityEverywhere" data-loc="cheats_universalPolarityEverywhere"></label>
 | 
					                                        <label class="form-check-label" for="universalPolarityEverywhere" data-loc="cheats_universalPolarityEverywhere"></label>
 | 
				
			||||||
 | 
				
			|||||||
@ -127,6 +127,7 @@ dict = {
 | 
				
			|||||||
    cheats_unlockAllFlavourItems: `Alle <abbr title=\"Animationssets, Glyphen, Farbpaletten usw.\">Sammlerstücke</abbr> freischalten`,
 | 
					    cheats_unlockAllFlavourItems: `Alle <abbr title=\"Animationssets, Glyphen, Farbpaletten usw.\">Sammlerstücke</abbr> freischalten`,
 | 
				
			||||||
    cheats_unlockAllSkins: `Alle Skins freischalten`,
 | 
					    cheats_unlockAllSkins: `Alle Skins freischalten`,
 | 
				
			||||||
    cheats_unlockAllCapturaScenes: `Alle Photora-Szenen freischalten`,
 | 
					    cheats_unlockAllCapturaScenes: `Alle Photora-Szenen freischalten`,
 | 
				
			||||||
 | 
					    cheats_unlockAllDecoRecipes: `[UNTRANSLATED] Unlock All Dojo Deco Recipes`,
 | 
				
			||||||
    cheats_universalPolarityEverywhere: `Universelle Polarität überall`,
 | 
					    cheats_universalPolarityEverywhere: `Universelle Polarität überall`,
 | 
				
			||||||
    cheats_unlockDoubleCapacityPotatoesEverywhere: `Orokin Reaktor & Beschleuniger überall`,
 | 
					    cheats_unlockDoubleCapacityPotatoesEverywhere: `Orokin Reaktor & Beschleuniger überall`,
 | 
				
			||||||
    cheats_unlockExilusEverywhere: `Exilus-Adapter überall`,
 | 
					    cheats_unlockExilusEverywhere: `Exilus-Adapter überall`,
 | 
				
			||||||
 | 
				
			|||||||
@ -126,6 +126,7 @@ dict = {
 | 
				
			|||||||
    cheats_unlockAllFlavourItems: `Unlock All <abbr title=\"Animation Sets, Glyphs, Palettes, etc.\">Flavor Items</abbr>`,
 | 
					    cheats_unlockAllFlavourItems: `Unlock All <abbr title=\"Animation Sets, Glyphs, Palettes, etc.\">Flavor Items</abbr>`,
 | 
				
			||||||
    cheats_unlockAllSkins: `Unlock All Skins`,
 | 
					    cheats_unlockAllSkins: `Unlock All Skins`,
 | 
				
			||||||
    cheats_unlockAllCapturaScenes: `Unlock All Captura Scenes`,
 | 
					    cheats_unlockAllCapturaScenes: `Unlock All Captura Scenes`,
 | 
				
			||||||
 | 
					    cheats_unlockAllDecoRecipes: `Unlock All Dojo Deco Recipes`,
 | 
				
			||||||
    cheats_universalPolarityEverywhere: `Universal Polarity Everywhere`,
 | 
					    cheats_universalPolarityEverywhere: `Universal Polarity Everywhere`,
 | 
				
			||||||
    cheats_unlockDoubleCapacityPotatoesEverywhere: `Potatoes Everywhere`,
 | 
					    cheats_unlockDoubleCapacityPotatoesEverywhere: `Potatoes Everywhere`,
 | 
				
			||||||
    cheats_unlockExilusEverywhere: `Exilus Adapters Everywhere`,
 | 
					    cheats_unlockExilusEverywhere: `Exilus Adapters Everywhere`,
 | 
				
			||||||
 | 
				
			|||||||
@ -127,6 +127,7 @@ dict = {
 | 
				
			|||||||
    cheats_unlockAllFlavourItems: `Débloquer tous les <abbr title=\"Animations, Glyphes, Palettes, etc.\">Flavor Items</abbr>`,
 | 
					    cheats_unlockAllFlavourItems: `Débloquer tous les <abbr title=\"Animations, Glyphes, Palettes, etc.\">Flavor Items</abbr>`,
 | 
				
			||||||
    cheats_unlockAllSkins: `Débloquer tous les skins`,
 | 
					    cheats_unlockAllSkins: `Débloquer tous les skins`,
 | 
				
			||||||
    cheats_unlockAllCapturaScenes: `Débloquer toutes les scènes captura`,
 | 
					    cheats_unlockAllCapturaScenes: `Débloquer toutes les scènes captura`,
 | 
				
			||||||
 | 
					    cheats_unlockAllDecoRecipes: `[UNTRANSLATED] Unlock All Dojo Deco Recipes`,
 | 
				
			||||||
    cheats_universalPolarityEverywhere: `Polarités universelles partout`,
 | 
					    cheats_universalPolarityEverywhere: `Polarités universelles partout`,
 | 
				
			||||||
    cheats_unlockDoubleCapacityPotatoesEverywhere: `Réacteurs et Catalyseurs partout`,
 | 
					    cheats_unlockDoubleCapacityPotatoesEverywhere: `Réacteurs et Catalyseurs partout`,
 | 
				
			||||||
    cheats_unlockExilusEverywhere: `Adaptateurs Exilus partout`,
 | 
					    cheats_unlockExilusEverywhere: `Adaptateurs Exilus partout`,
 | 
				
			||||||
 | 
				
			|||||||
@ -127,6 +127,7 @@ dict = {
 | 
				
			|||||||
    cheats_unlockAllFlavourItems: `Разблокировать все <abbr title=\"Наборы анимаций, глифы, палитры и т. д.\">уникальные предметы</abbr>`,
 | 
					    cheats_unlockAllFlavourItems: `Разблокировать все <abbr title=\"Наборы анимаций, глифы, палитры и т. д.\">уникальные предметы</abbr>`,
 | 
				
			||||||
    cheats_unlockAllSkins: `Разблокировать все скины`,
 | 
					    cheats_unlockAllSkins: `Разблокировать все скины`,
 | 
				
			||||||
    cheats_unlockAllCapturaScenes: `Разблокировать все сцены Каптуры`,
 | 
					    cheats_unlockAllCapturaScenes: `Разблокировать все сцены Каптуры`,
 | 
				
			||||||
 | 
					    cheats_unlockAllDecoRecipes: `Разблокировать все рецепты декораций Дoдзё`,
 | 
				
			||||||
    cheats_universalPolarityEverywhere: `Универсальная полярность везде`,
 | 
					    cheats_universalPolarityEverywhere: `Универсальная полярность везде`,
 | 
				
			||||||
    cheats_unlockDoubleCapacityPotatoesEverywhere: `Катализаторы везде`,
 | 
					    cheats_unlockDoubleCapacityPotatoesEverywhere: `Катализаторы везде`,
 | 
				
			||||||
    cheats_unlockExilusEverywhere: `Адаптеры Эксилус везде`,
 | 
					    cheats_unlockExilusEverywhere: `Адаптеры Эксилус везде`,
 | 
				
			||||||
 | 
				
			|||||||
@ -127,6 +127,7 @@ dict = {
 | 
				
			|||||||
    cheats_unlockAllFlavourItems: `解锁所有<abbr title=\"动画组合、图标、调色板等\">装饰物品</abbr>`,
 | 
					    cheats_unlockAllFlavourItems: `解锁所有<abbr title=\"动画组合、图标、调色板等\">装饰物品</abbr>`,
 | 
				
			||||||
    cheats_unlockAllSkins: `解锁所有外观`,
 | 
					    cheats_unlockAllSkins: `解锁所有外观`,
 | 
				
			||||||
    cheats_unlockAllCapturaScenes: `解锁所有Captura场景`,
 | 
					    cheats_unlockAllCapturaScenes: `解锁所有Captura场景`,
 | 
				
			||||||
 | 
					    cheats_unlockAllDecoRecipes: `[UNTRANSLATED] Unlock All Dojo Deco Recipes`,
 | 
				
			||||||
    cheats_universalPolarityEverywhere: `全局万用极性`,
 | 
					    cheats_universalPolarityEverywhere: `全局万用极性`,
 | 
				
			||||||
    cheats_unlockDoubleCapacityPotatoesEverywhere: `全物品自带Orokin反应堆`,
 | 
					    cheats_unlockDoubleCapacityPotatoesEverywhere: `全物品自带Orokin反应堆`,
 | 
				
			||||||
    cheats_unlockExilusEverywhere: `全物品自带适配器`,
 | 
					    cheats_unlockExilusEverywhere: `全物品自带适配器`,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user