feat: dontSubtractVoidTraces cheat (#2055)
Closes #2051 Reviewed-on: OpenWF/SpaceNinjaServer#2055 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									2521733e55
								
							
						
					
					
						commit
						3e1e19d6c5
					
				@ -20,6 +20,7 @@
 | 
			
		||||
  "infiniteRegalAya": false,
 | 
			
		||||
  "infiniteHelminthMaterials": false,
 | 
			
		||||
  "claimingBlueprintRefundsIngredients": false,
 | 
			
		||||
  "dontSubtractVoidTraces": false,
 | 
			
		||||
  "dontSubtractConsumables": false,
 | 
			
		||||
  "unlockAllShipFeatures": false,
 | 
			
		||||
  "unlockAllShipDecorations": false,
 | 
			
		||||
 | 
			
		||||
@ -2,13 +2,16 @@ import { RequestHandler } from "express";
 | 
			
		||||
import { getAccountIdForRequest } from "@/src/services/loginService";
 | 
			
		||||
import { addMiscItems, getInventory } from "@/src/services/inventoryService";
 | 
			
		||||
import { ExportRelics, IRelic } from "warframe-public-export-plus";
 | 
			
		||||
import { config } from "@/src/services/configService";
 | 
			
		||||
 | 
			
		||||
export const projectionManagerController: RequestHandler = async (req, res) => {
 | 
			
		||||
    const accountId = await getAccountIdForRequest(req);
 | 
			
		||||
    const inventory = await getInventory(accountId);
 | 
			
		||||
    const request = JSON.parse(String(req.body)) as IProjectionUpgradeRequest;
 | 
			
		||||
    const [era, category, currentQuality] = parseProjection(request.projectionType);
 | 
			
		||||
    const upgradeCost = (request.qualityTag - qualityKeywordToNumber[currentQuality]) * 25;
 | 
			
		||||
    const upgradeCost = config.dontSubtractVoidTraces
 | 
			
		||||
        ? 0
 | 
			
		||||
        : (request.qualityTag - qualityKeywordToNumber[currentQuality]) * 25;
 | 
			
		||||
    const newProjectionType = findProjection(era, category, qualityNumberToKeyword[request.qualityTag]);
 | 
			
		||||
    addMiscItems(inventory, [
 | 
			
		||||
        {
 | 
			
		||||
 | 
			
		||||
@ -25,6 +25,7 @@ interface IConfig {
 | 
			
		||||
    infiniteRegalAya?: boolean;
 | 
			
		||||
    infiniteHelminthMaterials?: boolean;
 | 
			
		||||
    claimingBlueprintRefundsIngredients?: boolean;
 | 
			
		||||
    dontSubtractVoidTraces?: boolean;
 | 
			
		||||
    dontSubtractConsumables?: boolean;
 | 
			
		||||
    unlockAllShipFeatures?: boolean;
 | 
			
		||||
    unlockAllShipDecorations?: boolean;
 | 
			
		||||
 | 
			
		||||
@ -598,6 +598,10 @@
 | 
			
		||||
                                        <input class="form-check-input" type="checkbox" id="infiniteHelminthMaterials" />
 | 
			
		||||
                                        <label class="form-check-label" for="infiniteHelminthMaterials" data-loc="cheats_infiniteHelminthMaterials"></label>
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                    <div class="form-check">
 | 
			
		||||
                                        <input class="form-check-input" type="checkbox" id="dontSubtractVoidTraces" />
 | 
			
		||||
                                        <label class="form-check-label" for="dontSubtractVoidTraces" data-loc="cheats_dontSubtractVoidTraces"></label>
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                    <div class="form-check">
 | 
			
		||||
                                        <input class="form-check-input" type="checkbox" id="dontSubtractConsumables" />
 | 
			
		||||
                                        <label class="form-check-label" for="dontSubtractConsumables" data-loc="cheats_dontSubtractConsumables"></label>
 | 
			
		||||
 | 
			
		||||
@ -132,6 +132,7 @@ dict = {
 | 
			
		||||
    cheats_infiniteRegalAya: `Unendlich Reines Aya`,
 | 
			
		||||
    cheats_infiniteHelminthMaterials: `Unendlich Helminth-Materialien`,
 | 
			
		||||
    cheats_claimingBlueprintRefundsIngredients: `Fertige Blaupausen erstatten Ressourcen zurück`,
 | 
			
		||||
    cheats_dontSubtractVoidTraces: `[UNTRANSLATED] Don't Subtract Void Traces`,
 | 
			
		||||
    cheats_dontSubtractConsumables: `Verbrauchsgegenstände (Ausrüstung) nicht verbrauchen`,
 | 
			
		||||
    cheats_unlockAllShipFeatures: `Alle Schiffs-Funktionen freischalten`,
 | 
			
		||||
    cheats_unlockAllShipDecorations: `Alle Schiffsdekorationen freischalten`,
 | 
			
		||||
 | 
			
		||||
@ -131,6 +131,7 @@ dict = {
 | 
			
		||||
    cheats_infiniteRegalAya: `Infinite Regal Aya`,
 | 
			
		||||
    cheats_infiniteHelminthMaterials: `Infinite Helminth Materials`,
 | 
			
		||||
    cheats_claimingBlueprintRefundsIngredients: `Claiming Blueprint Refunds Ingredients`,
 | 
			
		||||
    cheats_dontSubtractVoidTraces: `Don't Subtract Void Traces`,
 | 
			
		||||
    cheats_dontSubtractConsumables: `Don't Subtract Consumables`,
 | 
			
		||||
    cheats_unlockAllShipFeatures: `Unlock All Ship Features`,
 | 
			
		||||
    cheats_unlockAllShipDecorations: `Unlock All Ship Decorations`,
 | 
			
		||||
 | 
			
		||||
@ -132,6 +132,7 @@ dict = {
 | 
			
		||||
    cheats_infiniteRegalAya: `Aya Real infinita`,
 | 
			
		||||
    cheats_infiniteHelminthMaterials: `Materiales Helminto infinitos`,
 | 
			
		||||
    cheats_claimingBlueprintRefundsIngredients: `Reclamar ingredientes devueltos por planos`,
 | 
			
		||||
    cheats_dontSubtractVoidTraces: `[UNTRANSLATED] Don't Subtract Void Traces`,
 | 
			
		||||
    cheats_dontSubtractConsumables: `No restar consumibles`,
 | 
			
		||||
    cheats_unlockAllShipFeatures: `Desbloquear todas las funciones de nave`,
 | 
			
		||||
    cheats_unlockAllShipDecorations: `Desbloquear todas las decoraciones de nave`,
 | 
			
		||||
 | 
			
		||||
@ -132,6 +132,7 @@ dict = {
 | 
			
		||||
    cheats_infiniteRegalAya: `Aya Raffiné infini`,
 | 
			
		||||
    cheats_infiniteHelminthMaterials: `Ressources d'Helminth infinies`,
 | 
			
		||||
    cheats_claimingBlueprintRefundsIngredients: `[UNTRANSLATED] Claiming Blueprint Refunds Ingredients`,
 | 
			
		||||
    cheats_dontSubtractVoidTraces: `[UNTRANSLATED] Don't Subtract Void Traces`,
 | 
			
		||||
    cheats_dontSubtractConsumables: `[UNTRANSLATED] Don't Subtract Consumables`,
 | 
			
		||||
    cheats_unlockAllShipFeatures: `Débloquer tous les segments du vaisseau`,
 | 
			
		||||
    cheats_unlockAllShipDecorations: `Débloquer toutes les décorations du vaisseau`,
 | 
			
		||||
 | 
			
		||||
@ -132,6 +132,7 @@ dict = {
 | 
			
		||||
    cheats_infiniteRegalAya: `Бесконечная Королевская Айя`,
 | 
			
		||||
    cheats_infiniteHelminthMaterials: `Бесконечные Выделения Гельминта`,
 | 
			
		||||
    cheats_claimingBlueprintRefundsIngredients: `[UNTRANSLATED] Claiming Blueprint Refunds Ingredients`,
 | 
			
		||||
    cheats_dontSubtractVoidTraces: `[UNTRANSLATED] Don't Subtract Void Traces`,
 | 
			
		||||
    cheats_dontSubtractConsumables: `Не уменьшать количество расходников`,
 | 
			
		||||
    cheats_unlockAllShipFeatures: `Разблокировать все функции корабля`,
 | 
			
		||||
    cheats_unlockAllShipDecorations: `Разблокировать все украшения корабля`,
 | 
			
		||||
 | 
			
		||||
@ -132,6 +132,7 @@ dict = {
 | 
			
		||||
    cheats_infiniteRegalAya: `无限御品阿耶`,
 | 
			
		||||
    cheats_infiniteHelminthMaterials: `无限Helminth材料`,
 | 
			
		||||
    cheats_claimingBlueprintRefundsIngredients: `[UNTRANSLATED] Claiming Blueprint Refunds Ingredients`,
 | 
			
		||||
    cheats_dontSubtractVoidTraces: `[UNTRANSLATED] Don't Subtract Void Traces`,
 | 
			
		||||
    cheats_dontSubtractConsumables: `[UNTRANSLATED] Don't Subtract Consumables`,
 | 
			
		||||
    cheats_unlockAllShipFeatures: `解锁所有飞船功能`,
 | 
			
		||||
    cheats_unlockAllShipDecorations: `解锁所有飞船装饰`,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user