fix: handle crafting of archwing summon for versions prior to U39
All checks were successful
Build / build (pull_request) Successful in 1m21s
All checks were successful
Build / build (pull_request) Successful in 1m21s
This commit is contained in:
parent
e267ca8f55
commit
9126357319
@ -45,6 +45,39 @@ export type WeaponTypeInternal =
|
|||||||
| "SpecialItems";
|
| "SpecialItems";
|
||||||
|
|
||||||
export const getRecipe = (uniqueName: string): IRecipe | undefined => {
|
export const getRecipe = (uniqueName: string): IRecipe | undefined => {
|
||||||
|
// Handle crafting of archwing summon for versions prior to 39.0.0 as this blueprint was removed then.
|
||||||
|
if (uniqueName == "/Lotus/Types/Recipes/EidolonRecipes/OpenArchwingSummonBlueprint") {
|
||||||
|
return {
|
||||||
|
resultType: "/Lotus/Types/Restoratives/OpenArchwingSummon",
|
||||||
|
buildPrice: 7500,
|
||||||
|
buildTime: 1800,
|
||||||
|
skipBuildTimePrice: 10,
|
||||||
|
consumeOnUse: false,
|
||||||
|
num: 1,
|
||||||
|
codexSecret: false,
|
||||||
|
alwaysAvailable: true,
|
||||||
|
ingredients: [
|
||||||
|
{
|
||||||
|
ItemType: "/Lotus/Types/Gameplay/Eidolon/Resources/IraditeItem",
|
||||||
|
ItemCount: 50
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ItemType: "/Lotus/Types/Gameplay/Eidolon/Resources/GrokdrulItem",
|
||||||
|
ItemCount: 50
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ItemType: "/Lotus/Types/Items/Fish/Eidolon/FishParts/EidolonFishOilItem",
|
||||||
|
ItemCount: 30
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ItemType: "/Lotus/Types/Items/MiscItems/Circuits",
|
||||||
|
ItemCount: 600
|
||||||
|
}
|
||||||
|
],
|
||||||
|
excludeFromMarket: true
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
return ExportRecipes[uniqueName];
|
return ExportRecipes[uniqueName];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user