diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4131c14..d38f87a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,11 +69,11 @@ jobs: - name: Rust Cache uses: Swatinem/rust-cache@v2 - - name: Test Worldstate with all features - run: cargo test --all-features - - name: Cargo build - run: cargo build --release + run: cargo build + + - name: Cargo build with all features + run: cargo build --all-features - name: Semantic Release id: release diff --git a/.gitignore b/.gitignore index c09ff11..b3f75fa 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ .vscode/settings.json .vscode/launch.json .idea/ +*.iml diff --git a/.vscode/test.code-snippets b/.vscode/test.code-snippets index a70d973..98f827d 100644 --- a/.vscode/test.code-snippets +++ b/.vscode/test.code-snippets @@ -1,78 +1,53 @@ { - // Place your warframe workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and - // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope - // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is - // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: - // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. - // Placeholders with the same ids are connected. - // Example: - "Test a model (RTObj)": { + "Test a model": { "scope": "rust", "prefix": "model_test", "body": [ "#[cfg(test)]", - "mod test {", - " use super::${1:model};", - " use crate::worldstate::{client::Client, error::ApiError};", - "", - " #[cfg(not(feature = \"multilangual\"))]", - " #[tokio::test]", - " async fn test_${1/(.*)/${1:/downcase}/}() -> Result<(), ApiError> {", - " let client = Client::new();", + "mod test_${1/(.*)/${1:/downcase}/} {", + " use rstest::rstest;", + " use serde_json::from_str;", "", - " match client.fetch::<${1:model}>().await {", - " Ok(_${1/(.*)/${1:/downcase}/}) => Ok(()),", - " Err(why) => Err(why),", - " }", + " use super::${1:model};", + " use crate::{", + " worldstate::{", + " fixtures::${1/(.*)/${1:/downcase}/}::{", + " ${1/(.*)/${1:/downcase}/},", + " ${1/(.*)/${1:/downcase}/}_en,", + " },", + " models::Queryable,", + " },", + " };", + "", + " type R = <${1:model} as Queryable>::Return;", + "", + " #[rstest]", + " fn test(${1/(.*)/${1:/downcase}/}_en: &str) {", + " from_str::(${1/(.*)/${1:/downcase}/}_en).unwrap();", " }", "", - " #[cfg(feature = \"multilangual\")]", - " #[tokio::test]", - " async fn test_${1/(.*)/${1:/downcase}/}_ml() -> Result<(), ApiError> {", - " use crate::worldstate::prelude::Language;", - "", - " let client = Client::new();", - "", - " match client.fetch_using_lang::<${1:model}>(Language::ZH).await {", - " Ok(_${1/(.*)/${1:/downcase}/}) => Ok(()),", - " Err(why) => Err(why),", - " }", + " #[rstest]", + " fn test_ml(${1/(.*)/${1:/downcase}/}: &str) {", + " from_str::(${1/(.*)/${1:/downcase}/}).unwrap();", " }", "}", ] }, - "Test a model (RTArray)": { + "Fixture": { "scope": "rust", - "prefix": "model_test_array", + "prefix": "fixture", "body": [ - "#[cfg(test)]", - "mod test {", - " use super::${1:model};", - " use crate::worldstate::{client::Client, error::ApiError};", - "", - " #[cfg(not(feature = \"multilangual\"))]", - " #[tokio::test]", - " async fn test_${1/(.*)/${1:/downcase}/}() -> Result<(), ApiError> {", - " let client = Client::new();", - "", - " match client.fetch::<${1:model}>().await {", - " Ok(_${1/(.*)/${1:/downcase}/}s) => Ok(()),", - " Err(why) => Err(why),", - " }", - " }", - "", - " #[cfg(feature = \"multilangual\")]", - " #[tokio::test]", - " async fn test_${1/(.*)/${1:/downcase}/}_ml() -> Result<(), ApiError> {", - " use crate::worldstate::prelude::Language;", - "", - " let client = Client::new();", - "", - " match client.fetch_using_lang::<${1:model}>(Language::ZH).await {", - " Ok(_${1/(.*)/${1:/downcase}/}s) => Ok(()),", - " Err(why) => Err(why),", - " }", - " }", + "use crate::fixture;", + "", + "fixture! {", + " $1,", + "r#\"", + "$2", + "\"#", + "---", + "r#\"", + "$3", + "\"#", "}", ] } diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a569aaf..a96da3d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,98 +19,3 @@ Since the `market` module is rather small and easy to understand, we'll talk abo ## Worldstate module All the models are defined via a function-like macro in the `worldstate/models` folder. - -### The `model_builder!` macro -For example, let's look at the definition for `Cetus`: -```rs -model_builder! { - :"The Information about cetus" - Cetus: "/cetusCycle", - rt = obj, - timed = true; - - :"The id of the cycle" - pub id: String, - - :"The state of Cetus (day/night)" - pub state: CetusState, -} -``` -Doc strings are made using the `:"doc here"` syntax. Followed by the `TypeName: "/endpoint_url"`. Said endpoints get concatenated via -```rs -concat!("https://api.warframestat.us/pc", $endpoint, "/?language=en") -``` -at compile time. This prevents unnecessary allocations. Of course, this doesn't work when you want to query in another language. - -When a type has this optional `: "/endpoint"`, it will implement the `Endpoint` trait like so: - -```rs -impl Endpoint for $struct_name { - fn endpoint_en() -> &'static str { - concat!("https://api.warframestat.us/pc", $endpoint, "/?language=en") - } - - #[cfg(feature = "multilangual")] - fn endpoint(language: Language) -> String { - format!( - "https://api.warframestat.us/pc{}/?language={}", - $endpoint, - String::from(language) - ) - } -} -``` - -This is followed by an `rt = obj/arr`, which tells the model in which format it is returned in. -For example, there are no more than 1 `Cetus` at a time, so the API responds with a single `Cetus` object, hence `rt = obj`. `Fissure`s on the other hand have multiple active at a time, so the API responds with an array of those fissures, hence on fissures it's `rt = arr`. - -Next is `timed = true`. This is some trickery, because models who have this set to true will get 2 fields: `activation` and `expiry`, and will additionally implement the `TimedEvent` trait. - -### Putting it all together -To understand this, lets look at the `Queryable` trait first: -```rs -pub trait Queryable: Endpoint { - type Return: DeserializeOwned; - fn query( - request_executor: &reqwest::Client, - ) -> impl std::future::Future> + Send { - async { - Ok(request_executor - .get(Self::endpoint_en()) - .send() - .await? - .json::() - .await?) - } - } - - #[cfg(feature = "multilangual")] - fn query_with_language( - ... -} -``` - -if a model has the endpoint signature (`: "/endpoint"`), the `Queryable` trait will be implemented by the macro. -Based on the `rt`, the `type Return` will either be `Self`, or `Vec`. - -Now, all the `Client`'s `fetch` does: -```rs -impl Client { - pub async fn fetch(&self) -> Result - where - T: Queryable, - { - ::query(&self.session).await - } -} -``` - -This means, depending on the type queried, you get a `Vec`, or a single `Model`. - -E.g. -```rs -let fissures: Vec = client.fetch().await?; -let cetus: Cetus = client.fetch().await?; -``` - -If you have any questions, feel free to ask on the discord, or open an issue. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 4e60f62..58661d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,26 +1,23 @@ [package] name = "warframe" version = "6.2.0" -edition = "2021" +edition = "2024" description = "An async crate to wrap Warframe's Worldstate API." readme = "./README.md" documentation = "https://docs.rs/warframe" homepage = "https://docs.rs/warframe" repository = "https://github.com/Mettwasser/warframe.rs" license = "MIT" +rust-version = "1.85" [features] -default = ["worldstate"] +default = ["market_ratelimit", "market_cache"] -full = ["worldstate_full", "market_full"] -worldstate = [] -multilangual = ["worldstate"] -worldstate_listeners = ["worldstate"] -worldstate_full = ["worldstate", "multilangual", "worldstate_listeners"] -market = [] -market_cache = ["market", "dep:moka"] -market_full = ["market", "market_cache"] +full = ["market_ratelimit", "market_cache"] + +market_ratelimit = ["dep:governor"] +market_cache = ["dep:moka"] [dependencies] tokio = { version = "1.39.3", features = ["full"] } @@ -30,14 +27,25 @@ serde = { version = "1.0.209", features = ["derive"] } serde_json = { version = "1.0.127" } serde_repr = "0.1.19" futures = "0.3.30" -log = "0.4.22" -env_logger = "0.11.5" -thiserror = "1.0.63" +thiserror = "2.0.11" moka = { version = "0.12.8", optional = true, features = ["future"] } urlencoding = "2.1.3" -derive_more = { version = "1.0.0", features = ["full"] } -serde_with = "3.11.0" +derive_more = { version = "2.0.1", features = ["full"] } +serde_with = { version = "3.11.0" } +warframe-macros = { path = "warframe-macros" } +paste = "1.0.15" +tracing = "0.1.41" +governor = { version = "0.10.0", optional = true } +derive_builder = "0.20.2" +heck = "0.5.0" + +[dev-dependencies] +rstest = "0.25.0" +tracing-subscriber = "0.3.19" + +[lints.clippy] +pedantic = "warn" -# TODO: use this lint in V7 -# [lints.clippy] -# pedantic = "warn" +[workspace] +resolver = "3" +members = ["warframe-macros", "."] diff --git a/LICENSE b/LICENSE index f7be8ec..63d20bd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 [fullname] +Copyright (c) 2023 Mettwasser Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 2b5e78b..3beb072 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,31 @@ # warframe.rs -An async crate to wrap the [Worldstate API](https://docs.warframestat.us). +An async crate to wrap the [Worldstate API](https://docs.warframestat.us) and the [warframe.market API](https://42bytes.notion.site/WFM-Api-v2-Documentation-5d987e4aa2f74b55a80db1a09932459d). Use this crate if you want to make a Warframe-related rust project that is async. ## Getting started To install, simply run `cargo add warframe`. +Note that the MSRV of this project is `1.85`. + ### Example ```rust,no_run -use warframe::worldstate::prelude::*; +use warframe::worldstate::{Client, Error, queryable::Cetus, Opposite, TimedEvent}; #[tokio::main] -async fn main() -> Result<(), ApiError> { +async fn main() -> Result<(), Error> { let client = Client::new(); - match client.fetch::().await { - Ok(cetus) => { - println!( - "It is currently {} on cetus. It will be {} in {}", - cetus.state, - cetus.state.opposite(), - cetus.eta() - ); - Ok(()) - } - Err(why) => Err(why), - } + let cetus = client.fetch::().await?; + println!( + "It is currently {} on cetus. It will be {} in {}", + cetus.state, + cetus.state.opposite(), + cetus.eta() + ); + + Ok(()) } ``` diff --git a/devtools.nu b/devtools.nu new file mode 100644 index 0000000..d04c400 --- /dev/null +++ b/devtools.nu @@ -0,0 +1,42 @@ +export def languages []: nothing -> list { + return [ + "ko" + "ru" + "de" + "fr" + "pt" + "zh-hans" + "zh-hant" + "es" + "it" + "pl" + "uk" + "en" + ] +} + +# Returns the response of a GET request to the specified endpoint +export def market_req [ + endpoint:string, # The endpoint to request + language?:string@languages # The language to request the endpoint in +]: nothing -> table { + if $language == null { + return (http get $"https://api.warframe.market/v2($endpoint)?language=en") + } else { + return (http get $"https://api.warframe.market/v2($endpoint)" --headers [Language $language]) + } +} + +# Returns the response of a GET request to the specified endpoint +export def worldstate_req [ + endpoint:string, # The endpoint to request + language?:string # The language to request the endpoint in + --no-prefix (-n) +]: nothing -> table { + let prefix = if $no_prefix { "" } else {"pc"} + if $language == null { + return (http get $"https://api.warframestat.us/($prefix)($endpoint)") + } else { + return (http get $"https://api.warframestat.us/($prefix)($endpoint)?language=($language)") + } +} \ No newline at end of file diff --git a/rustfmt.toml b/rustfmt.toml index 30d01cc..4e9dcab 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -13,3 +13,6 @@ imports_layout = "Vertical" wrap_comments = true group_imports = "StdExternalCrate" use_field_init_shorthand = true +format_macro_bodies = true +format_macro_matchers = true +# struct_field_align_threshold = 20 diff --git a/src/lib.rs b/src/lib.rs index 410f3f6..9f3918a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,20 +1,8 @@ #![doc = include_str!("../README.md")] -#[cfg(feature = "worldstate")] pub mod worldstate; -#[cfg(feature = "market")] pub mod market; -pub(crate) mod ws { - #[cfg(feature = "multilangual")] - pub(crate) use crate::worldstate::language::Language; - pub(crate) use crate::worldstate::models::{ - base::*, - macros::{ - impl_model_struct, - impl_queryable, - impl_timed_event, - }, - }; -} +// #[cfg(feature = "profile")] +// pub mod profile; diff --git a/src/market/cache.rs b/src/market/cache.rs new file mode 100644 index 0000000..6045efd --- /dev/null +++ b/src/market/cache.rs @@ -0,0 +1,40 @@ +use std::{ + collections::HashSet, + sync::Arc, +}; + +use super::models::i18n::Language; + +pub type Slugs = Arc>; + +#[derive(Debug, Clone, Hash, PartialEq, Eq, PartialOrd, Ord)] +pub struct CacheKey { + language: Language, + + /// Additional data to differentiate between different cache keys. + /// + /// This is specifically aimed at stuff like slugs. + endpoint: Arc, +} + +impl CacheKey { + pub fn new(language: Language, endpoint: &str) -> Self { + Self { + language, + endpoint: endpoint.into(), + } + } +} + +#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)] +pub enum SlugContext { + Items, + Rivens, + LichWeapons, + LichEphemeras, + SisterWeapons, + SisterEphemeras, + Locations, + Npcs, + Missions, +} diff --git a/src/market/client.rs b/src/market/client.rs index d0099de..a4fa7ee 100644 --- a/src/market/client.rs +++ b/src/market/client.rs @@ -1,318 +1,567 @@ -//! Provides a client that acts as the baseline for interacting with the market API +use std::any::type_name; -#[allow(unused_imports)] -use std::{ - sync::Arc, - time::Duration, +use derive_builder::Builder; +use reqwest::StatusCode; +use serde::de::DeserializeOwned; +#[cfg(feature = "market_cache")] +use { + super::ItemShort, + super::cache::{ + CacheKey, + SlugContext, + Slugs, + }, + super::queryable::LichWeapon, + crate::market::{ + models::{ + lich_ephemera::LichEphemera, + sister_ephemera::SisterEphemera, + sister_weapon::SisterWeapon, + }, + queryable::{ + Location, + Mission, + Npc, + }, + }, + moka::future::Cache, + std::collections::HashSet, + std::{ + any::Any, + sync::Arc, + time::Duration, + }, +}; +#[cfg(feature = "market_ratelimit")] +use { + governor::{ + DefaultDirectRateLimiter, + Quota, + }, + std::num::NonZeroU32, }; use super::{ - error::ApiError, + Error, + Order, + Queryable, + ResponseBase, + Result, + TopOrders, + UserShort, models::{ item::Item, - item_info::ItemInfo, - orders::Order, - statistic_item::{ - StatisticItem, - StatisticItemPayload, - }, + set_items::SetItems, + top_orders_query_params::TopOrdersQueryParams, + }, + queryable::{ + OrderWithUser, + Riven, }, }; +use crate::market::{ + BASE_URL, + models::i18n::Language, +}; -#[cfg(feature = "market_cache")] -#[derive(Debug, Clone, PartialEq, PartialOrd)] -#[doc = "A cached value"] -pub enum CacheValue { - /// StatisticItem - StatisticItem(Arc), - /// ItemInfo - ItemInfo(Arc), - /// Items - Items(Arc>), - /// Orders - Orders(Arc>), -} +type StdResult = std::result::Result; -/// The client -#[derive(Debug, Clone)] -#[cfg_attr(not(feature = "market_cache"), derive(Default))] +#[derive(Debug, Builder)] +#[builder(pattern = "owned")] pub struct Client { - session: reqwest::Client, + #[builder(default)] + http: reqwest::Client, + + #[cfg(feature = "market_ratelimit")] + #[builder( + setter(skip), + default = DefaultDirectRateLimiter::direct(Quota::per_second( + NonZeroU32::new(3).unwrap(), + )) + )] + ratelimiter: DefaultDirectRateLimiter, + + #[cfg(feature = "market_cache")] + #[builder( + default = Cache::builder() + .time_to_live(Duration::from_secs(600)) + .max_capacity(1000) + .build() + )] + cache: Cache>, + + #[cfg(feature = "market_cache")] + #[builder( + default = Cache::builder() + .time_to_live(Duration::from_secs(86400)) + .max_capacity(12) // 1 for each language + .build() + )] + items_cache: Cache>, + #[cfg(feature = "market_cache")] - cache: moka::future::Cache, + #[builder( + default = Cache::builder() + .time_to_live(Duration::from_secs(86400)) + .max_capacity(7) // 1 for each slug category + .build() + )] + slug_cache: Cache, } -impl Client { - /// Creates a new [Client] - pub fn new() -> Self { - Default::default() +impl Default for Client { + fn default() -> Self { + Self::new() } } -#[cfg(not(feature = "market_cache"))] impl Client { - /// Fetches the statistics of an item via its url_name - pub async fn item_statistics(&self, item_url: &str) -> Result { - let response = self - .session - .get(format!( - "https://api.warframe.market/v1/items/{item_url}/statistics" - )) - .send() - .await?; + #[must_use] + #[allow(clippy::missing_panics_doc)] + pub fn new() -> Self { + ClientBuilder::default() + .build() + .expect("default client builder should never fail") + } - if response.status().is_success() { - let json_result = response.json::().await?; - Ok(json_result.payload) - } else { - Err(response.status().into()) - } + #[must_use] + pub fn builder() -> ClientBuilder { + ClientBuilder::default() } - /// Fetches info about an item via its url_name - pub async fn item_info(&self, item_url: &str) -> Result { - let response = self - .session - .get(format!("https://api.warframe.market/v1/items/{item_url}")) - .send() - .await?; - - if response.status().is_success() { - let json_result = response - .json::() - .await?; - Ok(json_result.payload.item) - } else { - Err(response.status().into()) + #[cfg(feature = "market_cache")] + async fn get_from_cache(&self, key: &CacheKey) -> Option + where + T: 'static + Send + Sync + Clone, + { + if let Some(item) = self + .cache + .get(key) + .await + .and_then(|item| item.downcast_ref::().cloned()) + { + tracing::debug!("cache hit for {key:?}"); + return Some(item); } + + None } - /// Fetches all tradable items - pub async fn items(&self) -> Result, ApiError> { - let response = self - .session - .get("https://api.warframe.market/v1/items") - .send() - .await?; - - if response.status().is_success() { - let json_result = response - .json::() - .await?; - Ok(json_result.payload.items) - } else { - Err(response.status().into()) - } + #[cfg(feature = "market_cache")] + async fn insert_into_cache(&self, key: CacheKey, data: T) + where + T: 'static + Send + Sync + Clone, + { + tracing::debug!("cache insertion for {key:?}"); + self.cache.insert(key, Arc::new(data)).await; } - /// Fetches all orders of a specific item via its url_name - pub async fn orders(&self, item_url: &str) -> Result, ApiError> { - let response = self - .session - .get(format!( - "https://api.warframe.market/v1/items/{item_url}/orders" - )) + async fn fetch_from_api( + &self, + endpoint: &str, + language: Language, + ) -> StdResult { + self.http + .get(format!("{BASE_URL}{endpoint}")) + .header("Language", language.to_string()) .send() - .await?; - - if response.status().is_success() { - let json_result = response - .json::() - .await?; - Ok(json_result.payload.orders) - } else { - Err(response.status().into()) + .await + } + + /// Fetches the data of a queryable model. + #[allow(clippy::missing_errors_doc)] + pub async fn fetch(&self) -> Result + where + T: Queryable, + { + self.fetch_using_language::(Language::En).await + } + + /// Fetches an item by its slug. + /// + /// # Errors + /// + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_item(&self, item_slug: &impl AsRef) -> Result> { + self.fetch_item_using_language(item_slug, Language::En) + .await + } + + /// Fetches the data of a queryable model. + /// This function allows you to specify the language to use. + /// + /// Translations can be found in the i18n fields. + #[allow(clippy::missing_errors_doc)] + pub async fn fetch_using_language(&self, language: Language) -> Result + where + T: Queryable, + { + #[cfg(feature = "market_cache")] + let key = CacheKey::new(language, T::ENDPOINT); + + #[cfg(feature = "market_cache")] + if let Some(data) = self.get_from_cache::(&key).await { + return Ok(data); } + + ratelimit!(self); + + let data = T::query(&self.http, language).await?; + + #[cfg(feature = "market_cache")] + self.insert_into_cache(key, data.clone()).await; + + Ok(data) } -} -/// The cached version of the client -#[cfg(feature = "market_cache")] -pub mod cached { - pub use moka; - use moka::future::Cache; - use reqwest::Response; - - use super::*; - use crate::market::models::{ - item::ItemsPayload, - item_info::ItemInfoPayload, - orders::OrderPayload, - }; + /// Fetches an item by its slug. + /// + /// # Errors + /// + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_item_using_language( + &self, + slug: &impl AsRef, + language: Language, + ) -> Result> { + let endpoint = format!("/item/{}", slug.as_ref()); - /// Whether an item has been gotten via a cache hit or freshly fetched. - pub enum FetchResult { - /// Cache hit - Cached(CacheValue), - /// Fetched - Fetched(Result), + self.try_get_item(&endpoint, language).await } - #[cfg(feature = "market_cache")] - impl Client { - /// Creates a new client with a custom cache - pub fn new_with_cache(cache: Cache) -> Self { - Self { - session: Default::default(), - cache, - } + /// Retrieve Information on Item Sets + /// In WFM, items can either be standalone or part of a set. A set is a collection of related + /// items that are often traded together. + /// + /// - If the queried item is not part of any set, the response will contain an array with just + /// that one item. + /// - If the item is part of a set or is a set itself, the response will include an array of all + /// items within that set. + /// + /// + /// # Errors + /// See [Error](crate::market::error::Error) for more information. + pub async fn set_items_of( + &self, + slug: &impl AsRef, + language: Language, + ) -> Result> { + let endpoint = format!("/item/{}/set", slug.as_ref()); + + self.try_get_item(&endpoint, language).await + } + + /// Fetches a riven item by its slug. + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_riven_item( + &self, + slug: &impl AsRef, + language: Language, + ) -> Result> { + let endpoint = format!("/riven/weapon/{}", slug.as_ref()); + + self.try_get_item(&endpoint, language).await + } + + /// Get a list of all orders for an item from users who were online within the last 7 days. + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_orders_by_slug( + &self, + slug: &impl AsRef, + language: Language, + ) -> Result>> { + let endpoint = format!("/orders/item/{}", slug.as_ref()); + + self.try_get_item(&endpoint, language).await + } + + /// Get a specific order by its id. + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_order_by_id(&self, order_id: &str) -> Result> { + let endpoint = format!("/order/{order_id}"); + + self.try_get_item(&endpoint, Language::En).await + } + + /// Get a list of all orders for a specific user via slug. + /// + /// Returns [`None`] if the user couldn't be found. + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_user_orders_by_slug( + &self, + slug: &impl AsRef, + ) -> Result>> { + let endpoint = format!("/orders/user/{}", slug.as_ref()); + + self.try_get_item(&endpoint, Language::En).await + } + + /// Get a list of all orders for a specific user via user id. + /// + /// Returns [`None`] if the user couldn't be found. + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_user_orders_by_id(&self, user_id: &str) -> Result>> { + let endpoint = format!("/orders/userId/{user_id}"); + + self.try_get_item(&endpoint, Language::En).await + } + + /// Get a specific user by their slug. + /// + /// Returns [`None`] if the user couldn't be found. + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_user_by_slug(&self, slug: &impl AsRef) -> Result> { + let endpoint = format!("/user/{}", slug.as_ref()); + + self.try_get_item(&endpoint, Language::En).await + } + + /// Get a specific user by their id. + /// + /// Returns [`None`] if the user couldn't be found. + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + pub async fn fetch_user_by_id(&self, user_id: &str) -> Result> { + let endpoint = format!("/userId/{user_id}"); + + self.try_get_item(&endpoint, Language::En).await + } + + async fn try_get_item(&self, endpoint: &str, language: Language) -> Result> + where + T: Send + Sync + Clone + DeserializeOwned + 'static, + { + #[cfg(feature = "market_cache")] + let key = CacheKey::new(language, endpoint); + + #[cfg(feature = "market_cache")] + if let Some(data) = self.get_from_cache::(&key).await { + tracing::debug!( + "cache hit for {} with language `{}`", + type_name::(), + language + ); + return Ok(Some(data)); } - async fn get_cached_or_new(&self, url: &str) -> FetchResult { - if let Some(value) = self.cache.get(url).await { - FetchResult::Cached(value) - } else { - FetchResult::Fetched(self.session.get(url).send().await.map_err(ApiError::from)) - } + ratelimit!(self); + + let response = self.fetch_from_api(endpoint, language).await?; + + if response.status() == StatusCode::NOT_FOUND { + return Ok(None); } - /// Fetches the statistics of an item via its url_name - pub async fn item_statistics( - &self, - item_url: &str, - ) -> Result, ApiError> { - match self - .get_cached_or_new(&format!( - "https://api.warframe.market/v1/items/{item_url}/statistics" - )) - .await - { - FetchResult::Cached(value) => { - if let CacheValue::StatisticItem(item) = value { - Ok(item) - } else { - panic!("FATAL: Wrong cache insertion was made!") // TODO: Improve this error - // msg - } - } - FetchResult::Fetched(response) => { - let response = response?; - if response.status().is_success() { - let url = response.url().to_string(); - let json_result = response.json::().await?; - - let item = Arc::new(json_result.payload); - self.cache - .insert(url, CacheValue::StatisticItem(item.clone())) - .await; - Ok(item) - } else { - Err(response.status().into()) - } + let item = response.json::>().await?; + match item.data { + Some(data) => { + tracing::debug!( + "cache insertion for {} with language `{}`", + type_name::(), + language + ); + #[cfg(feature = "market_cache")] + { + self.insert_into_cache(key, data.clone()).await; } + + Ok(Some(data)) } + None => Err(Error::Api(item.error.ok_or(Error::EmptyErrorAndData)?)), } + } - /// Fetches info about an item via its url_name - pub async fn item_info(&self, item_url: &str) -> Result, ApiError> { - match self - .get_cached_or_new(&format!("https://api.warframe.market/v1/items/{item_url}")) - .await - { - FetchResult::Cached(value) => { - if let CacheValue::ItemInfo(item) = value { - Ok(item) - } else { - panic!("FATAL: Wrong cache insertion was made!") // TODO: Improve this error - // msg - } - } - FetchResult::Fetched(response) => { - let response = response?; - if response.status().is_success() { - let url = response.url().to_string(); - let json_result = response.json::().await?; - - let item = Arc::new(json_result.payload.item); - self.cache - .insert(url, CacheValue::ItemInfo(item.clone())) - .await; - Ok(item) - } else { - Err(response.status().into()) - } - } - } + /// Fetches the top orders for an item. + /// + /// For more information on the query parameters, see [the WFM docs](https://42bytes.notion.site/WFM-Api-v2-Documentation-5d987e4aa2f74b55a80db1a09932459d#1f263b87fd0a49da9ce617f46017c224). + /// + /// # Errors + /// This function will return an error if the request fails or if the API returns an error. + #[allow(clippy::missing_panics_doc)] + pub async fn fetch_top_orders( + &self, + slug: &impl AsRef, + language: Language, + query_params: TopOrdersQueryParams, + ) -> Result> { + let endpoint = format!("{BASE_URL}/orders/item/{}/top", slug.as_ref()); + + let request = self + .http + .get(endpoint) + .header("Language", language.to_string()); + + let request = query_params + .apply_to(request) + .build() + .expect("Building query parameters shouldn't fail."); + + #[cfg(feature = "market_cache")] + let key = CacheKey::new(language, request.url().as_str()); + + #[cfg(feature = "market_cache")] + if let Some(data) = self.get_from_cache::(&key).await { + tracing::debug!( + "cache hit for {} with language `{}`", + type_name::(), + language + ); + return Ok(Some(data)); } - /// Fetches all tradable items - pub async fn items(&self) -> Result>, ApiError> { - match self - .get_cached_or_new("https://api.warframe.market/v1/items") - .await - { - FetchResult::Cached(value) => { - if let CacheValue::Items(item) = value { - Ok(item) - } else { - panic!("FATAL: Wrong cache insertion was made!") // TODO: Improve this error - // msg - } - } - FetchResult::Fetched(response) => { - let response = response?; - if response.status().is_success() { - let url = response.url().to_string(); - let json_result = response.json::().await?; - - let item = Arc::new(json_result.payload.items); - self.cache - .insert(url, CacheValue::Items(item.clone())) - .await; - Ok(item) - } else { - Err(response.status().into()) - } - } - } + ratelimit!(self); + let response = self.http.execute(request).await?; + + if response.status() == StatusCode::NOT_FOUND { + return Ok(None); } - /// Fetches all orders of a specific item via its url_name - pub async fn orders(&self, item_url: &str) -> Result>, ApiError> { - match self - .get_cached_or_new(&format!( - "https://api.warframe.market/v1/items/{item_url}/orders" - )) - .await - { - FetchResult::Cached(value) => { - if let CacheValue::Orders(item) = value { - Ok(item) - } else { - panic!("FATAL: Wrong cache insertion was made!") // TODO: Improve this error - // msg - } - } - FetchResult::Fetched(response) => { - let response = response?; - if response.status().is_success() { - let url = response.url().to_string(); - let json_result = response.json::().await?; - - let item = Arc::new(json_result.payload.orders); - self.cache - .insert(url, CacheValue::Orders(item.clone())) - .await; - Ok(item) - } else { - Err(response.status().into()) - } + let item = response.json::>().await?; + match item.data { + Some(data) => { + tracing::debug!( + "cache insertion for {} with language `{}`", + type_name::(), + language + ); + #[cfg(feature = "market_cache")] + { + self.insert_into_cache(key, data.clone()).await; } + + Ok(Some(data)) } + None => Err(Error::Api(item.error.ok_or(Error::EmptyErrorAndData)?)), } } + /// Returns all available items on warframe.market. + /// + /// # Errors + /// See [Error](crate::market::error::Error) for more information. #[cfg(feature = "market_cache")] - impl Default for Client { - fn default() -> Self { - Self { - session: Default::default(), - cache: Cache::builder() - .max_capacity(10_000) - .time_to_live(Duration::from_secs(1800)) - .name("warframe_market_cache") - .build(), - } + pub async fn items(&self, language: Language) -> Result> { + #[cfg(feature = "market_cache")] + if let Some(data) = self.items_cache.get(&language).await { + tracing::debug!("cache hit for items with language `{:?}`", language); + return Ok(data); } + + ratelimit!(self); + + let response = self.fetch_from_api("/items", language).await?; + + let response_base = response.json::>>().await?; + + if let Some(error) = response_base.error { + return Err(Error::Api(error)); + } + + let items: Arc<[ItemShort]> = response_base.data.ok_or(Error::EmptyErrorAndData)?.into(); + + #[cfg(feature = "market_cache")] + { + tracing::debug!("cache insertion for items with language `{:?}`", language); + self.items_cache.insert(language, Arc::clone(&items)).await; + } + + Ok(items) + } + + #[cfg(feature = "market_cache")] + async fn get_slugs(&self, context: SlugContext) -> Result { + if let Some(data) = self.slug_cache.get(&context).await { + tracing::debug!("cache hit for slugs"); + return Ok(data); + } + + let slugs = match context { + SlugContext::Items => self + .items(Language::En) + .await? + .iter() + .map(|item| item.slug.clone()) + .collect::>(), + + SlugContext::Rivens => to_hashset!(self, Riven), + SlugContext::LichWeapons => to_hashset!(self, LichWeapon), + SlugContext::LichEphemeras => to_hashset!(self, LichEphemera), + SlugContext::SisterWeapons => to_hashset!(self, SisterWeapon), + SlugContext::SisterEphemeras => to_hashset!(self, SisterEphemera), + SlugContext::Locations => to_hashset!(self, Location), + SlugContext::Npcs => to_hashset!(self, Npc), + SlugContext::Missions => to_hashset!(self, Mission), + }; + + let slugs = Arc::new(slugs); + + tracing::debug!("cache insertion for slugs"); + self.slug_cache.insert(context, Arc::clone(&slugs)).await; + + Ok(slugs) } + + /// Why is this async? + /// + /// -> It depends on the underlying cache for items. As the fetching is async, this function has + /// to be async as well. + /// + /// IMPORTANT NOTE: + /// Slug validity is dependant on the context. For example, general weapon slugs are likely only + /// valid for the [`SlugCategory::Rivens`]. + /// + /// # Errors + /// Whenever [items](crate::market::client::Client::items) errors. + #[cfg(feature = "market_cache")] + pub async fn is_slug_valid( + &self, + context: SlugContext, + slug: &impl AsRef, + ) -> Result { + Ok(self.get_slugs(context).await?.contains(slug.as_ref())) + } + + /// Invalidates the items cache and all dependant caches (mainly the slug cache) + #[cfg(feature = "market_cache")] + pub fn invalidate_items(&self) { + self.items_cache.invalidate_all(); + self.slug_cache.invalidate_all(); + } +} + +macro_rules! ratelimit { + ($self:expr) => { + #[cfg(feature = "market_ratelimit")] + $self.ratelimiter.until_ready().await; + }; } + +use ratelimit; + +#[cfg(feature = "market_cache")] +macro_rules! to_hashset { + ($self:expr, $ty:ty) => { + $self + .fetch::<$ty>() + .await? + .iter() + .map(|item| item.slug.clone()) + .collect::>() + }; +} + +#[cfg(feature = "market_cache")] +use to_hashset; diff --git a/src/market/error.rs b/src/market/error.rs index d99f362..9adce7e 100644 --- a/src/market/error.rs +++ b/src/market/error.rs @@ -1,23 +1,21 @@ -//! This module defines error types +use thiserror::Error; -/// The market's error type -#[derive(Debug, thiserror::Error)] -pub enum ApiError { - /// An error from the sent request - #[error("Couldn't send request: {0}")] - FaultyRequest(#[from] reqwest::Error), +#[derive(Debug, Error)] +#[error(transparent)] +pub enum Error { + /// A reqwest error + Reqwest(#[from] reqwest::Error), - /// An error that occurs when the deserialization of serde_json fails - #[error("Couldn't deserialize json body: {0}")] - FailedDeserialization(#[from] serde_json::Error), + /// The [error](crate::market::models::ResponseBase::error) field of the API's base response + #[error("API responded with error: {0}")] + Api(String), - /// Any error directly from the API (status code only) - #[error("Error response from the API: {0}")] - ApiError(reqwest::StatusCode), + /// The API has an error field, which may be empty. + /// If the error field is empty, the data field should not be empty. + /// + /// This error represents the case where the both fields are empty. (should not happen though) + #[error("API responded with both an empty error and empty data")] + EmptyErrorAndData, } -impl From for ApiError { - fn from(value: reqwest::StatusCode) -> Self { - ApiError::ApiError(value) - } -} +pub type Result = std::result::Result; diff --git a/src/market/mod.rs b/src/market/mod.rs index 5f19055..50fc98d 100644 --- a/src/market/mod.rs +++ b/src/market/mod.rs @@ -1,5 +1,157 @@ //! Implementation for the market module, used to interact with the warframe.market API - -pub mod client; +//! +//! This module implements the [market V2 API](https://42bytes.notion.site/WFM-Api-v2-Documentation-5d987e4aa2f74b55a80db1a09932459d). +#[cfg(feature = "market_cache")] +pub(crate) mod cache; +mod client; pub mod error; -pub mod models; +pub(crate) mod models; + +#[cfg(feature = "market_cache")] +pub use cache::{ + SlugContext, + Slugs, +}; +pub use client::Client; +use derive_more::{ + AsRef, + Display, + Into, +}; +pub use error::{ + Error, + Result, +}; +use heck::ToSnakeCase; +pub use models::{ + Queryable, + ResponseBase, + activity::{ + Activity, + ActivityType, + }, + i18n::{ + I18N, + Language, + }, + item::{ + Item, + ItemI18N, + }, + item_short::{ + ItemShort, + ItemShortI18N, + }, + lich_ephemera::LichEphemeraI18N, + lich_quirk::LichQuirkI18N, + lich_weapon::LichWeaponI18N, + location::LocationI18N, + mission::MissionI18N, + npc::NpcI18N, + order::Order, + riven::RivenI18N, + riven_attribute::{ + RivenAttributeI18N, + Unit, + }, + riven_group::RivenGroup, + riven_type::RivenType, + set_items::SetItems, + sister_ephemera::SisterEphemeraI18N, + sister_quirk::SisterQuirkI18N, + sister_weapon::SisterWeaponI18N, + top_orders::TopOrders, + top_orders_query_params::TopOrdersQueryParams, + user_short::{ + Status, + UserShort, + }, + versions::{ + VersionApps, + VersionCollections, + }, +}; + +/// Re-export of all the models that are queryable +pub mod queryable { + pub use super::models::{ + lich_ephemera::LichEphemera, + lich_quirk::LichQuirk, + lich_weapon::LichWeapon, + location::Location, + mission::Mission, + npc::Npc, + order_with_user::OrderWithUser, + riven::Riven, + riven_attribute::RivenAttribute, + sister_ephemera::SisterEphemera, + sister_quirk::SisterQuirk, + sister_weapon::SisterWeapon, + versions::Versions, + }; +} + +pub const BASE_URL: &str = "https://api.warframe.market/v2"; + +/// This is a utility newtype struct to help convert user inputs (such as `Acceltra Prime Set`) into +/// slugs (e.g. `acceltra_prime_set`). +#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Display, Into, AsRef)] +#[as_ref(str, String)] +pub struct Slug(String); + +impl Slug { + #[must_use] + pub fn new(input: &str) -> Self { + Self(input.to_snake_case()) + } + + /// Creates a new `Slug` from a raw string without converting it to snake case. + /// + /// Useful when you already checked a string, and just want the type. + #[must_use] + pub fn new_unchecked(input: &str) -> Self { + Self(input.to_string()) + } +} + +impl From for Slug { + fn from(value: String) -> Self { + Self::new(&value) + } +} + +impl From<&str> for Slug { + fn from(value: &str) -> Self { + Self::new(value) + } +} + +impl PartialEq for Slug { + fn eq(&self, other: &String) -> bool { + &self.0 == other + } +} + +impl PartialEq for Slug { + fn eq(&self, other: &str) -> bool { + self.0 == other + } +} + +impl PartialEq<&str> for Slug { + fn eq(&self, other: &&str) -> bool { + self.0 == *other + } +} + +#[cfg(test)] +mod test { + use super::Slug; + + #[test] + fn test_slug() { + assert_eq!(Slug::new("Acceltra Prime Set"), "acceltra_prime_set"); + assert_eq!(Slug::new("Mirage Prime Set"), "mirage_prime_set"); + assert_eq!(Slug::new("Riot-848 Barrel"), "riot_848_barrel"); + } +} diff --git a/src/market/models/activity.rs b/src/market/models/activity.rs new file mode 100644 index 0000000..f25d11f --- /dev/null +++ b/src/market/models/activity.rs @@ -0,0 +1,26 @@ +use serde::Deserialize; + +#[derive(Debug, Clone, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] +pub struct Activity { + /// Name of the activity (e.g., 'on mission', 'dojo'). + pub r#type: ActivityType, + /// Optional specifics about the activity (e.g., mission name, solo/squad status). + pub details: Option, + /// Timestamp of the activity start. + pub started_at: Option, +} + +#[derive(Debug, Clone, Deserialize, PartialEq, Eq, PartialOrd, Ord, Copy, Hash)] +#[serde(rename_all = "snake_case")] +pub enum ActivityType { + /// Represents a mission activity. + OnMission, + /// Represents a dojo activity. + Dojo, + + #[serde(rename = "UNKNOWN")] + Unknown, + + #[serde(rename = "")] + Empty, +} diff --git a/src/market/models/fixtures/item.json b/src/market/models/fixtures/item.json new file mode 100644 index 0000000..f0581f2 --- /dev/null +++ b/src/market/models/fixtures/item.json @@ -0,0 +1,35 @@ +{ + "apiVersion": "0.12.2", + "data": { + "id": "5a2feeb2c2c9e90cbdaa23d3", + "slug": "mirage_prime_set", + "gameRef": "/Lotus/Powersuits/Harlequin/MiragePrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "setRoot": true, + "setParts": [ + "5a2feeb2c2c9e90cbdaa23d4", + "5a2feeb2c2c9e90cbdaa23d5", + "5a2feeb2c2c9e90cbdaa23d6", + "5a2feeb2c2c9e90cbdaa23d3", + "5a2feeb1c2c9e90cbdaa23d2" + ], + "ducats": 175, + "reqMasteryRank": 0, + "tradingTax": 8000, + "tradable": true, + "i18n": { + "en": { + "name": "Mirage Prime Set", + "description": "Dazzle the opposition with this golden master of illusion and mayhem. Featuring altered mod polarities allow for greater customization.", + "wikiLink": "https://wiki.warframe.com/w/Mirage_Prime", + "icon": "items/images/en/mirage_prime_set.e7f8f484dd6ae6c35f0767fff35a5109.png", + "thumb": "items/images/en/thumbs/mirage_prime_set.e7f8f484dd6ae6c35f0767fff35a5109.128x128.png" + } + } + }, + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/items.json b/src/market/models/fixtures/items.json new file mode 100644 index 0000000..3561714 --- /dev/null +++ b/src/market/models/fixtures/items.json @@ -0,0 +1,68010 @@ +{ + "apiVersion": "0.12.2", + "data": [ + { + "id": "54aae292e7798909064f1575", + "slug": "secura_dual_cestra", + "gameRef": "/Lotus/Weapons/Syndicates/PerrinSequence/Pistols/PSDualCestra", + "tags": [ + "syndicate", + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Secura Dual Cestra", + "icon": "items/images/en/secura_dual_cestra.3d47a4ec6675ff774bb0da9b16c53e0e.png", + "thumb": "items/images/en/thumbs/secura_dual_cestra.3d47a4ec6675ff774bb0da9b16c53e0e.128x128.png" + } + } + }, + { + "id": "54ca39abe7798915c1c11e10", + "slug": "creeping_bullseye", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/CorruptedCritChanceFireRatePistol", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Creeping Bullseye", + "icon": "items/images/en/creeping_bullseye.dfcb8d21b36d9e2a2632f37c75b3532f.png", + "thumb": "items/images/en/thumbs/creeping_bullseye.dfcb8d21b36d9e2a2632f37c75b3532f.128x128.png" + } + } + }, + { + "id": "54d4c727e77989281cc7d753", + "slug": "mutalist_alad_v_assassinate_key", + "gameRef": "/Lotus/Types/Keys/InfestedAladVQuest/AssassinateInfestedAladVKey", + "tags": [ + "key" + ], + "i18n": { + "en": { + "name": "Mutalist Alad V Assassinate (Key)", + "icon": "items/images/en/mutalist_alad_v_assassinate_key.7540fb6d7ef2b2843352e32c9ff64e73.png", + "thumb": "items/images/en/thumbs/mutalist_alad_v_assassinate_key.7540fb6d7ef2b2843352e32c9ff64e73.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178b0", + "slug": "irradiating_disarm", + "gameRef": "/Lotus/Powersuits/Loki/DisarmAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "loki" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Irradiating Disarm", + "icon": "items/images/en/irradiating_disarm.cffd5ed77e1365babfd3e9559b96ebc6.png", + "thumb": "items/images/en/thumbs/irradiating_disarm.cffd5ed77e1365babfd3e9559b96ebc6.128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68cf", + "slug": "antimatter_absorb", + "gameRef": "/Lotus/Powersuits/AntiMatter/AntiMatterDropAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nova" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Antimatter Absorb", + "icon": "items/images/en/antimatter_absorb.1402d671df9b6f5ae2504d6abec4d4fd.png", + "thumb": "items/images/en/thumbs/antimatter_absorb.1402d671df9b6f5ae2504d6abec4d4fd.128x128.png" + } + } + }, + { + "id": "551085aee77989729e1416d0", + "slug": "arcane_barrier", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/InstantShieldOnDamage", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Barrier", + "icon": "items/images/en/arcane_barrier.c4b3b25fcc9c874a4bfc0f8998b9f5bd.png", + "thumb": "items/images/en/thumbs/arcane_barrier.c4b3b25fcc9c874a4bfc0f8998b9f5bd.128x128.png" + } + } + }, + { + "id": "551085c9e7798972b4a2b206", + "slug": "arcane_ice", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/FireProcResist", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Ice", + "icon": "items/images/en/arcane_ice.d3cb62ba9923dcf396c854fb857e5718.png", + "thumb": "items/images/en/thumbs/arcane_ice.d3cb62ba9923dcf396c854fb857e5718.128x128.png" + } + } + }, + { + "id": "55e797d2e7798924849dd9f0", + "slug": "telos_boltor", + "gameRef": "/Lotus/Weapons/Syndicates/ArbitersOfHexis/LongGuns/AHBoltor", + "tags": [ + "syndicate", + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Telos Boltor", + "icon": "items/images/en/telos_boltor.9a109e6b666017c81b2402e7031243b5.png", + "thumb": "items/images/en/thumbs/telos_boltor.9a109e6b666017c81b2402e7031243b5.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd899c", + "slug": "frost_prime_set", + "gameRef": "/Lotus/Powersuits/Frost/FrostPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Frost Prime Set", + "icon": "items/images/en/frost_prime_set.4f8ff8605be1afaab9a0e5cc3c67cb21.png", + "thumb": "items/images/en/thumbs/frost_prime_set.4f8ff8605be1afaab9a0e5cc3c67cb21.128x128.png" + } + } + }, + { + "id": "56a7b2a51133f656cb085d93", + "slug": "catalyzer_link", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/StatusProcWhileAimingRifleMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Catalyzer Link", + "icon": "items/images/en/catalyzer_link.8ffa520e67c52e10b51ccc1cec6b7f88.png", + "thumb": "items/images/en/thumbs/catalyzer_link.8ffa520e67c52e10b51ccc1cec6b7f88.128x128.png" + } + } + }, + { + "id": "56a7b2bb1133f656cb085d98", + "slug": "targeting_subsystem", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/AccuracyWhileAimingPistolMod", + "tags": [ + "mod", + "uncommon", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Targeting Subsystem", + "icon": "items/images/en/targeting_subsystem.bab012feb316116d1c4c66888e73a6e8.png", + "thumb": "items/images/en/thumbs/targeting_subsystem.bab012feb316116d1c4c66888e73a6e8.128x128.png" + } + } + }, + { + "id": "56aba2f78d6d183da42403c0", + "slug": "strun_wraith_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StrunWraithReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Strun Wraith Receiver", + "icon": "items/images/en/strun_wraith_receiver.0ef693321b08beb361c5a654663ecf32.png", + "thumb": "items/images/en/thumbs/strun_wraith_receiver.0ef693321b08beb361c5a654663ecf32.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "56b656d1ef0390c7e4006381", + "slug": "tectonic_fracture", + "gameRef": "/Lotus/Powersuits/Brawler/BrawlerBarrierAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "atlas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tectonic Fracture", + "icon": "items/images/en/tectonic_fracture.7c38025ee84d0e86175625030dd0a712.png", + "thumb": "items/images/en/thumbs/tectonic_fracture.7c38025ee84d0e86175625030dd0a712.128x128.png" + } + } + }, + { + "id": "57222f1c92cc365777a61c0f", + "slug": "mantis_set", + "gameRef": "/Lotus/Types/Items/Ships/InsectShip", + "tags": [ + "set" + ], + "i18n": { + "en": { + "name": "Mantis Set", + "icon": "items/images/en/mantis_set.d4716b0defc2695308eb9b5a4b18d935.png", + "thumb": "items/images/en/thumbs/mantis_set.d4716b0defc2695308eb9b5a4b18d935.128x128.png" + } + } + }, + { + "id": "5729bd02cb59ed5a9b484e8c", + "slug": "acid_shells", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/ProjectNightwatch/SobekNightwatchMod", + "tags": [ + "mod", + "uncommon", + "primary", + "sobek" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Acid Shells", + "icon": "items/images/en/acid_shells.b43df89f2ae8597841c0087d02df2314.png", + "thumb": "items/images/en/thumbs/acid_shells.b43df89f2ae8597841c0087d02df2314.128x128.png" + } + } + }, + { + "id": "5729bd0acb59ed5a9b484e8e", + "slug": "nightwatch_napalm", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/ProjectNightwatch/OgrisNightwatchMod", + "tags": [ + "mod", + "uncommon", + "primary", + "ogris" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Nightwatch Napalm", + "icon": "items/images/en/nightwatch_napalm.b05aadc47dbdbf18a8e8adb0a7dd564e.png", + "thumb": "items/images/en/thumbs/nightwatch_napalm.b05aadc47dbdbf18a8e8adb0a7dd564e.128x128.png" + } + } + }, + { + "id": "5783909ad9b6753790c89e82", + "slug": "quasar_drill", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingDualStatPunctureStatusMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Quasar Drill", + "icon": "items/images/en/quasar_drill.b72db23f1035e11a63dceb0c92f5acbe.png", + "thumb": "items/images/en/thumbs/quasar_drill.b72db23f1035e11a63dceb0c92f5acbe.128x128.png" + } + } + }, + { + "id": "5783909ed9b6753790c89e83", + "slug": "comet_blast", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingDualStatImpactStatusMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Comet Blast", + "icon": "items/images/en/comet_blast.887ff3540f0524b94f2066e6ed3ac7a9.png", + "thumb": "items/images/en/thumbs/comet_blast.887ff3540f0524b94f2066e6ed3ac7a9.128x128.png" + } + } + }, + { + "id": "578390a2d9b6753790c89e84", + "slug": "nebula_bore", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingDualStatPunctureStatusMeleeMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Nebula Bore", + "icon": "items/images/en/nebula_bore.fd708a4b4dcd2f8a9c8fc0b16a351a7d.png", + "thumb": "items/images/en/thumbs/nebula_bore.fd708a4b4dcd2f8a9c8fc0b16a351a7d.128x128.png" + } + } + }, + { + "id": "5783bee2d9b6753790c89e87", + "slug": "kaszas_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchScytheBlade", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Kaszas Blade", + "icon": "items/images/en/kaszas_blade.11baea8229af2d3500c79b829f9dfcee.png", + "thumb": "items/images/en/thumbs/kaszas_blade.11baea8229af2d3500c79b829f9dfcee.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "5783bf0ad9b6753790c89e89", + "slug": "velocitus_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchRailgunReceiver", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Velocitus Receiver", + "icon": "items/images/en/velocitus_receiver.0e2289bd3cc8bba9a0393d1fad061ab6.png", + "thumb": "items/images/en/thumbs/velocitus_receiver.0e2289bd3cc8bba9a0393d1fad061ab6.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5783bf15d9b6753790c89e8b", + "slug": "fluctus_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchRocketCrossbowBarrel", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Fluctus Barrel", + "icon": "items/images/en/fluctus_barrel.764b2148dde0c8969f748d6e0b80f957.png", + "thumb": "items/images/en/thumbs/fluctus_barrel.764b2148dde0c8969f748d6e0b80f957.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5783bf1ad9b6753790c89e8c", + "slug": "fluctus_limbs", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchRocketCrossbowStock", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Fluctus Limbs", + "icon": "items/images/en/fluctus_limbs.764b2148dde0c8969f748d6e0b80f957.png", + "thumb": "items/images/en/thumbs/fluctus_limbs.764b2148dde0c8969f748d6e0b80f957.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "5783bf20d9b6753790c89e8d", + "slug": "fluctus_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchRocketCrossbowReceiver", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Fluctus Stock", + "icon": "items/images/en/fluctus_stock.764b2148dde0c8969f748d6e0b80f957.png", + "thumb": "items/images/en/thumbs/fluctus_stock.764b2148dde0c8969f748d6e0b80f957.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5783bf27d9b6753790c89e8e", + "slug": "decurion_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchHeavyPistolsBarrel", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Decurion Barrel", + "icon": "items/images/en/decurion_barrel.5682bc698e5481541faba69246a2c248.png", + "thumb": "items/images/en/thumbs/decurion_barrel.5682bc698e5481541faba69246a2c248.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "59a48b625cd9938cfede703c", + "slug": "hydroid_prime_set", + "gameRef": "/Lotus/Powersuits/Pirate/HydroidPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Hydroid Prime Set", + "icon": "items/images/en/hydroid_prime_set.5f1abb4ef137bf0dd41565a913f5232a.png", + "thumb": "items/images/en/thumbs/hydroid_prime_set.5f1abb4ef137bf0dd41565a913f5232a.128x128.png" + } + } + }, + { + "id": "595567c18e34b5ed3cb3d9bd", + "slug": "cleanse_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponShotgunFactionDamageCorrupted", + "tags": [ + "shotgun", + "mod", + "primary", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cleanse Orokin", + "icon": "items/images/en/cleanse_corrupted.6d978baa53cf69b50a72e4128b2e0b4d.png", + "thumb": "items/images/en/thumbs/cleanse_corrupted.6d978baa53cf69b50a72e4128b2e0b4d.128x128.png" + } + } + }, + { + "id": "598b06b4ab6b61be6fec0fb4", + "slug": "kappa_beacon", + "gameRef": "/Lotus/Types/Items/MiscItems/VayHekCoordinateFragmentC", + "tags": [ + "misc" + ], + "i18n": { + "en": { + "name": "Kappa Beacon", + "icon": "items/images/en/kappa_beacon.dc1feec4f846fdd1254943ddcdac9856.png", + "thumb": "items/images/en/thumbs/kappa_beacon.dc1feec4f846fdd1254943ddcdac9856.128x128.png" + } + } + }, + { + "id": "59eba86952f90ed715e14158", + "slug": "star_crimzian", + "gameRef": "/Lotus/Types/Items/Gems/Eidolon/RareGemACutAItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Star Crimzian", + "icon": "items/images/en/star_crimzian.db39ca051236313058cc68e0f57e355c.png", + "thumb": "items/images/en/thumbs/star_crimzian.db39ca051236313058cc68e0f57e355c.128x128.png" + } + } + }, + { + "id": "5a04750c6c4655012038ddcb", + "slug": "virtuos_strike", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/IncreasedCriticalDamageOnCriticalStrike", + "tags": [ + "operator", + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Strike", + "icon": "items/images/en/virtuos_strike.9bb469736054bb8b5c4d55628d49e83e.png", + "thumb": "items/images/en/thumbs/virtuos_strike.9bb469736054bb8b5c4d55628d49e83e.128x128.png" + } + } + }, + { + "id": "5a0ef3fb10bc40007cce1c89", + "slug": "hunter_adrenaline", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hunter/WarframeHunterAdrenalineMod", + "tags": [ + "common", + "mod", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunter Adrenaline", + "icon": "items/images/en/hunter_adrenaline.4aa86a8459126574f6f7191a08cbeb84.png", + "thumb": "items/images/en/thumbs/hunter_adrenaline.4aa86a8459126574f6f7191a08cbeb84.128x128.png" + } + } + }, + { + "id": "5a5a121bdd7913052b3a0967", + "slug": "viper_wraith", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/WraithSingleViper/WraithSingleViper", + "tags": [ + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Viper Wraith", + "icon": "items/images/en/viper_wraith.47ad03fdead19969888235b7e959e426.png", + "thumb": "items/images/en/thumbs/viper_wraith.47ad03fdead19969888235b7e959e426.128x128.png" + } + } + }, + { + "id": "5a9e8667b2b6a800db67f122", + "slug": "orokin_derelict_plaza_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateSimarisDerelictHub", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Orokin Derelict Plaza Scene", + "icon": "items/images/en/orokin_derelict_plaza_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/orokin_derelict_plaza_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5a9e8669b2b6a800db67f123", + "slug": "grineer_shipyards_manufactory_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateNewLokaConveyor", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Shipyards Manufactory Scene", + "icon": "items/images/en/grineer_shipyards_manufactory_scene.bb08875906c694180fafaaa36a807957.png", + "thumb": "items/images/en/thumbs/grineer_shipyards_manufactory_scene.bb08875906c694180fafaaa36a807957.128x128.png" + } + } + }, + { + "id": "5a9e8669b2b6a800db67f124", + "slug": "infested_ship_bridge_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateRedVeilInfestedShip", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Infested Ship Bridge Scene", + "icon": "items/images/en/infested_ship_bridge_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/infested_ship_bridge_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5a9e866bb2b6a800db67f125", + "slug": "lua_nursery_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateArbitersNursery", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Lua Nursery Scene", + "icon": "items/images/en/lua_nursery_scene.577c0425c13ba40df53dc1c6787447ed.png", + "thumb": "items/images/en/thumbs/lua_nursery_scene.577c0425c13ba40df53dc1c6787447ed.128x128.png" + } + } + }, + { + "id": "5a9e8670b2b6a800db67f126", + "slug": "corpus_gas_city_conduit_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicatePerrinPipeHallway", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Corpus Gas City Conduit Scene", + "icon": "items/images/en/corpus_gas_city_conduit_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/corpus_gas_city_conduit_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5a9e8670b2b6a800db67f127", + "slug": "grineer_settlement_reactor_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateSteelMeridianCave", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Settlement Reactor Scene", + "icon": "items/images/en/grineer_settlement_reactor_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/grineer_settlement_reactor_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5a9e8677b2b6a800db67f128", + "slug": "corpus_ice_planet_wreckage_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateCephalonWreckage", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Corpus Ice Planet Wreckage Scene", + "icon": "items/images/en/corpus_ice_planet_wreckage_scene.8238c29a39c5fda61126a49b944ce9ed.png", + "thumb": "items/images/en/thumbs/corpus_ice_planet_wreckage_scene.8238c29a39c5fda61126a49b944ce9ed.128x128.png" + } + } + }, + { + "id": "5a9ed835b2b6a80133127c2c", + "slug": "eidolon_madurai_lens", + "gameRef": "/Lotus/Upgrades/Focus/AttackLensOstron", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Eidolon Madurai Lens", + "icon": "items/images/en/eidolon_madurai_lens.93dc4a7c122b9628cd72cee12ac77f3d.png", + "thumb": "items/images/en/thumbs/eidolon_madurai_lens.93dc4a7c122b9628cd72cee12ac77f3d.128x128.png" + } + } + }, + { + "id": "5a9ed835b2b6a80133127c2e", + "slug": "eidolon_vazarin_lens", + "gameRef": "/Lotus/Upgrades/Focus/DefenseLensOstron", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Eidolon Vazarin Lens", + "icon": "items/images/en/eidolon_vazarin_lens.93dc4a7c122b9628cd72cee12ac77f3d.png", + "thumb": "items/images/en/thumbs/eidolon_vazarin_lens.93dc4a7c122b9628cd72cee12ac77f3d.128x128.png" + } + } + }, + { + "id": "5a9ed835b2b6a80133127c2f", + "slug": "eidolon_unairu_lens", + "gameRef": "/Lotus/Upgrades/Focus/WardLensOstron", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Eidolon Unairu Lens", + "icon": "items/images/en/eidolon_unairu_lens.93dc4a7c122b9628cd72cee12ac77f3d.png", + "thumb": "items/images/en/thumbs/eidolon_unairu_lens.93dc4a7c122b9628cd72cee12ac77f3d.128x128.png" + } + } + }, + { + "id": "5ab1570db2b6a8044d5137c3", + "slug": "zephyr_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ZephyrPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Zephyr Prime Chassis Blueprint", + "icon": "items/images/en/zephyr_prime_chassis.4ffc19dd100b3c182beef5f1ef3d337e.png", + "thumb": "items/images/en/thumbs/zephyr_prime_chassis.4ffc19dd100b3c182beef5f1ef3d337e.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5bd05ad03ffcc700eb7cfcfd", + "slug": "mycona_colony_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicatePerrinColonist", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Mycona Colony Scene", + "icon": "items/images/en/mycona_colony_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/mycona_colony_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5bf54b483ffcc7066e7eb856", + "slug": "pax_soar", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/EyeInTheSky", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Pax Soar", + "icon": "items/images/en/pax_soar.b1cec46096b57bd8c82c974fbd376baa.png", + "thumb": "items/images/en/thumbs/pax_soar.b1cec46096b57bd8c82c974fbd376baa.128x128.png" + } + } + }, + { + "id": "5c196fad96037800ddadac14", + "slug": "redeemer_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/RedeemerPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Redeemer Prime Blade", + "icon": "items/images/en/redeemer_prime_blade.92fcede37c1ab66d22a2287dc2334731.png", + "thumb": "items/images/en/thumbs/redeemer_prime_blade.92fcede37c1ab66d22a2287dc2334731.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5c196fb096037800ddadac18", + "slug": "akjagara_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkjagaraPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akjagara Prime Receiver", + "icon": "items/images/en/akjagara_prime_receiver.5ed111e5dcb3df5d57c5411849c113e4.png", + "thumb": "items/images/en/thumbs/akjagara_prime_receiver.5ed111e5dcb3df5d57c5411849c113e4.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5c1e62d3817a0d0092fb1608", + "slug": "kitgun_riven_mod_(veiled)", + "gameRef": "/Lotus/Upgrades/Mods/Randomized/LotusModularPistolRandomModRare", + "tags": [ + "mod", + "riven_mod", + "common", + "veiled_riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Kitgun Riven Mod (Veiled)", + "icon": "items/images/en/kitgun_riven_mod_(veiled).c7cc9acb1a595ed66744e1d2b4f3bb42.png", + "thumb": "items/images/en/thumbs/kitgun_riven_mod_(veiled).c7cc9acb1a595ed66744e1d2b4f3bb42.128x128.png" + } + } + }, + { + "id": "5c3892672cc6ce00f238139d", + "slug": "spectrosiphon", + "gameRef": "/Lotus/Powersuits/Glass/GlassFragmentAugmentCard", + "tags": [ + "mod", + "gara", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Spectrosiphon", + "icon": "items/images/en/spectrosiphon.ff5e2ba6ab608c0d7beb60b497fbeb6e.png", + "thumb": "items/images/en/thumbs/spectrosiphon.ff5e2ba6ab608c0d7beb60b497fbeb6e.128x128.png" + } + } + }, + { + "id": "5c7849e22cc6ce090383e266", + "slug": "wolf_sledge_head", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ThrowingHammerHead", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Wolf Sledge Head", + "icon": "items/images/en/wolf_sledge_head.6b288aa755e84f886faa90486ed17d37.png", + "thumb": "items/images/en/thumbs/wolf_sledge_head.6b288aa755e84f886faa90486ed17d37.128x128.png", + "subIcon": "sub_icons/weapon/generic_head_128x128.png" + } + } + }, + { + "id": "5c7849e22cc6ce090383e267", + "slug": "wolf_sledge_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Hammer/ThrowingHammer", + "tags": [ + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Wolf Sledge Set", + "icon": "items/images/en/wolf_sledge_set.6b288aa755e84f886faa90486ed17d37.png", + "thumb": "items/images/en/thumbs/wolf_sledge_set.6b288aa755e84f886faa90486ed17d37.128x128.png" + } + } + }, + { + "id": "5c7849e32cc6ce090383e26d", + "slug": "orb_vallis_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileVenusLandscape", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Orb Vallis Scene", + "icon": "items/images/en/orb_vallis_scene.ec0d83fb585311c59e4dd5c3b668ca4e.png", + "thumb": "items/images/en/thumbs/orb_vallis_scene.ec0d83fb585311c59e4dd5c3b668ca4e.128x128.png" + } + } + }, + { + "id": "5d21ce43f4604c012d1e0c0e", + "slug": "zhuge_prime_grip", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZhugePrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Zhuge Prime Grip", + "icon": "items/images/en/zhuge_prime_grip.38e0e6189f1a333b382507a117b194a9.png", + "thumb": "items/images/en/thumbs/zhuge_prime_grip.38e0e6189f1a333b382507a117b194a9.128x128.png", + "subIcon": "sub_icons/weapon/prime_grip_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515652", + "slug": "freeze_force", + "gameRef": "/Lotus/Powersuits/Frost/IcicleAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "frost" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Freeze Force", + "icon": "items/images/en/freeze_force.a6ac36785cf19fbddf148ae0879a9d1d.png", + "thumb": "items/images/en/thumbs/freeze_force.a6ac36785cf19fbddf148ae0879a9d1d.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515656", + "slug": "swirling_tiger", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DualSwordCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "dual_swords" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Swirling Tiger", + "icon": "items/images/en/swirling_tiger.5431981727f51665abe320cce8fc84b4.png", + "thumb": "items/images/en/thumbs/swirling_tiger.5431981727f51665abe320cce8fc84b4.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51568d", + "slug": "quick_thinking", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarPowerToHealthOnDeathMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Quick Thinking", + "icon": "items/images/en/quick_thinking.062fbe5be0dfb26fa2f268b338cae078.png", + "thumb": "items/images/en/thumbs/quick_thinking.062fbe5be0dfb26fa2f268b338cae078.128x128.png" + } + } + }, + { + "id": "54ca431ce779891a1adb4901", + "slug": "wyrm_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/SentinelRecipes/PrimeWyrmSentinelBlueprint", + "tags": [ + "sentinel", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Wyrm Prime Blueprint", + "icon": "items/images/en/wyrm_prime_blueprint.4da3da5cc8eeef554dc3208bbb5a8f26.png", + "thumb": "items/images/en/thumbs/wyrm_prime_blueprint.4da3da5cc8eeef554dc3208bbb5a8f26.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "59f38f558c202c007335ba66", + "slug": "spring_loaded_blade", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/MeleeRangeOnProcMod", + "tags": [ + "syndicate", + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Spring-Loaded Blade", + "icon": "items/images/en/spring_loaded_blade.fd154881f2430c34f92827e152c64b29.png", + "thumb": "items/images/en/thumbs/spring_loaded_blade.fd154881f2430c34f92827e152c64b29.128x128.png" + } + } + }, + { + "id": "59f38f568c202c007335ba67", + "slug": "kinetic_diversion", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingDamageToEnergyMod", + "tags": [ + "mod", + "rare", + "archwing" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Kinetic Diversion", + "icon": "items/images/en/kinetic_diversion.ceeab7b8bfb93395c6ded1223e730aba.png", + "thumb": "items/images/en/thumbs/kinetic_diversion.ceeab7b8bfb93395c6ded1223e730aba.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d4", + "slug": "power_throw", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaivePowerthrowMod", + "tags": [ + "mod", + "rare", + "melee", + "thrown_melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Power Throw", + "icon": "items/images/en/power_throw.3f539579816deca71f6af6d661a5b08d.png", + "thumb": "items/images/en/thumbs/power_throw.3f539579816deca71f6af6d661a5b08d.128x128.png" + } + } + }, + { + "id": "59f38f588c202c007335ba68", + "slug": "fateful_truth", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPKatanaStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "nikanas", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fateful Truth", + "icon": "items/images/en/fateful_truth.7676a4b419b615a0f254bb7324b5f206.png", + "thumb": "items/images/en/thumbs/fateful_truth.7676a4b419b615a0f254bb7324b5f206.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51558e", + "slug": "malignant_force", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/PoisonEventRifleMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Malignant Force", + "icon": "items/images/en/malignant_force.3631edb8f6b00600a1cb5e5e99b5fa42.png", + "thumb": "items/images/en/thumbs/malignant_force.3631edb8f6b00600a1cb5e5e99b5fa42.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d8", + "slug": "superior_defenses", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitShieldRechargeRateMod", + "tags": [ + "mod", + "archwing", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Superior Defenses", + "icon": "items/images/en/superior_defenses.055772f100d75f2395844ad6685c78e2.png", + "thumb": "items/images/en/thumbs/superior_defenses.055772f100d75f2395844ad6685c78e2.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a3", + "slug": "energy_inversion", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitShieldMaxMod", + "tags": [ + "mod", + "archwing", + "common" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Energy Inversion", + "icon": "items/images/en/energy_inversion.7d740ef630c6614d7ae0d72789a69c7f.png", + "thumb": "items/images/en/thumbs/energy_inversion.7d740ef630c6614d7ae0d72789a69c7f.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a6", + "slug": "shattering_justice", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/SobekMod", + "tags": [ + "syndicate", + "mod", + "rare", + "primary", + "sobek" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shattering Justice", + "icon": "items/images/en/shattering_justice.12be7d056cf4cd66d202b72eb1ca480e.png", + "thumb": "items/images/en/thumbs/shattering_justice.12be7d056cf4cd66d202b72eb1ca480e.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515665", + "slug": "fast_hands", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponReloadSpeedMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fast Hands", + "icon": "items/images/en/fast_hands.3c06265d8ae1caa404ae7b20d394301b.png", + "thumb": "items/images/en/thumbs/fast_hands.3c06265d8ae1caa404ae7b20d394301b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515600", + "slug": "polar_magazine", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingWeaponFreezeDamageMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Polar Magazine", + "icon": "items/images/en/polar_magazine.b1ff9ac7249fcc44429a6fa9153236fb.png", + "thumb": "items/images/en/thumbs/polar_magazine.b1ff9ac7249fcc44429a6fa9153236fb.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515605", + "slug": "rifle_amp", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerRifleDamageAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rifle Amp", + "icon": "items/images/en/rifle_amp.393176c3d05878ea1226069551af65a0.png", + "thumb": "items/images/en/thumbs/rifle_amp.393176c3d05878ea1226069551af65a0.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515667", + "slug": "spare_parts", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelDropChanceMod", + "tags": [ + "mod", + "uncommon", + "sentinel", + "robotic" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Spare Parts", + "icon": "items/images/en/spare_parts.97af7d72ad1b2725bda7e17cc94c7e4f.png", + "thumb": "items/images/en/thumbs/spare_parts.97af7d72ad1b2725bda7e17cc94c7e4f.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515608", + "slug": "no_return", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponArmorPiercingDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "No Return", + "icon": "items/images/en/no_return.6532dbe63e3ea0fb7d8597ad46359a9b.png", + "thumb": "items/images/en/thumbs/no_return.6532dbe63e3ea0fb7d8597ad46359a9b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515668", + "slug": "vaporize", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Vaporize", + "tags": [ + "mod", + "common", + "sentinel", + "dethcube" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vaporize", + "icon": "items/images/en/vaporize.bc331504b5d2e65f346b1d2c0844ef7a.png", + "thumb": "items/images/en/thumbs/vaporize.bc331504b5d2e65f346b1d2c0844ef7a.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51560c", + "slug": "vicious_spread", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/CorruptedDamageAccuracyShotgun", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vicious Spread", + "icon": "items/images/en/vicious_spread.19c08f4fbc9b85fa04676afc1331f63b.png", + "thumb": "items/images/en/thumbs/vicious_spread.19c08f4fbc9b85fa04676afc1331f63b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515624", + "slug": "enemy_sense", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarEnemyRadarMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Enemy Sense", + "icon": "items/images/en/enemy_sense.601975f5f1d8963777585aacd6f9ba82.png", + "thumb": "items/images/en/thumbs/enemy_sense.601975f5f1d8963777585aacd6f9ba82.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155cc", + "slug": "blind_rage", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/CorruptedPowerEfficiencyWarframe", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Blind Rage", + "icon": "items/images/en/blind_rage.a3969916d438992c1b132d3c56ded7a5.png", + "thumb": "items/images/en/thumbs/blind_rage.a3969916d438992c1b132d3c56ded7a5.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d1", + "slug": "rifle_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponRifleConvertAmmoMod", + "tags": [ + "mod", + "rare", + "primary", + "assault_rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rifle Ammo Mutation", + "icon": "items/images/en/rifle_ammo_mutation.ceb8ace4467da7e032915e6330d9cf65.png", + "thumb": "items/images/en/thumbs/rifle_ammo_mutation.ceb8ace4467da7e032915e6330d9cf65.128x128.png" + } + } + }, + { + "id": "5740c16d9d238d4a03d28515", + "slug": "imperator_vandal_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ImperatorVandalBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Imperator Vandal Barrel", + "icon": "items/images/en/imperator_vandal_barrel.a7802d291f16f9dcd97afb2e69c879b6.png", + "thumb": "items/images/en/thumbs/imperator_vandal_barrel.a7802d291f16f9dcd97afb2e69c879b6.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff50", + "slug": "orthos_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimePolearmBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Orthos Prime Blade", + "icon": "items/images/en/orthos_prime_blade.049c8584708b849d1eff500b182825f2.png", + "thumb": "items/images/en/thumbs/orthos_prime_blade.049c8584708b849d1eff500b182825f2.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff74", + "slug": "loki_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LokiPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Loki Prime Systems Blueprint", + "icon": "items/images/en/loki_prime_systems.abc05c280f92196bcb688643873fbf95.png", + "thumb": "items/images/en/thumbs/loki_prime_systems.abc05c280f92196bcb688643873fbf95.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5667576ddb7c7a568a8d45c2", + "slug": "naramon_lens", + "gameRef": "/Lotus/Upgrades/Focus/TacticLens", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Naramon Lens", + "icon": "items/images/en/naramon_lens.3a08aee24f8a10e3bf4a0d1e28c34528.png", + "thumb": "items/images/en/thumbs/naramon_lens.3a08aee24f8a10e3bf4a0d1e28c34528.128x128.png" + } + } + }, + { + "id": "566759c8db7c7a568a8d45c5", + "slug": "coaction_drift", + "gameRef": "/Lotus/Upgrades/Mods/OrokinChallenge/OrokinChallengeModCollaboration", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Coaction Drift", + "icon": "items/images/en/coaction_drift.a5bbff636209c94e31a080e860cf19e3.png", + "thumb": "items/images/en/thumbs/coaction_drift.a5bbff636209c94e31a080e860cf19e3.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155de", + "slug": "shotgun_savvy", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponStunChanceMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shotgun Savvy", + "icon": "items/images/en/shotgun_savvy.ab720d50e1f812fdd35cd695701e31b6.png", + "thumb": "items/images/en/thumbs/shotgun_savvy.ab720d50e1f812fdd35cd695701e31b6.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e5", + "slug": "volcanic_edge", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/FireEventMeleeMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Volcanic Edge", + "icon": "items/images/en/volcanic_edge.9c1e4796e7e9c52e16d5a85d353e58d7.png", + "thumb": "items/images/en/thumbs/volcanic_edge.9c1e4796e7e9c52e16d5a85d353e58d7.128x128.png" + } + } + }, + { + "id": "5527a279e77989205639861f", + "slug": "odonata_prime_harness_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/PrimeArchwing/PrimeArchwingChassisBlueprint", + "tags": [ + "component", + "prime", + "archwing", + "blueprint" + ], + "i18n": { + "en": { + "name": "Odonata Prime Harness Blueprint", + "icon": "items/images/en/odonata_prime_harness.9087f5267b49dee37c38d36f57387753.png", + "thumb": "items/images/en/thumbs/odonata_prime_harness.9087f5267b49dee37c38d36f57387753.128x128.png", + "subIcon": "sub_icons/archwing/prime_chassis_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a520", + "slug": "secondary_wind", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/HealthRegenonKillPistolMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Secondary Wind", + "icon": "items/images/en/secondary_wind.25beb8a667f2ed313f55350fcda1620c.png", + "thumb": "items/images/en/thumbs/secondary_wind.25beb8a667f2ed313f55350fcda1620c.128x128.png" + } + } + }, + { + "id": "5527a288e77989205f31e525", + "slug": "odonata_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/PrimeArchwing/PrimeArchwingSystemsBlueprint", + "tags": [ + "component", + "prime", + "archwing", + "blueprint" + ], + "i18n": { + "en": { + "name": "Odonata Prime Systems Blueprint", + "icon": "items/images/en/odonata_prime_systems.9087f5267b49dee37c38d36f57387753.png", + "thumb": "items/images/en/thumbs/odonata_prime_systems.9087f5267b49dee37c38d36f57387753.128x128.png", + "subIcon": "sub_icons/archwing/prime_systems_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f4", + "slug": "point_strike", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponCritChanceMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Point Strike", + "icon": "items/images/en/point_strike.daf4a843bb0b729029dcf70c64647cca.png", + "thumb": "items/images/en/thumbs/point_strike.daf4a843bb0b729029dcf70c64647cca.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a521", + "slug": "soaring_strike", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/FasterChargeInAirBowMod", + "tags": [ + "primary", + "pvp", + "rare", + "bow", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Soaring Strike", + "icon": "items/images/en/soaring_strike.48fce1e9da8153d46db2bfa41fa245bc.png", + "thumb": "items/images/en/thumbs/soaring_strike.48fce1e9da8153d46db2bfa41fa245bc.128x128.png" + } + } + }, + { + "id": "554d3af4e77989420d3de2a2", + "slug": "pummel", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponEventPistolImpactDamageMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pummel", + "icon": "items/images/en/pummel.ebfb7032904e901422b7cdb346c7d55b.png", + "thumb": "items/images/en/thumbs/pummel.ebfb7032904e901422b7cdb346c7d55b.128x128.png" + } + } + }, + { + "id": "5783bf10d9b6753790c89e8a", + "slug": "velocitus_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchRailgunStock", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Velocitus Stock", + "icon": "items/images/en/velocitus_stock.0e2289bd3cc8bba9a0393d1fad061ab6.png", + "thumb": "items/images/en/thumbs/velocitus_stock.0e2289bd3cc8bba9a0393d1fad061ab6.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "578d33bf34003bbbb9e20924", + "slug": "rathbone_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchHammerHandle", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Rathbone Handle", + "icon": "items/images/en/rathbone_handle.7e6a0db9a09fae95a9f6a4e96b1f0979.png", + "thumb": "items/images/en/thumbs/rathbone_handle.7e6a0db9a09fae95a9f6a4e96b1f0979.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "578d33bf34003bbbb9e20925", + "slug": "rathbone_head", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchHammerHead", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Rathbone Head", + "icon": "items/images/en/rathbone_head.7e6a0db9a09fae95a9f6a4e96b1f0979.png", + "thumb": "items/images/en/thumbs/rathbone_head.7e6a0db9a09fae95a9f6a4e96b1f0979.128x128.png", + "subIcon": "sub_icons/weapon/generic_head_128x128.png" + } + } + }, + { + "id": "57962daf19aaba0b00a9b1b0", + "slug": "latron_wraith_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatronWraithBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Latron Wraith Barrel", + "icon": "items/images/en/latron_wraith_barrel.57295b3f36571ea8ea47471d7a70caea.png", + "thumb": "items/images/en/thumbs/latron_wraith_barrel.57295b3f36571ea8ea47471d7a70caea.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c7", + "slug": "heated_charge", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponFireDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Heated Charge", + "icon": "items/images/en/heated_charge.49a85d4cb5d62cd1e7828ad7f418a61c.png", + "thumb": "items/images/en/thumbs/heated_charge.49a85d4cb5d62cd1e7828ad7f418a61c.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156cf", + "slug": "system_reroute", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitAbilityEfficiencyMod", + "tags": [ + "mod", + "archwing", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "System Reroute", + "icon": "items/images/en/system_reroute.6a07c1195da733426a0512cbf7d17264.png", + "thumb": "items/images/en/thumbs/system_reroute.6a07c1195da733426a0512cbf7d17264.128x128.png" + } + } + }, + { + "id": "591844575c170664fbd37eb5", + "slug": "gorgon_wraith_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GorgonWraithReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Gorgon Wraith Receiver", + "icon": "items/images/en/gorgon_wraith_receiver.2fe2c6cae89adbecbba049aafcd664d7.png", + "thumb": "items/images/en/thumbs/gorgon_wraith_receiver.2fe2c6cae89adbecbba049aafcd664d7.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa23", + "slug": "calculated_shot", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/HeadShot", + "tags": [ + "mod", + "common", + "sentinel", + "diriga" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Calculated Shot", + "icon": "items/images/en/calculated_shot.083e6571a4d27ca0ba592ce5bc617f69.png", + "thumb": "items/images/en/thumbs/calculated_shot.083e6571a4d27ca0ba592ce5bc617f69.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f9", + "slug": "vigor", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/VigorMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vigor", + "icon": "items/images/en/vigor.f6d82ca2f863b300f3e53296976f9c81.png", + "thumb": "items/images/en/thumbs/vigor.f6d82ca2f863b300f3e53296976f9c81.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff47", + "slug": "hikou_prime_pouch", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeHikouHolster", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Hikou Prime Pouch", + "icon": "items/images/en/hikou_prime_pouch.cd5cefce60a4e85c15614139a8ee9400.png", + "thumb": "items/images/en/thumbs/hikou_prime_pouch.cd5cefce60a4e85c15614139a8ee9400.128x128.png", + "subIcon": "sub_icons/weapon/prime_holster_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff59", + "slug": "reaper_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeScytheBlueprint", + "tags": [ + "prime", + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Reaper Prime Blueprint", + "icon": "items/images/en/reaper_prime_blueprint.4e1d36812203a97fd0191930485b1095.png", + "thumb": "items/images/en/thumbs/reaper_prime_blueprint.4e1d36812203a97fd0191930485b1095.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54aaf153e779892a1bb42966", + "slug": "arcane_thrak_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Rhino/RhinoHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Thrak Helmet", + "icon": "items/images/en/arcane_thrak_rhino_helmet.b4ecbae748043d7c5b1105e6d7184115.png", + "thumb": "items/images/en/thumbs/arcane_thrak_rhino_helmet.b4ecbae748043d7c5b1105e6d7184115.128x128.png" + } + } + }, + { + "id": "54c68686e7798913c1042b4b", + "slug": "primed_point_blank", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponDamageAmountModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Point Blank", + "icon": "items/images/en/primed_point_blank.205167d02b8601e3d5e56dd6e8d51649.png", + "thumb": "items/images/en/thumbs/primed_point_blank.205167d02b8601e3d5e56dd6e8d51649.128x128.png" + } + } + }, + { + "id": "56dac5945cc639de0a45c523", + "slug": "power_of_three", + "gameRef": "/Lotus/Powersuits/Ranger/RangerQuiverPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ivara" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Power Of Three", + "icon": "items/images/en/power_of_three.f147d10eef80bc05208279a4d0d44a06.png", + "thumb": "items/images/en/thumbs/power_of_three.f147d10eef80bc05208279a4d0d44a06.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff6f", + "slug": "rhino_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RhinoPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Rhino Prime Neuroptics Blueprint", + "icon": "items/images/en/rhino_prime_neuroptics.22301207f9463fe9ab215e40eb23a326.png", + "thumb": "items/images/en/thumbs/rhino_prime_neuroptics.22301207f9463fe9ab215e40eb23a326.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5911f11d97a0add8e9d5da4c", + "slug": "disarming_purity", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/PantheraMod", + "tags": [ + "syndicate", + "mod", + "rare", + "primary", + "panthera" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Disarming Purity", + "icon": "items/images/en/disarming_purity.051b3489272e846e1ea5ecc351ea9c32.png", + "thumb": "items/images/en/thumbs/disarming_purity.051b3489272e846e1ea5ecc351ea9c32.128x128.png" + } + } + }, + { + "id": "591844575c170664fbd37eb6", + "slug": "gorgon_wraith_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GorgonWraithStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Gorgon Wraith Stock", + "icon": "items/images/en/gorgon_wraith_stock.2fe2c6cae89adbecbba049aafcd664d7.png", + "thumb": "items/images/en/thumbs/gorgon_wraith_stock.2fe2c6cae89adbecbba049aafcd664d7.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "59a5cd4d5cd9938cfede7045", + "slug": "ballistica_prime_string", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBallisticaString", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ballistica Prime String", + "icon": "items/images/en/ballistica_prime_string.4ed33348008ace40406d0383f692ecac.png", + "thumb": "items/images/en/thumbs/ballistica_prime_string.4ed33348008ace40406d0383f692ecac.128x128.png", + "subIcon": "sub_icons/weapon/prime_string_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515676", + "slug": "crossing_snakes", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DualSwordCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "dual_swords" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crossing Snakes", + "icon": "items/images/en/crossing_snakes.cfbb8e6095d5810c5e11a994d31c8883.png", + "thumb": "items/images/en/thumbs/crossing_snakes.cfbb8e6095d5810c5e11a994d31c8883.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515678", + "slug": "rejuvenation", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerHealthRegenAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rejuvenation", + "icon": "items/images/en/rejuvenation.8679cf8d206d54986ff11d22983cd191.png", + "thumb": "items/images/en/thumbs/rejuvenation.8679cf8d206d54986ff11d22983cd191.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e3", + "slug": "dig", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowDigPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "sahasa_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Dig", + "icon": "items/images/en/dig.32255f0064ec32dc35c1c50a4f2585c1.png", + "thumb": "items/images/en/thumbs/dig.32255f0064ec32dc35c1c50a4f2585c1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515679", + "slug": "shredder", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponSlashDamageMod", + "tags": [ + "common", + "shotgun", + "mod", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shredder", + "icon": "items/images/en/shredder.7818adce2fe9cd94d57d98b2e2f80b60.png", + "thumb": "items/images/en/thumbs/shredder.7818adce2fe9cd94d57d98b2e2f80b60.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156f3", + "slug": "continuous_misery", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponProcTimeMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Continuous Misery", + "icon": "items/images/en/continuous_misery.d7dcb952ea18898c89c0a04c83213b8c.png", + "thumb": "items/images/en/thumbs/continuous_misery.d7dcb952ea18898c89c0a04c83213b8c.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89b0", + "slug": "vasto_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeVasto/PrimeVastoPistol", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Vasto Prime Set", + "icon": "items/images/en/vasto_prime_set.213e4b3b9b3be0f4facb77fd5242b6a4.png", + "thumb": "items/images/en/thumbs/vasto_prime_set.213e4b3b9b3be0f4facb77fd5242b6a4.128x128.png" + } + } + }, + { + "id": "54aaf1d2e77989786a5f748b", + "slug": "arcane_avalon_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Excalibur/ExcaliburHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Avalon Helmet", + "icon": "items/images/en/arcane_avalon_excalibur_helmet.6402c0034a70874b863f42099eb9b3a1.png", + "thumb": "items/images/en/thumbs/arcane_avalon_excalibur_helmet.6402c0034a70874b863f42099eb9b3a1.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156f5", + "slug": "thermite_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/FireEventRifleMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Thermite Rounds", + "icon": "items/images/en/thermite_rounds.01409c333c8c063b51cac3283ebaaa30.png", + "thumb": "items/images/en/thumbs/thermite_rounds.01409c333c8c063b51cac3283ebaaa30.128x128.png" + } + } + }, + { + "id": "54aaf1dde779897eebeee19d", + "slug": "arcane_flux_helmet", + "gameRef": "/Lotus/Upgrades/Skins/AntiMatter/AntiAltHelmet", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Flux Helmet", + "icon": "items/images/en/arcane_flux_nova_helmet.f84f4629549d4c35f148e310aa029e9f.png", + "thumb": "items/images/en/thumbs/arcane_flux_nova_helmet.f84f4629549d4c35f148e310aa029e9f.128x128.png" + } + } + }, + { + "id": "54aae272e7798975bbba5f07", + "slug": "telos_akbolto", + "gameRef": "/Lotus/Weapons/Syndicates/ArbitersOfHexis/Pistols/AHAkbolto", + "tags": [ + "syndicate", + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Telos Akbolto", + "icon": "items/images/en/telos_akbolto.5ff5d38fdf6d7a931cd907ffae3d9e7d.png", + "thumb": "items/images/en/thumbs/telos_akbolto.5ff5d38fdf6d7a931cd907ffae3d9e7d.128x128.png" + } + } + }, + { + "id": "54aaf1eee779890a8654131d", + "slug": "arcane_aura_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Trinity/TrinityHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Aura Helmet", + "icon": "items/images/en/arcane_aura_trinity_helmet.d2b86ccdef9653830055ab389ef0d577.png", + "thumb": "items/images/en/thumbs/arcane_aura_trinity_helmet.d2b86ccdef9653830055ab389ef0d577.128x128.png" + } + } + }, + { + "id": "54aae2ace7798918750e63f2", + "slug": "sancti_castanas", + "gameRef": "/Lotus/Weapons/Syndicates/NewLoka/Pistols/NLCastanas", + "tags": [ + "syndicate", + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Sancti Castanas", + "icon": "items/images/en/sancti_castanas.1f0b15a73acc61516e6f3fbda5060cf6.png", + "thumb": "items/images/en/thumbs/sancti_castanas.1f0b15a73acc61516e6f3fbda5060cf6.128x128.png" + } + } + }, + { + "id": "5729bd11cb59ed5a9b484e90", + "slug": "rift_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/ProjectNightwatch/TwinBasolkNightwatchMod", + "tags": [ + "mod", + "uncommon", + "melee", + "twin_basolk" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rift Strike", + "icon": "items/images/en/rift_strike.37fa7334f532fe72ffd8c452c7791387.png", + "thumb": "items/images/en/thumbs/rift_strike.37fa7334f532fe72ffd8c452c7791387.128x128.png" + } + } + }, + { + "id": "5729bd15cb59ed5a9b484e91", + "slug": "vulcan_blitz", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/ProjectNightwatch/JatKittagNightwatchMod", + "tags": [ + "mod", + "uncommon", + "melee", + "jat_kittag" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vulcan Blitz", + "icon": "items/images/en/vulcan_blitz.c41b4bfac727e7cea0856441c3d4df7b.png", + "thumb": "items/images/en/thumbs/vulcan_blitz.c41b4bfac727e7cea0856441c3d4df7b.128x128.png" + } + } + }, + { + "id": "54aaf209e7798917c67289d4", + "slug": "arcane_gambit_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Trapper/TrapperHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Gambit Helmet", + "icon": "items/images/en/arcane_gambit_vauban_helmet.92eb7019eef72efa063361bdf487a262.png", + "thumb": "items/images/en/thumbs/arcane_gambit_vauban_helmet.92eb7019eef72efa063361bdf487a262.128x128.png" + } + } + }, + { + "id": "54aaefd0e77989436b138405", + "slug": "arcane_chlora_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Asp/AspAltHelmetB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Chlora Helmet", + "icon": "items/images/en/arcane_chlora_saryn_helmet.142e97dacf6f8ea77e8f325358cef0d0.png", + "thumb": "items/images/en/thumbs/arcane_chlora_saryn_helmet.142e97dacf6f8ea77e8f325358cef0d0.128x128.png" + } + } + }, + { + "id": "54aaf231e77989307d9accb2", + "slug": "arcane_esprit_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Trapper/TrapperHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Esprit Helmet", + "icon": "items/images/en/arcane_esprit_vauban_helmet.7705daeedc343eb44487a0e1f3af360e.png", + "thumb": "items/images/en/thumbs/arcane_esprit_vauban_helmet.7705daeedc343eb44487a0e1f3af360e.128x128.png" + } + } + }, + { + "id": "551085ece7798972cb579c3e", + "slug": "arcane_trickery", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/InvisibilityOnFinisher", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Trickery", + "icon": "items/images/en/arcane_trickery.bec8b43aaa7a5ec1cb152f017516a69c.png", + "thumb": "items/images/en/thumbs/arcane_trickery.bec8b43aaa7a5ec1cb152f017516a69c.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec7e", + "slug": "oberon_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OberonPrimeHelmetBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Oberon Prime Neuroptics Blueprint", + "icon": "items/images/en/oberon_prime_neuroptics.d7f1623552bce11f166b715679e27022.png", + "thumb": "items/images/en/thumbs/oberon_prime_neuroptics.d7f1623552bce11f166b715679e27022.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "55158cd0e7798915e9d64c1e", + "slug": "volt_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VoltPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Volt Prime Neuroptics Blueprint", + "icon": "items/images/en/volt_prime_neuroptics.9481daa3eb02aaec1108cdbeeaeea159.png", + "thumb": "items/images/en/thumbs/volt_prime_neuroptics.9481daa3eb02aaec1108cdbeeaeea159.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54aaf265e779895081b99385", + "slug": "arcane_phoenix_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Ember/EmberHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Phoenix Helmet", + "icon": "items/images/en/arcane_phoenix_ember_helmet.60c4c41457b1b29347dfd74551684366.png", + "thumb": "items/images/en/thumbs/arcane_phoenix_ember_helmet.60c4c41457b1b29347dfd74551684366.128x128.png" + } + } + }, + { + "id": "59a5cd4d5cd9938cfede7044", + "slug": "ballistica_prime_lower_limb", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBallisticaLowerLimb", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ballistica Prime Lower Limb", + "icon": "items/images/en/ballistica_prime_lower_limb.4ed33348008ace40406d0383f692ecac.png", + "thumb": "items/images/en/thumbs/ballistica_prime_lower_limb.4ed33348008ace40406d0383f692ecac.128x128.png", + "subIcon": "sub_icons/weapon/prime_limb_128x128.png" + } + } + }, + { + "id": "55158cd9e7798915ee6bd13f", + "slug": "volt_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VoltPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Volt Prime Chassis Blueprint", + "icon": "items/images/en/volt_prime_chassis.9481daa3eb02aaec1108cdbeeaeea159.png", + "thumb": "items/images/en/thumbs/volt_prime_chassis.9481daa3eb02aaec1108cdbeeaeea159.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "59eba86952f90ed715e14157", + "slug": "marquise_veridos", + "gameRef": "/Lotus/Types/Items/Gems/Eidolon/UncommonGemACutAItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Marquise Veridos", + "icon": "items/images/en/marquise_veridos.0ff6080823e396fc6d3d5946dc192d9b.png", + "thumb": "items/images/en/thumbs/marquise_veridos.0ff6080823e396fc6d3d5946dc192d9b.128x128.png" + } + } + }, + { + "id": "54aaf284e77989627dc20627", + "slug": "arcane_reverb_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Decree/DecreeAltHelmet", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Reverb Helmet", + "icon": "items/images/en/arcane_reverb_banshee_helmet.c543a6ee57a307736eb58cb31df74935.png", + "thumb": "items/images/en/thumbs/arcane_reverb_banshee_helmet.c543a6ee57a307736eb58cb31df74935.128x128.png" + } + } + }, + { + "id": "5526aec0e779896af9418258", + "slug": "explosive_legerdemain", + "gameRef": "/Lotus/Powersuits/Harlequin/ObjectChangeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mirage" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Explosive Legerdemain", + "icon": "items/images/en/explosive_legerdemain.ff8697d62393baa23a4d78afbce373e3.png", + "thumb": "items/images/en/thumbs/explosive_legerdemain.ff8697d62393baa23a4d78afbce373e3.128x128.png" + } + } + }, + { + "id": "595567c18e34b5ed3cb3d9bc", + "slug": "smite_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeFactionDamageCorrupted", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Smite Orokin", + "icon": "items/images/en/smite_corrupted.423d5c24da5d1afc7e0efe1d91d30544.png", + "thumb": "items/images/en/thumbs/smite_corrupted.423d5c24da5d1afc7e0efe1d91d30544.128x128.png" + } + } + }, + { + "id": "54aaf29ce7798971c40870b8", + "slug": "arcane_hemlock_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Asp/AspAltHelmet", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Hemlock Helmet", + "icon": "items/images/en/arcane_hemlock_saryn_helmet.e640dccfb81244ae52998f9a44ed1a0c.png", + "thumb": "items/images/en/thumbs/arcane_hemlock_saryn_helmet.e640dccfb81244ae52998f9a44ed1a0c.128x128.png" + } + } + }, + { + "id": "5526aec0e779896af941825b", + "slug": "vampire_leech", + "gameRef": "/Lotus/Powersuits/Trinity/EnergyVampireAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "trinity" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vampire Leech", + "icon": "items/images/en/vampire_leech.97cf256f35ee533378a490c5f27e0e2e.png", + "thumb": "items/images/en/thumbs/vampire_leech.97cf256f35ee533378a490c5f27e0e2e.128x128.png" + } + } + }, + { + "id": "5d21ce47f4604c012d1e0c15", + "slug": "zhuge_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/ZhugePrimeBlueprint", + "tags": [ + "primary", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Zhuge Prime Blueprint", + "icon": "items/images/en/zhuge_prime_blueprint.38e0e6189f1a333b382507a117b194a9.png", + "thumb": "items/images/en/thumbs/zhuge_prime_blueprint.38e0e6189f1a333b382507a117b194a9.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5d21ce48f4604c012d1e0c16", + "slug": "ninkondi_prime_chain", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NinkondiPrimeChain", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ninkondi Prime Chain", + "icon": "items/images/en/ninkondi_prime_chain.d8516fa5fc9fe9518b6b9ec8fa59cb28.png", + "thumb": "items/images/en/thumbs/ninkondi_prime_chain.d8516fa5fc9fe9518b6b9ec8fa59cb28.128x128.png", + "subIcon": "sub_icons/weapon/prime_chain_128x128.png" + } + } + }, + { + "id": "5d21ce48f4604c012d1e0c17", + "slug": "zhuge_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZhugePrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Zhuge Prime Receiver", + "icon": "items/images/en/zhuge_prime_receiver.38e0e6189f1a333b382507a117b194a9.png", + "thumb": "items/images/en/thumbs/zhuge_prime_receiver.38e0e6189f1a333b382507a117b194a9.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5d21ce49f4604c012d1e0c19", + "slug": "zhuge_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeZhuge/PrimeZhugeCrossbow", + "tags": [ + "primary", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Zhuge Prime Set", + "icon": "items/images/en/zhuge_prime_set.38e0e6189f1a333b382507a117b194a9.png", + "thumb": "items/images/en/thumbs/zhuge_prime_set.38e0e6189f1a333b382507a117b194a9.128x128.png" + } + } + }, + { + "id": "5d21ce4af4604c012d1e0c1a", + "slug": "wukong_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WukongPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wukong Prime Neuroptics Blueprint", + "icon": "items/images/en/wukong_prime_neuroptics.6fa7196ae48a7a3901c35834476f3891.png", + "thumb": "items/images/en/thumbs/wukong_prime_neuroptics.6fa7196ae48a7a3901c35834476f3891.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a1", + "slug": "ruinous_extension", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponBeamDistanceMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ruinous Extension", + "icon": "items/images/en/ruinous_extension.25e7e56624d0e1dbf1197ef7834a5e24.png", + "thumb": "items/images/en/thumbs/ruinous_extension.25e7e56624d0e1dbf1197ef7834a5e24.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a2", + "slug": "savagery", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowClonedFinisherMod", + "tags": [ + "mod", + "rare", + "kubrow", + "sunika_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Savagery", + "icon": "items/images/en/savagery.c02dd408812e29360368792883093dba.png", + "thumb": "items/images/en/thumbs/savagery.c02dd408812e29360368792883093dba.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ca", + "slug": "pistol_gambit", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponCritChanceMod", + "tags": [ + "common", + "mod", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pistol Gambit", + "icon": "items/images/en/pistol_gambit.b7912cda548f169c61b0102350caa3ad.png", + "thumb": "items/images/en/thumbs/pistol_gambit.b7912cda548f169c61b0102350caa3ad.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d5", + "slug": "gleaming_blight", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/DarkDaggerMod", + "tags": [ + "syndicate", + "mod", + "melee", + "rare", + "dark_dagger" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gleaming Blight", + "icon": "items/images/en/gleaming_blight.864cbc195d8dbbdb4adfdadd56d7de13.png", + "thumb": "items/images/en/thumbs/gleaming_blight.864cbc195d8dbbdb4adfdadd56d7de13.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff6d", + "slug": "ember_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EmberPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ember Prime Neuroptics Blueprint", + "icon": "items/images/en/ember_prime_neuroptics.971255acc3f1ad8a374d236c6af1c816.png", + "thumb": "items/images/en/thumbs/ember_prime_neuroptics.971255acc3f1ad8a374d236c6af1c816.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ad", + "slug": "lingering_torment", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponProcTimeMod", + "tags": [ + "common", + "shotgun", + "mod", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Lingering Torment", + "icon": "items/images/en/lingering_torment.e63fea80ff3cb599d0840090716ad730.png", + "thumb": "items/images/en/thumbs/lingering_torment.e63fea80ff3cb599d0840090716ad730.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51558d", + "slug": "hammer_shot", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/HammerShotMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hammer Shot", + "icon": "items/images/en/hammer_shot.fb11fe7457d821871f4c92b9acea585e.png", + "thumb": "items/images/en/thumbs/hammer_shot.fb11fe7457d821871f4c92b9acea585e.128x128.png" + } + } + }, + { + "id": "5655c4b3b66f832e11abd3fb", + "slug": "primed_shotgun_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponShotgunConvertAmmoModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Shotgun Ammo Mutation", + "icon": "items/images/en/primed_shotgun_ammo_mutation.3b4752657f1d04139d6cd22039bf49d2.png", + "thumb": "items/images/en/thumbs/primed_shotgun_ammo_mutation.3b4752657f1d04139d6cd22039bf49d2.128x128.png" + } + } + }, + { + "id": "566751d35dcbc186f0536bd6", + "slug": "arcane_velocity", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/GolemArcanePistolSpeedOnCrit", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Velocity", + "icon": "items/images/en/arcane_velocity.ea37edd24f8212ce4bb283205658829b.png", + "thumb": "items/images/en/thumbs/arcane_velocity.ea37edd24f8212ce4bb283205658829b.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff72", + "slug": "nyx_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NyxPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Nyx Prime Blueprint", + "icon": "items/images/en/nyx_prime_blueprint.fd41c04c9e9bcc7e0e6963914f68f880.png", + "thumb": "items/images/en/thumbs/nyx_prime_blueprint.fd41c04c9e9bcc7e0e6963914f68f880.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "56675653f9001cd2824a6827", + "slug": "dera_vandal_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DeraVandalStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Dera Vandal Stock", + "icon": "items/images/en/dera_vandal_stock.15c5a1f8b62ab0520cf7394563f73aea.png", + "thumb": "items/images/en/thumbs/dera_vandal_stock.15c5a1f8b62ab0520cf7394563f73aea.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "5667568bf9001cd2824a6828", + "slug": "karak_wraith_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/KarakWraithBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Karak Wraith Blueprint", + "icon": "items/images/en/karak_wraith_blueprint.b26c71305a536b33e469bc4a8866adea.png", + "thumb": "items/images/en/thumbs/karak_wraith_blueprint.b26c71305a536b33e469bc4a8866adea.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff76", + "slug": "nyx_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NyxPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nyx Prime Systems Blueprint", + "icon": "items/images/en/nyx_prime_systems.fd41c04c9e9bcc7e0e6963914f68f880.png", + "thumb": "items/images/en/thumbs/nyx_prime_systems.fd41c04c9e9bcc7e0e6963914f68f880.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68d0", + "slug": "swing_line", + "gameRef": "/Lotus/Powersuits/Berserker/GrappleAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "valkyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Swing Line", + "icon": "items/images/en/swing_line.cee452dde10f83d519cb358dcfc09276.png", + "thumb": "items/images/en/thumbs/swing_line.cee452dde10f83d519cb358dcfc09276.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8999", + "slug": "dual_kamas_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeDualKamas/PrimeDualKamas", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Dual Kamas Prime Set", + "icon": "items/images/en/dual_kamas_prime_set.7d95cad6d71a59fa98902cc8bfe87da2.png", + "thumb": "items/images/en/thumbs/dual_kamas_prime_set.7d95cad6d71a59fa98902cc8bfe87da2.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a51d", + "slug": "measured_burst", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/TiberonLowRoFAiming", + "tags": [ + "primary", + "pvp", + "rare", + "tiberon", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Measured Burst", + "icon": "items/images/en/measured_burst.f125aa52c465d97d41f165fdc431d297.png", + "thumb": "items/images/en/thumbs/measured_burst.f125aa52c465d97d41f165fdc431d297.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c3", + "slug": "safeguard_switch", + "gameRef": "/Lotus/Powersuits/Loki/SwitchAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "loki" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Safeguard Switch", + "icon": "items/images/en/safeguard_switch.0d84e8aee50d18ced179eddf30cdc991.png", + "thumb": "items/images/en/thumbs/safeguard_switch.0d84e8aee50d18ced179eddf30cdc991.128x128.png" + } + } + }, + { + "id": "585a93012c2ada004f1a297e", + "slug": "prisma_shade", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/PrismaShadePowerSuit", + "tags": [ + "sentinel" + ], + "i18n": { + "en": { + "name": "Prisma Shade", + "icon": "items/images/en/prisma_shade.cc1c7bc7c621300a6af014b735ec3430.png", + "thumb": "items/images/en/thumbs/prisma_shade.cc1c7bc7c621300a6af014b735ec3430.128x128.png" + } + } + }, + { + "id": "5d322d1174bdad027da4d08e", + "slug": "gas_city_lobby_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCitySpawnTwo", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Lobby Scene", + "icon": "items/images/en/gas_city_lobby_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_lobby_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d6", + "slug": "overextended", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/CorruptedRangePowerWarframe", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Overextended", + "icon": "items/images/en/overextended.4939196d35936b87b0ba4c85cdc97bef.png", + "thumb": "items/images/en/thumbs/overextended.4939196d35936b87b0ba4c85cdc97bef.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515641", + "slug": "protect", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowShieldPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "raksa_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Protect", + "icon": "items/images/en/protect.67bdcd77355685ab67526f9c6b14c8c3.png", + "thumb": "items/images/en/thumbs/protect.67bdcd77355685ab67526f9c6b14c8c3.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178ac", + "slug": "total_eclipse", + "gameRef": "/Lotus/Powersuits/Harlequin/LightAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mirage" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Total Eclipse", + "icon": "items/images/en/total_eclipse.9d19977af2d94de19562ee54db12363c.png", + "thumb": "items/images/en/thumbs/total_eclipse.9d19977af2d94de19562ee54db12363c.128x128.png" + } + } + }, + { + "id": "54aaf2ade779897b41e2872c", + "slug": "arcane_pulse_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Volt/VoltHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Pulse Helmet", + "icon": "items/images/en/arcane_pulse_volt_helmet.bd03065877b19dee59e84a9861b9a3df.png", + "thumb": "items/images/en/thumbs/arcane_pulse_volt_helmet.bd03065877b19dee59e84a9861b9a3df.128x128.png" + } + } + }, + { + "id": "59dfeb63115f1d887cfd7abc", + "slug": "vigilante_pursuit", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Vigilante/WarframeVigilantePursuitMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vigilante Pursuit", + "icon": "items/images/en/vigilante_pursuit.332dedb5fa7b6edac656a8fd1ad10535.png", + "thumb": "items/images/en/thumbs/vigilante_pursuit.332dedb5fa7b6edac656a8fd1ad10535.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f5", + "slug": "purging_slash", + "gameRef": "/Lotus/Powersuits/Excalibur/SlashDashPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "excalibur" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Purging Slash", + "icon": "items/images/en/purging_slash.a29fe9095c4986f161bd9d79c879b5ee.png", + "thumb": "items/images/en/thumbs/purging_slash.a29fe9095c4986f161bd9d79c879b5ee.128x128.png" + } + } + }, + { + "id": "54aaf2f8e779892b01b42391", + "slug": "arcane_mag_gauss_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Mag/MagHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Mag Gauss Helmet", + "icon": "items/images/en/arcane_gauss_mag_helmet.d3fc3ff3ef176167b43cfd7c47a3b323.png", + "thumb": "items/images/en/thumbs/arcane_gauss_mag_helmet.d3fc3ff3ef176167b43cfd7c47a3b323.128x128.png" + } + } + }, + { + "id": "54aaf526e779896a8c2ecfd8", + "slug": "ancient_fusion_core", + "gameRef": "", + "tags": [ + "fusion core", + "legendary" + ], + "i18n": { + "en": { + "name": "Ancient Fusion Core", + "icon": "items/images/en/ancient_fusion_core.98f3def86e72c56c2acc352e4da3d744.webp", + "thumb": "items/images/en/thumbs/ancient_fusion_core.98f3def86e72c56c2acc352e4da3d744.128x128.webp" + } + } + }, + { + "id": "59e91860f25be4e10d36571f", + "slug": "furax_wraith_right_gauntlet", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/FuraxWraithRightGauntlet", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Furax Wraith Right Gauntlet", + "icon": "items/images/en/furax_wraith_right_gauntlet.c460830e1437c5ab3cd37e2ea51b09a9.png", + "thumb": "items/images/en/thumbs/furax_wraith_right_gauntlet.c460830e1437c5ab3cd37e2ea51b09a9.128x128.png", + "subIcon": "sub_icons/weapon/generic_gauntlet_128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848fe", + "slug": "auger_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponEventPunctureDamageMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Auger Strike", + "icon": "items/images/en/auger_strike.159c0bc73cc79d8771071597f91ccd86.png", + "thumb": "items/images/en/thumbs/auger_strike.159c0bc73cc79d8771071597f91ccd86.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff71", + "slug": "nyx_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NyxPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nyx Prime Neuroptics Blueprint", + "icon": "items/images/en/nyx_prime_neuroptics.fd41c04c9e9bcc7e0e6963914f68f880.png", + "thumb": "items/images/en/thumbs/nyx_prime_neuroptics.fd41c04c9e9bcc7e0e6963914f68f880.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff77", + "slug": "rhino_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RhinoPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Rhino Prime Blueprint", + "icon": "items/images/en/rhino_prime_blueprint.22301207f9463fe9ab215e40eb23a326.png", + "thumb": "items/images/en/thumbs/rhino_prime_blueprint.22301207f9463fe9ab215e40eb23a326.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515603", + "slug": "steady_hands", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponRecoilReductionMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Steady Hands", + "icon": "items/images/en/steady_hands.49f90c668a96a7f3346dcb6fae37ce34.png", + "thumb": "items/images/en/thumbs/steady_hands.49f90c668a96a7f3346dcb6fae37ce34.128x128.png" + } + } + }, + { + "id": "57bc9c84e506eb45ea251458", + "slug": "tigris_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeTigrisReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tigris Prime Receiver", + "icon": "items/images/en/tigris_prime_receiver.5f82721ea78697c95208b9bceb72c4a4.png", + "thumb": "items/images/en/thumbs/tigris_prime_receiver.5f82721ea78697c95208b9bceb72c4a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "56dac8cc5cc639de0a45c52c", + "slug": "energy_conversion", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/EnergyPickupGivesStrengthMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Energy Conversion", + "icon": "items/images/en/energy_conversion.429f4ab72e9e8fe4b774e9b8dbcc202c.png", + "thumb": "items/images/en/thumbs/energy_conversion.429f4ab72e9e8fe4b774e9b8dbcc202c.128x128.png" + } + } + }, + { + "id": "55a46c61e779890338bfadd8", + "slug": "arcane_resistance", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/ElectricityProcResist", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Resistance", + "icon": "items/images/en/arcane_resistance.4ca1f093ba47158b7f2641f3508e9b99.png", + "thumb": "items/images/en/thumbs/arcane_resistance.4ca1f093ba47158b7f2641f3508e9b99.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51560d", + "slug": "lethal_torrent", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/GrinderMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Lethal Torrent", + "icon": "items/images/en/lethal_torrent.5f97f70430d22026c0bbcf6030f046a8.png", + "thumb": "items/images/en/thumbs/lethal_torrent.5f97f70430d22026c0bbcf6030f046a8.128x128.png" + } + } + }, + { + "id": "56fdbd6c2e26966de716e433", + "slug": "war_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/WarBlade", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "War Blade", + "icon": "items/images/en/war_blade.79aea5cde8a32f0cdb77bc19b5d1e9a5.png", + "thumb": "items/images/en/thumbs/war_blade.79aea5cde8a32f0cdb77bc19b5d1e9a5.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f2", + "slug": "detect_vulnerability", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/WeaknessScanPrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "helios" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Detect Vulnerability", + "icon": "items/images/en/detect_vulnerability.1e4aa0b85cb5cda7139f00d183b03f84.png", + "thumb": "items/images/en/thumbs/detect_vulnerability.1e4aa0b85cb5cda7139f00d183b03f84.128x128.png" + } + } + }, + { + "id": "57c73be094b4b0f159ab5e14", + "slug": "elemental_sandstorm", + "gameRef": "/Lotus/Powersuits/Sandman/SandmanStormAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "inaros" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Elemental Sandstorm", + "icon": "items/images/en/elemental_sandstorm.5957557c1c7445897e7615c33d508a34.png", + "thumb": "items/images/en/thumbs/elemental_sandstorm.5957557c1c7445897e7615c33d508a34.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515612", + "slug": "steel_fiber", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarArmourMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Steel Fiber", + "icon": "items/images/en/steel_fiber.6826e2157afefd04342da1d857afa629.png", + "thumb": "items/images/en/thumbs/steel_fiber.6826e2157afefd04342da1d857afa629.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b9", + "slug": "magazine_extension", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleClipMaxMod", + "tags": [ + "common", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Magazine Extension", + "icon": "items/images/en/magazine_extension.29c617cc777be81858f3dee8a905a199.png", + "thumb": "items/images/en/thumbs/magazine_extension.29c617cc777be81858f3dee8a905a199.128x128.png" + } + } + }, + { + "id": "55c15473e779895de4118590", + "slug": "concealed_explosives", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/ThrowingExplosionChanceMod", + "tags": [ + "mod", + "rare", + "secondary", + "thrown" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Concealed Explosives", + "icon": "items/images/en/concealed_explosives.7c258d92086d8fff96684d6170455fe8.png", + "thumb": "items/images/en/thumbs/concealed_explosives.7c258d92086d8fff96684d6170455fe8.128x128.png" + } + } + }, + { + "id": "54c685c4e77989137eb0f9be", + "slug": "primed_ravage", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponCritDamageModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Ravage", + "icon": "items/images/en/primed_ravage.a0c43849bce0a4b4b68b54a3d799d314.png", + "thumb": "items/images/en/thumbs/primed_ravage.a0c43849bce0a4b4b68b54a3d799d314.128x128.png" + } + } + }, + { + "id": "55c154a7e779895e0186c0a4", + "slug": "depleted_reload", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/CorruptedReloadSpeedMaxClipRifle", + "tags": [ + "sniper", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Depleted Reload", + "icon": "items/images/en/depleted_reload.0eeb2b2d90c62036d54c8121d291b916.png", + "thumb": "items/images/en/thumbs/depleted_reload.0eeb2b2d90c62036d54c8121d291b916.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192116", + "slug": "helios_prime_carapace", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeHeliosCarapace", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Helios Prime Carapace", + "icon": "items/images/en/helios_prime_carapace.625b7c74ea5dd61b1840f8094df7648a.png", + "thumb": "items/images/en/thumbs/helios_prime_carapace.625b7c74ea5dd61b1840f8094df7648a.128x128.png", + "subIcon": "sub_icons/sentinel/prime_carapace_128x128.png" + } + } + }, + { + "id": "54ca4337e779891a2e3fbc83", + "slug": "wyrm_prime_systems", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeWyrmSystems", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Wyrm Prime Systems", + "icon": "items/images/en/wyrm_prime_systems.4da3da5cc8eeef554dc3208bbb5a8f26.png", + "thumb": "items/images/en/thumbs/wyrm_prime_systems.4da3da5cc8eeef554dc3208bbb5a8f26.128x128.png", + "subIcon": "sub_icons/sentinel/prime_systems_128x128.png" + } + } + }, + { + "id": "56153692b66f836f7d649936", + "slug": "trinity_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TrinityPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Trinity Prime Neuroptics Blueprint", + "icon": "items/images/en/trinity_prime_neuroptics.4115dba418ab8ee70197a7fdaee8da76.png", + "thumb": "items/images/en/thumbs/trinity_prime_neuroptics.4115dba418ab8ee70197a7fdaee8da76.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68ce", + "slug": "mind_freak", + "gameRef": "/Lotus/Powersuits/Jade/MindControlAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nyx" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mind Freak", + "icon": "items/images/en/mind_freak.9fa9ad270ea0f0f491a1c49b20e621a6.png", + "thumb": "items/images/en/thumbs/mind_freak.9fa9ad270ea0f0f491a1c49b20e621a6.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff42", + "slug": "fang_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeFangHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Fang Prime Handle", + "icon": "items/images/en/fang_prime_handle.13b0c690a76382d0fbdebe84e4c509db.png", + "thumb": "items/images/en/thumbs/fang_prime_handle.13b0c690a76382d0fbdebe84e4c509db.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ff", + "slug": "streamline", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarAbilityEfficiencyMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Streamline", + "icon": "items/images/en/streamline.3e6a02f495140810eec8785b919d3fc0.png", + "thumb": "items/images/en/thumbs/streamline.3e6a02f495140810eec8785b919d3fc0.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515688", + "slug": "insulation", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageResistanceIce", + "tags": [ + "mod", + "warframe", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Insulation", + "icon": "items/images/en/insulation.0a5ab00d2d2832a87245c5532d269fcc.png", + "thumb": "items/images/en/thumbs/insulation.0a5ab00d2d2832a87245c5532d269fcc.128x128.png" + } + } + }, + { + "id": "56a7b2901133f656cb085d8f", + "slug": "pressurized_magazine", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/FireRateWhileAimingPistolMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pressurized Magazine", + "icon": "items/images/en/pressurized_magazine.daa3ea71eeb3c2b826aacc536d4b5e95.png", + "thumb": "items/images/en/thumbs/pressurized_magazine.daa3ea71eeb3c2b826aacc536d4b5e95.128x128.png" + } + } + }, + { + "id": "56dac5b05cc639de0a45c527", + "slug": "ambush_optics", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/RubicoLowZoom", + "tags": [ + "rubico", + "primary", + "pvp", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ambush Optics", + "icon": "items/images/en/ambush_optics_(rubico).95034bc198404a324392a661e7e6cd0c.png", + "thumb": "items/images/en/thumbs/ambush_optics_(rubico).95034bc198404a324392a661e7e6cd0c.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff73", + "slug": "nyx_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NyxPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nyx Prime Chassis Blueprint", + "icon": "items/images/en/nyx_prime_chassis.fd41c04c9e9bcc7e0e6963914f68f880.png", + "thumb": "items/images/en/thumbs/nyx_prime_chassis.fd41c04c9e9bcc7e0e6963914f68f880.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5526aec0e779896af941825e", + "slug": "capacitance", + "gameRef": "/Lotus/Powersuits/Volt/OverloadAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "volt" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Capacitance", + "icon": "items/images/en/capacitance.d58fa98b900e20e34c6e9efb597a8f0d.png", + "thumb": "items/images/en/thumbs/capacitance.d58fa98b900e20e34c6e9efb597a8f0d.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155fb", + "slug": "shell_compression", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponAmmoMaxMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shell Compression", + "icon": "items/images/en/shell_compression.e9dcc6c51d9f2b5fdeeb03a539b5cfea.png", + "thumb": "items/images/en/thumbs/shell_compression.e9dcc6c51d9f2b5fdeeb03a539b5cfea.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff75", + "slug": "loki_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LokiPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Loki Prime Chassis Blueprint", + "icon": "items/images/en/loki_prime_chassis.abc05c280f92196bcb688643873fbf95.png", + "thumb": "items/images/en/thumbs/loki_prime_chassis.abc05c280f92196bcb688643873fbf95.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f8", + "slug": "bore", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponEventPunctureDamageMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bore", + "icon": "items/images/en/bore.85134a49bc61d938217e3df664f0cef5.png", + "thumb": "items/images/en/thumbs/bore.85134a49bc61d938217e3df664f0cef5.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f9", + "slug": "signal_flare", + "gameRef": "/Lotus/Powersuits/Excalibur/RadialBlindPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "excalibur" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Signal Flare", + "icon": "items/images/en/signal_flare.d5e10a681a4241613eb8cb390cb1b6fa.png", + "thumb": "items/images/en/thumbs/signal_flare.d5e10a681a4241613eb8cb390cb1b6fa.128x128.png" + } + } + }, + { + "id": "55c153bfe779895d7c52cd96", + "slug": "lightning_dash", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/ElectricalParkourTwoMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Lightning Dash", + "icon": "items/images/en/lightning_dash.12ae8ab9206050f20aec9ffcd8f83aeb.png", + "thumb": "items/images/en/thumbs/lightning_dash.12ae8ab9206050f20aec9ffcd8f83aeb.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff83", + "slug": "mag_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MagPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Mag Prime Chassis Blueprint", + "icon": "items/images/en/mag_prime_chassis.2afb45373319b966737bd91cf05a813c.png", + "thumb": "items/images/en/thumbs/mag_prime_chassis.2afb45373319b966737bd91cf05a813c.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5707cc07a820909ab922558e", + "slug": "snipetron_vandal_set", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/VandalSniperRifle", + "tags": [ + "weapon", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Snipetron Vandal Set", + "icon": "items/images/en/snipetron_vandal_set.d820059db951ba5a4ac7c1d7ec8515f1.png", + "thumb": "items/images/en/thumbs/snipetron_vandal_set.d820059db951ba5a4ac7c1d7ec8515f1.128x128.png" + } + } + }, + { + "id": "55c153d3e779895d8cb3df5f", + "slug": "battering_maneuver", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/ImpactParkourTwoMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Battering Maneuver", + "icon": "items/images/en/battering_maneuver.d33bb84231ed2212119a5cef817ba5f7.png", + "thumb": "items/images/en/thumbs/battering_maneuver.d33bb84231ed2212119a5cef817ba5f7.128x128.png" + } + } + }, + { + "id": "55c153e0e779895d97f9cca1", + "slug": "piercing_step", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/PunctureParkourTwoMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Piercing Step", + "icon": "items/images/en/piercing_step.8db8fa869c05b3c7e14beadeb14719b5.png", + "thumb": "items/images/en/thumbs/piercing_step.8db8fa869c05b3c7e14beadeb14719b5.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515617", + "slug": "fireball_frenzy", + "gameRef": "/Lotus/Powersuits/Ember/FireBallAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ember" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fireball Frenzy", + "icon": "items/images/en/fireball_frenzy.8d225c9bcd337378c90f8d57849c1c60.png", + "thumb": "items/images/en/thumbs/fireball_frenzy.8d225c9bcd337378c90f8d57849c1c60.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b8", + "slug": "lasting_purity", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/VulkarMod", + "tags": [ + "syndicate", + "mod", + "rare", + "primary", + "vulkar" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lasting Purity", + "icon": "items/images/en/lasting_purity.702ff6d12dcff064a4b9d24ba344260c.png", + "thumb": "items/images/en/thumbs/lasting_purity.702ff6d12dcff064a4b9d24ba344260c.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515618", + "slug": "energy_siphon", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerEnergyRegenAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Energy Siphon", + "icon": "items/images/en/energy_siphon.c8633b0c81bfa7eb93afe95cc861663d.png", + "thumb": "items/images/en/thumbs/energy_siphon.c8633b0c81bfa7eb93afe95cc861663d.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51561a", + "slug": "stalk", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowCloakPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "huras_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Stalk", + "icon": "items/images/en/stalk.8b4fd08cc1127272a4cab4545c170187.png", + "thumb": "items/images/en/thumbs/stalk.8b4fd08cc1127272a4cab4545c170187.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51561d", + "slug": "magazine_warp", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponClipMaxMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Magazine Warp", + "icon": "items/images/en/magazine_warp.e2700e1b5c6c0028cab3b6a249068f69.png", + "thumb": "items/images/en/thumbs/magazine_warp.e2700e1b5c6c0028cab3b6a249068f69.128x128.png" + } + } + }, + { + "id": "576459d33ae92d545fd1e7ba", + "slug": "infiltrate", + "gameRef": "/Lotus/Powersuits/Ranger/RangerStealAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ivara" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Infiltrate", + "icon": "items/images/en/infiltrate.c37581f44e0fd82263fee16fb0dfd3bd.png", + "thumb": "items/images/en/thumbs/infiltrate.c37581f44e0fd82263fee16fb0dfd3bd.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515643", + "slug": "coiling_viper", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/WhipCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "whips" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Coiling Viper", + "icon": "items/images/en/coiling_viper.aa153941b8afd949e633825037789622.png", + "thumb": "items/images/en/thumbs/coiling_viper.aa153941b8afd949e633825037789622.128x128.png" + } + } + }, + { + "id": "5765ab4947837cf09eec1f02", + "slug": "primed_pressure_point", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponMeleeDamageModExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Pressure Point", + "icon": "items/images/en/primed_pressure_point.57758ed051424155155fb94824224ab4.png", + "thumb": "items/images/en/thumbs/primed_pressure_point.57758ed051424155155fb94824224ab4.128x128.png" + } + } + }, + { + "id": "5783908cd9b6753790c89e7f", + "slug": "cold_snap", + "gameRef": "/Lotus/Powersuits/Archwing/StealthJetPack/GravInstabilityAugmentCard", + "tags": [ + "mod", + "rare", + "archwing", + "itzal" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cold Snap", + "icon": "items/images/en/cold_snap.1441ca53556ca81b4b6b60c09b02e1d7.png", + "thumb": "items/images/en/thumbs/cold_snap.1441ca53556ca81b4b6b60c09b02e1d7.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515644", + "slug": "hells_chamber", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponFireIterationsMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hell's Chamber", + "icon": "items/images/en/hells_chamber.eb3ff423fe41efafd3b7f7565a0c4d59.png", + "thumb": "items/images/en/thumbs/hells_chamber.eb3ff423fe41efafd3b7f7565a0c4d59.128x128.png" + } + } + }, + { + "id": "5911f11d97a0add8e9d5da4f", + "slug": "stockpiled_blight", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/KunaiMod", + "tags": [ + "syndicate", + "secondary", + "mod", + "rare", + "kunai" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Stockpiled Blight", + "icon": "items/images/en/stockpiled_blight.3231785f2d66f6d8a1a452aacffb0d3d.png", + "thumb": "items/images/en/thumbs/stockpiled_blight.3231785f2d66f6d8a1a452aacffb0d3d.128x128.png" + } + } + }, + { + "id": "59a5cd4d5cd9938cfede7042", + "slug": "nami_skyla_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeNamiSkylaHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Nami Skyla Prime Handle", + "icon": "items/images/en/nami_skyla_prime_handle.d83bcdd72463d5dd1f78faea07ff02a4.png", + "thumb": "items/images/en/thumbs/nami_skyla_prime_handle.d83bcdd72463d5dd1f78faea07ff02a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51560b", + "slug": "fracturing_wind", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/FistCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "fists" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fracturing Wind", + "icon": "items/images/en/fracturing_wind.e7bf953398db71b7b83cb75652cf53a3.png", + "thumb": "items/images/en/thumbs/fracturing_wind.e7bf953398db71b7b83cb75652cf53a3.128x128.png" + } + } + }, + { + "id": "5914639e6b46c14200a37888", + "slug": "fulmination", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/AmbulasEvent/SecondaryExplosionRadiusMod", + "tags": [ + "mod", + "pistol", + "secondary", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fulmination", + "icon": "items/images/en/fulmination.dd67c2c78640367e5e6cfd94435cf100.png", + "thumb": "items/images/en/thumbs/fulmination.dd67c2c78640367e5e6cfd94435cf100.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51562f", + "slug": "ammo_drum", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponAmmoMaxMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ammo Drum", + "icon": "items/images/en/ammo_drum.2c5e508c9c2f5b8d199bccbc8dde9491.png", + "thumb": "items/images/en/thumbs/ammo_drum.2c5e508c9c2f5b8d199bccbc8dde9491.128x128.png" + } + } + }, + { + "id": "588247dcefa102dc532bd503", + "slug": "sovereign_outcast", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/TonfaCmbTwoMeleeTree", + "tags": [ + "tonfas", + "mod", + "stance", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sovereign Outcast", + "icon": "items/images/en/sovereign_outcast.c7057a1044205cdfd9422199b5d76d41.png", + "thumb": "items/images/en/thumbs/sovereign_outcast.c7057a1044205cdfd9422199b5d76d41.128x128.png" + } + } + }, + { + "id": "59dfeb5c115f1d887cfd7ab5", + "slug": "gladiator_might", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Gladiator/MeleeGladiatorMightMod", + "tags": [ + "mod", + "uncommon", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Gladiator Might", + "icon": "items/images/en/gladiator_might.e0d89210119ac4e43b4bf5742ca590bd.png", + "thumb": "items/images/en/thumbs/gladiator_might.e0d89210119ac4e43b4bf5742ca590bd.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515631", + "slug": "heavy_impact", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarFallingImpactMod", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Heavy Impact", + "icon": "items/images/en/heavy_impact.a1f9a98080f086c1d95d77d771aeefc4.png", + "thumb": "items/images/en/thumbs/heavy_impact.a1f9a98080f086c1d95d77d771aeefc4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51563f", + "slug": "thunderbolt", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/BowExplosionChanceMod", + "tags": [ + "mod", + "rare", + "primary", + "bow" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Thunderbolt", + "icon": "items/images/en/thunderbolt.0603c4ed87ce8ab6ce79a27205d081a4.png", + "thumb": "items/images/en/thumbs/thunderbolt.0603c4ed87ce8ab6ce79a27205d081a4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51564c", + "slug": "pool_of_life", + "gameRef": "/Lotus/Powersuits/Trinity/WellOfLifeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "trinity" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pool Of Life", + "icon": "items/images/en/pool_of_life.86c8aad96e3d49f9d2dbb0a3be6d7ae1.png", + "thumb": "items/images/en/thumbs/pool_of_life.86c8aad96e3d49f9d2dbb0a3be6d7ae1.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a3", + "slug": "entropy_burst", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/SupraMod", + "tags": [ + "syndicate", + "mod", + "supra", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Entropy Burst", + "icon": "items/images/en/entropy_burst.66a8a280f2d56a5bdd29607869a147c3.png", + "thumb": "items/images/en/thumbs/entropy_burst.66a8a280f2d56a5bdd29607869a147c3.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a4", + "slug": "fatal_attraction", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Bait", + "tags": [ + "mod", + "common", + "sentinel", + "djinn" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fatal Attraction", + "icon": "items/images/en/fatal_attraction.7de9c47ff8aed7bcc0f99943095c45e2.png", + "thumb": "items/images/en/thumbs/fatal_attraction.7de9c47ff8aed7bcc0f99943095c45e2.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a5", + "slug": "seismic_palm", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/FistCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "fists" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Seismic Palm", + "icon": "items/images/en/seismic_palm.677fc917c032bd66d51b4e7f01674943.png", + "thumb": "items/images/en/thumbs/seismic_palm.677fc917c032bd66d51b4e7f01674943.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a7", + "slug": "pressure_point", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeDamageMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pressure Point", + "icon": "items/images/en/pressure_point.e7b321fef59261144164c7dd6065c657.png", + "thumb": "items/images/en/thumbs/pressure_point.e7b321fef59261144164c7dd6065c657.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ab", + "slug": "modified_munitions", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleStatusChanceMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Modified Munitions", + "icon": "items/images/en/modified_munitions.f055ca94ece97bff9a5d5a67fd947d2c.png", + "thumb": "items/images/en/thumbs/modified_munitions.f055ca94ece97bff9a5d5a67fd947d2c.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b0", + "slug": "natural_talent", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarCastingSpeedMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Natural Talent", + "icon": "items/images/en/natural_talent.d93810daccabd89634d5f429fb3120d1.png", + "thumb": "items/images/en/thumbs/natural_talent.d93810daccabd89634d5f429fb3120d1.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b3", + "slug": "flechette", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponArmorPiercingDamageMod", + "tags": [ + "common", + "shotgun", + "mod", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Flechette", + "icon": "items/images/en/flechette.d861855060f3cffa9baa7a9157d9169a.png", + "thumb": "items/images/en/thumbs/flechette.d861855060f3cffa9baa7a9157d9169a.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b7", + "slug": "shimmering_blight", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/PolearmCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "polearms" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shimmering Blight", + "icon": "items/images/en/shimmering_blight.4a5333fbc806d24aaba48ed9c62360e0.png", + "thumb": "items/images/en/thumbs/shimmering_blight.4a5333fbc806d24aaba48ed9c62360e0.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b9", + "slug": "justice_blades", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/DualCleaversMod", + "tags": [ + "syndicate", + "dual_cleavers", + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Justice Blades", + "icon": "items/images/en/justice_blades.465e02b8fa93e85a73dd5aa83e0808fb.png", + "thumb": "items/images/en/thumbs/justice_blades.465e02b8fa93e85a73dd5aa83e0808fb.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c5", + "slug": "buzz_kill", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponEventSlashDamageMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Buzz Kill", + "icon": "items/images/en/buzz_kill.40ec58c4f4598e9f4d94aa7fc38c8e4b.png", + "thumb": "items/images/en/thumbs/buzz_kill.40ec58c4f4598e9f4d94aa7fc38c8e4b.128x128.png" + } + } + }, + { + "id": "5b2985e1eb069f04ea65b0ea", + "slug": "pyrana_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PyranaPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Pyrana Prime Blueprint", + "icon": "items/images/en/pyrana_prime_blueprint.006fc1f35a3662cb6d84ce6a7f63cd9e.png", + "thumb": "items/images/en/thumbs/pyrana_prime_blueprint.006fc1f35a3662cb6d84ce6a7f63cd9e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5b2985e1eb069f04ea65b0ee", + "slug": "pyrana_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PyranaPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Pyrana Prime Receiver", + "icon": "items/images/en/pyrana_prime_receiver.006fc1f35a3662cb6d84ce6a7f63cd9e.png", + "thumb": "items/images/en/thumbs/pyrana_prime_receiver.006fc1f35a3662cb6d84ce6a7f63cd9e.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5b2985e1eb069f04ea65b0f3", + "slug": "pyrana_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PyranaPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Pyrana Prime Barrel", + "icon": "items/images/en/pyrana_prime_barrel.006fc1f35a3662cb6d84ce6a7f63cd9e.png", + "thumb": "items/images/en/thumbs/pyrana_prime_barrel.006fc1f35a3662cb6d84ce6a7f63cd9e.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5b2985e2eb069f04ea65b0f6", + "slug": "destreza_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PRapier/DestrezaPrime", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Destreza Prime Set", + "icon": "items/images/en/destreza_prime_set.b1a1cc461a2cfcf9998f0588c8e932a4.png", + "thumb": "items/images/en/thumbs/destreza_prime_set.b1a1cc461a2cfcf9998f0588c8e932a4.128x128.png" + } + } + }, + { + "id": "5bb7658e92ea46005b6d386d", + "slug": "primed_expel_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponPistolFactionDamageGrineerExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Expel Grineer", + "icon": "items/images/en/primed_expel_grineer.e26c831370183283cb8d2fa1ec4aed6a.png", + "thumb": "items/images/en/thumbs/primed_expel_grineer.e26c831370183283cb8d2fa1ec4aed6a.128x128.png" + } + } + }, + { + "id": "5bb7658f92ea46005b6d386e", + "slug": "primed_expel_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponPistolFactionDamageCorpusExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Expel Corpus", + "icon": "items/images/en/primed_expel_corpus.a7084d32e9f304849b28b8a1b680671c.png", + "thumb": "items/images/en/thumbs/primed_expel_corpus.a7084d32e9f304849b28b8a1b680671c.128x128.png" + } + } + }, + { + "id": "5bb7658f92ea46005b6d386f", + "slug": "primed_expel_infested", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponPistolFactionDamageInfestedExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Expel Infested", + "icon": "items/images/en/primed_expel_infested.2b5bda3a8c89f2db5e29f598a3e39ce0.png", + "thumb": "items/images/en/thumbs/primed_expel_infested.2b5bda3a8c89f2db5e29f598a3e39ce0.128x128.png" + } + } + }, + { + "id": "5bbcec53f639cf007b7357cf", + "slug": "primed_expel_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponPistolFactionDamageCorruptedExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Expel Orokin", + "icon": "items/images/en/primed_expel_corrupted.8c7d6df438f5bf500adda9c1745190fc.png", + "thumb": "items/images/en/thumbs/primed_expel_corrupted.8c7d6df438f5bf500adda9c1745190fc.128x128.png" + } + } + }, + { + "id": "5be5f5a13ffcc7038857f113", + "slug": "quaking_hand", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPFistStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "fists", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Quaking Hand", + "icon": "items/images/en/quaking_hand.69455f72d16710b8f7f33a9bfa5d9047.png", + "thumb": "items/images/en/thumbs/quaking_hand.69455f72d16710b8f7f33a9bfa5d9047.128x128.png" + } + } + }, + { + "id": "5be5f5a23ffcc7038857f119", + "slug": "flame_gland", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/DualStat/KubrowFireEventMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Flame Gland", + "icon": "items/images/en/flame_gland.4b9ae82095e0338bff0388a4738a9439.png", + "thumb": "items/images/en/thumbs/flame_gland.4b9ae82095e0338bff0388a4738a9439.128x128.png" + } + } + }, + { + "id": "5be5f5a23ffcc7038857f11c", + "slug": "dividing_blades", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPDualSwordStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "mod", + "dual_swords" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Dividing Blades", + "icon": "items/images/en/dividing_blades.7a0b836b0f4cdaa3132db5a08bbc01f9.png", + "thumb": "items/images/en/thumbs/dividing_blades.7a0b836b0f4cdaa3132db5a08bbc01f9.128x128.png" + } + } + }, + { + "id": "5be5f5a43ffcc7038857f132", + "slug": "smooth_phasmin", + "gameRef": "/Lotus/Types/Items/Gems/Solaris/SolarisCommonGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Smooth Phasmin", + "icon": "items/images/en/smooth_phasmin.890678cdbcd828e4605b5e6181cd7b67.png", + "thumb": "items/images/en/thumbs/smooth_phasmin.890678cdbcd828e4605b5e6181cd7b67.128x128.png" + } + } + }, + { + "id": "56153e9bb66f837074af99c5", + "slug": "arcane_pulse", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/RadialHealOnHealthPickup", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Pulse", + "icon": "items/images/en/arcane_pulse.9f9a959b60addb3377fec907f8c5d35b.png", + "thumb": "items/images/en/thumbs/arcane_pulse.9f9a959b60addb3377fec907f8c5d35b.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a522", + "slug": "sudden_justice", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/SybarisIncreaseRoFonHit", + "tags": [ + "sybaris", + "primary", + "pvp", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sudden Justice", + "icon": "items/images/en/sudden_justice.da82a75c334bd02464893ca9a7a39ee0.png", + "thumb": "items/images/en/thumbs/sudden_justice.da82a75c334bd02464893ca9a7a39ee0.128x128.png" + } + } + }, + { + "id": "56a7b24c1133f656cb085d85", + "slug": "blood_rush", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/ComboCritChanceMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Blood Rush", + "icon": "items/images/en/blood_rush.7512063f1029665d1ddc9b5d9a0700f8.png", + "thumb": "items/images/en/thumbs/blood_rush.7512063f1029665d1ddc9b5d9a0700f8.128x128.png" + } + } + }, + { + "id": "56a7b28a1133f656cb085d8e", + "slug": "shrapnel_shot", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/CritDamageWhileAimingShotgunMod", + "tags": [ + "common", + "shotgun", + "mod", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shrapnel Shot", + "icon": "items/images/en/shrapnel_shot.1683a43d4d96837610006fcd1de3bdb2.png", + "thumb": "items/images/en/thumbs/shrapnel_shot.1683a43d4d96837610006fcd1de3bdb2.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ca", + "slug": "coolant_leak", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/CoolantLeak", + "tags": [ + "mod", + "rare", + "sentinel", + "robotic" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Coolant Leak", + "icon": "items/images/en/coolant_leak.e7c57e504908c5c2664900cc046d76c1.png", + "thumb": "items/images/en/thumbs/coolant_leak.e7c57e504908c5c2664900cc046d76c1.128x128.png" + } + } + }, + { + "id": "56dac5905cc639de0a45c522", + "slug": "ward_recovery", + "gameRef": "/Lotus/Powersuits/Nezha/NezhaSashPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nezha" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ward Recovery", + "icon": "items/images/en/ward_recovery.a69c640cd181a2e08bd24ce05d4cfdc3.png", + "thumb": "items/images/en/thumbs/ward_recovery.a69c640cd181a2e08bd24ce05d4cfdc3.128x128.png" + } + } + }, + { + "id": "54c686dce7798913e1a86565", + "slug": "primed_heated_charge", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponFireDamageModExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Heated Charge", + "icon": "items/images/en/primed_heated_charge.be3ac37bf7d2d82f77587dff71452c21.png", + "thumb": "items/images/en/thumbs/primed_heated_charge.be3ac37bf7d2d82f77587dff71452c21.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f3", + "slug": "neutron_star", + "gameRef": "/Lotus/Powersuits/AntiMatter/NullStarAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nova" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Neutron Star", + "icon": "items/images/en/neutron_star.c0e2f67469c1471dded9d0ce48358a27.png", + "thumb": "items/images/en/thumbs/neutron_star.c0e2f67469c1471dded9d0ce48358a27.128x128.png" + } + } + }, + { + "id": "56dac5a85cc639de0a45c525", + "slug": "skull_shots", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/ViperUnlimitedAmmo", + "tags": [ + "pvp", + "viper", + "rare", + "mod", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Skull Shots", + "icon": "items/images/en/skull_shots_(viper).b6e5631fe9ba10e002354a889629234a.png", + "thumb": "items/images/en/thumbs/skull_shots_(viper).b6e5631fe9ba10e002354a889629234a.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff70", + "slug": "loki_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LokiPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Loki Prime Neuroptics Blueprint", + "icon": "items/images/en/loki_prime_neuroptics.abc05c280f92196bcb688643873fbf95.png", + "thumb": "items/images/en/thumbs/loki_prime_neuroptics.abc05c280f92196bcb688643873fbf95.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "59dfeb63115f1d887cfd7ab9", + "slug": "vigilante_fervor", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Vigilante/PrimaryVigilanteFervorMod", + "tags": [ + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vigilante Fervor", + "icon": "items/images/en/vigilante_fervor.b9db93a4d9747d176e6b644bb8e86c52.png", + "thumb": "items/images/en/thumbs/vigilante_fervor.b9db93a4d9747d176e6b644bb8e86c52.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff24", + "slug": "ankyros_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AnkyrosPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ankyros Prime Blade", + "icon": "items/images/en/ankyros_prime_blade.81b3e5876c214047d10a0d90f92ebdfe.png", + "thumb": "items/images/en/thumbs/ankyros_prime_blade.81b3e5876c214047d10a0d90f92ebdfe.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff26", + "slug": "ankyros_prime_gauntlet", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AnkyrosPrimeGauntlet", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ankyros Prime Gauntlet", + "icon": "items/images/en/ankyros_prime_gauntlet.81b3e5876c214047d10a0d90f92ebdfe.png", + "thumb": "items/images/en/thumbs/ankyros_prime_gauntlet.81b3e5876c214047d10a0d90f92ebdfe.128x128.png", + "subIcon": "sub_icons/weapon/prime_gauntlet_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff27", + "slug": "bo_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeBoBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Bo Prime Blueprint", + "icon": "items/images/en/bo_prime_blueprint.fad65cfb95d62a4275be60be30375846.png", + "thumb": "items/images/en/thumbs/bo_prime_blueprint.fad65cfb95d62a4275be60be30375846.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec88", + "slug": "silva_and_aegis_prime_guard", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SilvaAegisPrimeGuard", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Silva & Aegis Prime Guard", + "icon": "items/images/en/silva_and_aegis_prime_guard.d226bbe86d3eccd8c751958dba46a4f6.png", + "thumb": "items/images/en/thumbs/silva_and_aegis_prime_guard.d226bbe86d3eccd8c751958dba46a4f6.128x128.png", + "subIcon": "sub_icons/weapon/prime_guard_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ad", + "slug": "vicious_frost", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/IceEventMeleeMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vicious Frost", + "icon": "items/images/en/vicious_frost.10569aa5e77c090ee245ca87cd25b7ef.png", + "thumb": "items/images/en/thumbs/vicious_frost.10569aa5e77c090ee245ca87cd25b7ef.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155af", + "slug": "jagged_edge", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponSlashDamageMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Jagged Edge", + "icon": "items/images/en/jagged_edge.8509563f964a907bf36f7fbaee9ed82b.png", + "thumb": "items/images/en/thumbs/jagged_edge.8509563f964a907bf36f7fbaee9ed82b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155cf", + "slug": "shield_disruption", + "gameRef": "/Lotus/Upgrades/Mods/Aura/EnemyShieldReductionAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shield Disruption", + "icon": "items/images/en/shield_disruption.f9fc4cba7d6d38bc9c694819089267ce.png", + "thumb": "items/images/en/thumbs/shield_disruption.f9fc4cba7d6d38bc9c694819089267ce.128x128.png" + } + } + }, + { + "id": "5a0475086c4655012038ddbf", + "slug": "magus_vigor", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HealthOnOperatorMode", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Vigor", + "icon": "items/images/en/magus_vigor.473998d768bd420877df79cdd55c6188.png", + "thumb": "items/images/en/thumbs/magus_vigor.473998d768bd420877df79cdd55c6188.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156f1", + "slug": "shotgun_barrage", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponFireRateMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shotgun Barrage", + "icon": "items/images/en/shotgun_spazz.447f21a32bb091abf33aede1d2f32295.png", + "thumb": "items/images/en/thumbs/shotgun_spazz.447f21a32bb091abf33aede1d2f32295.128x128.png" + } + } + }, + { + "id": "54aaf130e7798916d6f20025", + "slug": "arcane_swindle_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Loki/LokiHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Swindle Helmet", + "icon": "items/images/en/arcane_swindle_loki_helmet.d1ff45b29b64a4e9bc064a251146a5cc.png", + "thumb": "items/images/en/thumbs/arcane_swindle_loki_helmet.d1ff45b29b64a4e9bc064a251146a5cc.128x128.png" + } + } + }, + { + "id": "59dfeb5c115f1d887cfd7ab8", + "slug": "gladiator_vice", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Gladiator/MeleeGladiatorViceMod", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Gladiator Vice", + "icon": "items/images/en/gladiator_vice.8439406db915505dbb8a387dc6b4e416.png", + "thumb": "items/images/en/thumbs/gladiator_vice.8439406db915505dbb8a387dc6b4e416.128x128.png" + } + } + }, + { + "id": "54aaf2e9e779892185a51ef4", + "slug": "arcane_meridian_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Trinity/TrinityHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Meridian Helmet", + "icon": "items/images/en/arcane_meridian_trinity_helmet.bc33ca5ac4092fbc126c40e9997c0213.png", + "thumb": "items/images/en/thumbs/arcane_meridian_trinity_helmet.bc33ca5ac4092fbc126c40e9997c0213.128x128.png" + } + } + }, + { + "id": "54aaf530e77989707ada3a7e", + "slug": "legendary_fusion_core", + "gameRef": "", + "tags": [ + "fusion core" + ], + "i18n": { + "en": { + "name": "Legendary Fusion Core", + "icon": "items/images/en/legendary_fusion_core.094c2850f995a3d365d934296517c0d5.webp", + "thumb": "items/images/en/thumbs/legendary_fusion_core.094c2850f995a3d365d934296517c0d5.128x128.webp" + } + } + }, + { + "id": "57bc9c84e506eb45ea251456", + "slug": "tigris_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeTigrisStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tigris Prime Stock", + "icon": "items/images/en/tigris_prime_stock.5f82721ea78697c95208b9bceb72c4a4.png", + "thumb": "items/images/en/thumbs/tigris_prime_stock.5f82721ea78697c95208b9bceb72c4a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "57c5948794b4b0f159ab5e0e", + "slug": "spinning_needle", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DualDaggerCmbThreeMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "dual_daggers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Spinning Needle", + "icon": "items/images/en/spinning_needle.25e28011109a702f282cc2604067b432.png", + "thumb": "items/images/en/thumbs/spinning_needle.25e28011109a702f282cc2604067b432.128x128.png" + } + } + }, + { + "id": "5703ed1aa064f4ab755dc13a", + "slug": "snipetron_vandal_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SnipetronVandalStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Snipetron Vandal Stock", + "icon": "items/images/en/snipetron_vandal_stock.d820059db951ba5a4ac7c1d7ec8515f1.png", + "thumb": "items/images/en/thumbs/snipetron_vandal_stock.d820059db951ba5a4ac7c1d7ec8515f1.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515610", + "slug": "wildfire", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/WildfireMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Wildfire", + "icon": "items/images/en/wildfire.146df295f70ba7a56acf599bbd52f0ee.png", + "thumb": "items/images/en/thumbs/wildfire.146df295f70ba7a56acf599bbd52f0ee.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51559f", + "slug": "bane_of_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFactionDamageGrineer", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bane Of Grineer", + "icon": "items/images/en/bane_of_grineer.cb97a4f4096f1dac411cad6e57439734.png", + "thumb": "items/images/en/thumbs/bane_of_grineer.cb97a4f4096f1dac411cad6e57439734.128x128.png" + } + } + }, + { + "id": "571955bf4445c3e28b80fc81", + "slug": "scimitar_avionics_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/BlueSky/BlueSkyAvionicsBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Scimitar Avionics Blueprint", + "icon": "items/images/en/scimitar_avionics.c8644ada3c4381efbe9a11b55c58b0a7.png", + "thumb": "items/images/en/thumbs/scimitar_avionics.c8644ada3c4381efbe9a11b55c58b0a7.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_avionics_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a5", + "slug": "reflex_guard", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarAutoParryMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Reflex Guard", + "icon": "items/images/en/reflex_guard.7a91e475cacab58e90f69c62776b6251.png", + "thumb": "items/images/en/thumbs/reflex_guard.7a91e475cacab58e90f69c62776b6251.128x128.png" + } + } + }, + { + "id": "5754a30de701ef5844257da8", + "slug": "everlasting_ward", + "gameRef": "/Lotus/Powersuits/Dragon/DragonLuckAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "chroma" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Everlasting Ward", + "icon": "items/images/en/everlasting_ward.30d6d7b879924d1cbaaf6e0c1063f2d7.png", + "thumb": "items/images/en/thumbs/everlasting_ward.30d6d7b879924d1cbaaf6e0c1063f2d7.128x128.png" + } + } + }, + { + "id": "559daab7e779897b3d86cb8f", + "slug": "ash_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AshPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ash Prime Neuroptics Blueprint", + "icon": "items/images/en/ash_prime_neuroptics.9f3f82bee82a9741531857cf76eb6594.png", + "thumb": "items/images/en/thumbs/ash_prime_neuroptics.9f3f82bee82a9741531857cf76eb6594.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a8", + "slug": "jolt", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/ElectEventPistolMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Jolt", + "icon": "items/images/en/jolt.3f5c65020bd76023e1636555496c91c6.png", + "thumb": "items/images/en/thumbs/jolt.3f5c65020bd76023e1636555496c91c6.128x128.png" + } + } + }, + { + "id": "559daaf7e779897b5f3f5480", + "slug": "vectis_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VectisPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Vectis Prime Stock", + "icon": "items/images/en/vectis_prime_stock.028e001af4469482df80bff29542e043.png", + "thumb": "items/images/en/thumbs/vectis_prime_stock.028e001af4469482df80bff29542e043.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51561b", + "slug": "stunning_speed", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/StunningSpeedMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Stunning Speed", + "icon": "items/images/en/stunning_speed.c8e495b6c748e9386a65f9ee03c4fa5f.png", + "thumb": "items/images/en/thumbs/stunning_speed.c8e495b6c748e9386a65f9ee03c4fa5f.128x128.png" + } + } + }, + { + "id": "54c6855ee779891362942572", + "slug": "primed_continuity", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Expert/AvatarAbilityDurationModExpert", + "tags": [ + "mod", + "legendary", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Continuity", + "icon": "items/images/en/primed_continuity.240ece0417bbfeff4410681ea2294f13.png", + "thumb": "items/images/en/thumbs/primed_continuity.240ece0417bbfeff4410681ea2294f13.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff28", + "slug": "bo_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBoHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Bo Prime Handle", + "icon": "items/images/en/bo_prime_handle.fad65cfb95d62a4275be60be30375846.png", + "thumb": "items/images/en/thumbs/bo_prime_handle.fad65cfb95d62a4275be60be30375846.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "554d3c0ce7798942793d7e89", + "slug": "crash_course", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponEventRifleImpactDamageMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Crash Course", + "icon": "items/images/en/crash_course.6b28b12cf6104d819bb76cc562c8d7c5.png", + "thumb": "items/images/en/thumbs/crash_course.6b28b12cf6104d819bb76cc562c8d7c5.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a525", + "slug": "vital_systems_bypass", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/HealthRegenLongerShieldRecharge", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vital Systems Bypass", + "icon": "items/images/en/vital_systems_bypass.bce5b8c6440382788dd45683c1327d49.png", + "thumb": "items/images/en/thumbs/vital_systems_bypass.bce5b8c6440382788dd45683c1327d49.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f3", + "slug": "singularity", + "gameRef": "/Lotus/Powersuits/Jade/SelfBulletAttractorPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nyx" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Singularity", + "icon": "items/images/en/singularity.35761be20b6fae2d9a65cd2b57ebe67f.png", + "thumb": "items/images/en/thumbs/singularity.35761be20b6fae2d9a65cd2b57ebe67f.128x128.png" + } + } + }, + { + "id": "568c17a0c221c673bc088846", + "slug": "armored_acrobatics", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/DamageResistanceLessMobility", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Armored Acrobatics", + "icon": "items/images/en/armored_acrobatics.b11d5151eae71051909a66fe4d53eb90.png", + "thumb": "items/images/en/thumbs/armored_acrobatics.b11d5151eae71051909a66fe4d53eb90.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a84900", + "slug": "lethal_momentum", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponProjectileSpeedMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lethal Momentum", + "icon": "items/images/en/lethal_momentum.57735b942d4a18ef42c0a81891926b4b.png", + "thumb": "items/images/en/thumbs/lethal_momentum.57735b942d4a18ef42c0a81891926b4b.128x128.png" + } + } + }, + { + "id": "56900be253c8e91351672724", + "slug": "primed_bane_of_infested", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/PrimedWeaponFactionDamageInfested", + "tags": [ + "mod", + "legendary", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Bane Of Infested", + "icon": "items/images/en/primed_bane_of_infested.dfb6994085d676b00ca85cf63a082a61.png", + "thumb": "items/images/en/thumbs/primed_bane_of_infested.dfb6994085d676b00ca85cf63a082a61.128x128.png" + } + } + }, + { + "id": "56900c0053c8e91351672725", + "slug": "primed_bane_of_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/PrimedWeaponFactionDamageCorpus", + "tags": [ + "mod", + "legendary", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Bane Of Corpus", + "icon": "items/images/en/primed_bane_of_corpus.7574a28b4b72dc8cf59ceaea00653fa7.png", + "thumb": "items/images/en/thumbs/primed_bane_of_corpus.7574a28b4b72dc8cf59ceaea00653fa7.128x128.png" + } + } + }, + { + "id": "559daac1e779897b4253a85e", + "slug": "carrier_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/SentinelRecipes/PrimeCarrierSentinelBlueprint", + "tags": [ + "sentinel", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Carrier Prime Blueprint", + "icon": "items/images/en/carrier_prime_blueprint.1f39e6e9ecef0225b0755dd5c89f3cc8.png", + "thumb": "items/images/en/thumbs/carrier_prime_blueprint.1f39e6e9ecef0225b0755dd5c89f3cc8.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5696e4e06629907e30c394f8", + "slug": "vulpine_mask", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/RapierCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "rapiers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vulpine Mask", + "icon": "items/images/en/vulpine_mask.8f91c81fa49c6e9d430b354d01fd3cbf.png", + "thumb": "items/images/en/thumbs/vulpine_mask.8f91c81fa49c6e9d430b354d01fd3cbf.128x128.png" + } + } + }, + { + "id": "56a3ae00a4cc3c6028b342b1", + "slug": "primed_bane_of_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/PrimedWeaponFactionDamageGrineer", + "tags": [ + "mod", + "legendary", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Bane Of Grineer", + "icon": "items/images/en/primed_bane_of_grineer.8c901b72c21bb8d664c8403288c1bc1a.png", + "thumb": "items/images/en/thumbs/primed_bane_of_grineer.8c901b72c21bb8d664c8403288c1bc1a.128x128.png" + } + } + }, + { + "id": "559daae0e779897b5273b716", + "slug": "vectis_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VectisPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Vectis Prime Barrel", + "icon": "items/images/en/vectis_prime_barrel.028e001af4469482df80bff29542e043.png", + "thumb": "items/images/en/thumbs/vectis_prime_barrel.028e001af4469482df80bff29542e043.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51568c", + "slug": "tactical_pump", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponReloadSpeedMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tactical Pump", + "icon": "items/images/en/tactical_pump.20356a918f1ff578e35e1443a5026b65.png", + "thumb": "items/images/en/thumbs/tactical_pump.20356a918f1ff578e35e1443a5026b65.128x128.png" + } + } + }, + { + "id": "54aaf170e779893cfbd8ec50", + "slug": "arcane_menticide_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Jade/JadeHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Menticide Helmet", + "icon": "items/images/en/arcane_menticide_nyx_helmet.9ed49fb0a6adc0edf1b75ea960c2ce2e.png", + "thumb": "items/images/en/thumbs/arcane_menticide_nyx_helmet.9ed49fb0a6adc0edf1b75ea960c2ce2e.128x128.png" + } + } + }, + { + "id": "54aaf182e77989468dbe1add", + "slug": "arcane_aurora_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Frost/FrostHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Aurora Helmet", + "icon": "items/images/en/arcane_aurora_frost_helmet.9e1e1c4ce3bb5f13f9ca125a7d90c51f.png", + "thumb": "items/images/en/thumbs/arcane_aurora_frost_helmet.9e1e1c4ce3bb5f13f9ca125a7d90c51f.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff62", + "slug": "soma_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/SomaPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Soma Prime Blueprint", + "icon": "items/images/en/soma_prime_blueprint.1bf4937a6c2106c373cffeb93b1c87e0.png", + "thumb": "items/images/en/thumbs/soma_prime_blueprint.1bf4937a6c2106c373cffeb93b1c87e0.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ed", + "slug": "unleashed", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowVipChasePrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "sunika_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Unleashed", + "icon": "items/images/en/unleashed.288fb815d754cd11dc9cce471441492d.png", + "thumb": "items/images/en/thumbs/unleashed.288fb815d754cd11dc9cce471441492d.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff65", + "slug": "vasto_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VastoPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Vasto Prime Barrel", + "icon": "items/images/en/vasto_prime_barrel.213e4b3b9b3be0f4facb77fd5242b6a4.png", + "thumb": "items/images/en/thumbs/vasto_prime_barrel.213e4b3b9b3be0f4facb77fd5242b6a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54aaf18be779894c7c9308d3", + "slug": "arcane_chorus_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Decree/DecreeAltHelmetB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Chorus Helmet", + "icon": "items/images/en/arcane_chorus_banshee_helmet.77feb6495c839bdc977d61a22f02bbcc.png", + "thumb": "items/images/en/thumbs/arcane_chorus_banshee_helmet.77feb6495c839bdc977d61a22f02bbcc.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff66", + "slug": "vasto_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/VastoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Vasto Prime Blueprint", + "icon": "items/images/en/vasto_prime_blueprint.213e4b3b9b3be0f4facb77fd5242b6a4.png", + "thumb": "items/images/en/thumbs/vasto_prime_blueprint.213e4b3b9b3be0f4facb77fd5242b6a4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ee", + "slug": "entropy_flight", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/KestrelMod", + "tags": [ + "syndicate", + "mod", + "melee", + "rare", + "kestrel" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Entropy Flight", + "icon": "items/images/en/entropy_flight.d0aac5dc51491213cff3e4ff49c9acff.png", + "thumb": "items/images/en/thumbs/entropy_flight.d0aac5dc51491213cff3e4ff49c9acff.128x128.png" + } + } + }, + { + "id": "56c3bbea5d2f0202da32e93f", + "slug": "saryn_prime_set", + "gameRef": "/Lotus/Powersuits/Saryn/SarynPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Saryn Prime Set", + "icon": "items/images/en/saryn_prime_set.394094bef0383f954bd38d622bb075e5.png", + "thumb": "items/images/en/thumbs/saryn_prime_set.394094bef0383f954bd38d622bb075e5.128x128.png" + } + } + }, + { + "id": "5c1bda1b14a8e4006b1dad91", + "slug": "poppin_vert", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBDoubleJumpHeightMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Poppin' Vert", + "icon": "items/images/en/poppin_vert.db243b0661f0728060eaaa4b8deb2ff7.png", + "thumb": "items/images/en/thumbs/poppin_vert.db243b0661f0728060eaaa4b8deb2ff7.128x128.png" + } + } + }, + { + "id": "5c1bda1b14a8e4006b1dad92", + "slug": "magus_repair", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HealOnVoidMode", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Repair", + "icon": "items/images/en/magus_repair.476b8fa90aceb37cf1b07e223f1669fb.png", + "thumb": "items/images/en/thumbs/magus_repair.476b8fa90aceb37cf1b07e223f1669fb.128x128.png" + } + } + }, + { + "id": "5c1bda1e14a8e4006b1dad95", + "slug": "magus_glitch", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/NoPenaltyOnDeath", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Glitch", + "icon": "items/images/en/magus_glitch.280ca4675b8d1d36f742493903bf7c3c.png", + "thumb": "items/images/en/thumbs/magus_glitch.280ca4675b8d1d36f742493903bf7c3c.128x128.png" + } + } + }, + { + "id": "5c1bda2014a8e4006b1dad99", + "slug": "perfect_balance", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBFallChanceReductionMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Perfect Balance", + "icon": "items/images/en/perfect_balance.17da73e7e9003067dfbd1cb9f39330dd.png", + "thumb": "items/images/en/thumbs/perfect_balance.17da73e7e9003067dfbd1cb9f39330dd.128x128.png" + } + } + }, + { + "id": "5c1bda2214a8e4006b1dada0", + "slug": "strain_consume", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Strain/WarframeStrainConsumeMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Strain Consume", + "icon": "items/images/en/strain_consume.2286ac0e3f2686c579239434531a8c96.png", + "thumb": "items/images/en/thumbs/strain_consume.2286ac0e3f2686c579239434531a8c96.128x128.png" + } + } + }, + { + "id": "5c1e62d3817a0d0092fb1609", + "slug": "zaw_riven_mod_(veiled)", + "gameRef": "/Lotus/Upgrades/Mods/Randomized/LotusModularMeleeRandomModRare", + "tags": [ + "mod", + "riven_mod", + "common", + "veiled_riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Zaw Riven Mod (Veiled)", + "icon": "items/images/en/zaw_riven_mod_(veiled).8a8a788f0090d5be1b32481765ab8ad3.png", + "thumb": "items/images/en/thumbs/zaw_riven_mod_(veiled).8a8a788f0090d5be1b32481765ab8ad3.128x128.png" + } + } + }, + { + "id": "5c7849e22cc6ce090383e262", + "slug": "wolf_sledge_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/ThrowingHammerBlueprint", + "tags": [ + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wolf Sledge Blueprint", + "icon": "items/images/en/wolf_sledge_blueprint.6b288aa755e84f886faa90486ed17d37.png", + "thumb": "items/images/en/thumbs/wolf_sledge_blueprint.6b288aa755e84f886faa90486ed17d37.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5c1bda0814a8e4006b1dad63", + "slug": "magus_overload", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/RobotStunOnBlast", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Overload", + "icon": "items/images/en/magus_overload.c575b29c15d999083923ee609dcda264.png", + "thumb": "items/images/en/thumbs/magus_overload.c575b29c15d999083923ee609dcda264.128x128.png" + } + } + }, + { + "id": "5c3892672cc6ce00f238139f", + "slug": "molecular_fission", + "gameRef": "/Lotus/Powersuits/AntiMatter/MolecularPrimeAugmentCard", + "tags": [ + "nova", + "rare", + "prime", + "warframe", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Molecular Fission", + "icon": "items/images/en/molecular_fission.42b30fd1ddac8ac85a2f9cbff2d6cd0e.png", + "thumb": "items/images/en/thumbs/molecular_fission.42b30fd1ddac8ac85a2f9cbff2d6cd0e.128x128.png" + } + } + }, + { + "id": "5c7849e22cc6ce090383e26a", + "slug": "wolf_sledge_motor", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ThrowingHammerMotor", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Wolf Sledge Motor", + "icon": "items/images/en/wolf_sledge_motor.6b288aa755e84f886faa90486ed17d37.png", + "thumb": "items/images/en/thumbs/wolf_sledge_motor.6b288aa755e84f886faa90486ed17d37.128x128.png", + "subIcon": "sub_icons/weapon/generic_motor_128x128.png" + } + } + }, + { + "id": "5c79229f2cc6ce0985fd3bb7", + "slug": "wild_frenzy", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Arbitration/GrnAssaultRifleArbitrationMod", + "tags": [ + "mod", + "grakata", + "primary", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Wild Frenzy", + "icon": "items/images/en/wild_frenzy.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/wild_frenzy.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5c93e3b8fc2db20121591320", + "slug": "napalm_grenades", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/GrenadeLauncherProjectileMod", + "tags": [ + "penta", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Napalm Grenades", + "icon": "items/images/en/napalm_grenades.f2ef75913e36cd9c4dfb041e1345c334.png", + "thumb": "items/images/en/thumbs/napalm_grenades.f2ef75913e36cd9c4dfb041e1345c334.128x128.png" + } + } + }, + { + "id": "5ca2866ffc2db2035eae059a", + "slug": "tipedo_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TipedoPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tipedo Prime Handle", + "icon": "items/images/en/tipedo_prime_handle.fd4fdcee6ab035eddce9a802ff091cfd.png", + "thumb": "items/images/en/thumbs/tipedo_prime_handle.fd4fdcee6ab035eddce9a802ff091cfd.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5ca2866ffc2db2035eae059c", + "slug": "stradavar_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeStradavar/PrimeStradavarGun", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Stradavar Prime Set", + "icon": "items/images/en/stradavar_prime_set.57c042a30996514288dfd70f2ce267ca.png", + "thumb": "items/images/en/thumbs/stradavar_prime_set.57c042a30996514288dfd70f2ce267ca.128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a6", + "slug": "equinox_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EquinoxPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Equinox Prime Blueprint", + "icon": "items/images/en/equinox_prime_blueprint.1163c3dad7a8ffce02af7d475fc0ccd4.png", + "thumb": "items/images/en/thumbs/equinox_prime_blueprint.1163c3dad7a8ffce02af7d475fc0ccd4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff36", + "slug": "bronco_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BroncoPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Bronco Prime Barrel", + "icon": "items/images/en/bronco_prime_barrel.aa5499a3b26806f1f26a987be9dcf0ca.png", + "thumb": "items/images/en/thumbs/bronco_prime_barrel.aa5499a3b26806f1f26a987be9dcf0ca.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "56fdbd5d2e26966de716e432", + "slug": "war_hilt", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/WarHilt", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "War Hilt", + "icon": "items/images/en/war_hilt.79aea5cde8a32f0cdb77bc19b5d1e9a5.png", + "thumb": "items/images/en/thumbs/war_hilt.79aea5cde8a32f0cdb77bc19b5d1e9a5.128x128.png", + "subIcon": "sub_icons/weapon/generic_hilt_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff6a", + "slug": "nova_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NovaPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nova Prime Systems Blueprint", + "icon": "items/images/en/nova_prime_systems.639a9222e1cb351cd6dd09ef28155ef0.png", + "thumb": "items/images/en/thumbs/nova_prime_systems.639a9222e1cb351cd6dd09ef28155ef0.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff80", + "slug": "frost_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/FrostPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Frost Prime Blueprint", + "icon": "items/images/en/frost_prime_blueprint.4f8ff8605be1afaab9a0e5cc3c67cb21.png", + "thumb": "items/images/en/thumbs/frost_prime_blueprint.4f8ff8605be1afaab9a0e5cc3c67cb21.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff37", + "slug": "bronco_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BroncoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Bronco Prime Blueprint", + "icon": "items/images/en/bronco_prime_blueprint.aa5499a3b26806f1f26a987be9dcf0ca.png", + "thumb": "items/images/en/thumbs/bronco_prime_blueprint.aa5499a3b26806f1f26a987be9dcf0ca.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54c688a2e77989145e6d0aa0", + "slug": "astral_twilight", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/GlaiveCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "glaives" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Astral Twilight", + "icon": "items/images/en/astral_twilight.0e11466aa6264c5f2886a5de6a921772.png", + "thumb": "items/images/en/thumbs/astral_twilight.0e11466aa6264c5f2886a5de6a921772.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f5", + "slug": "snap_shot", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/FasterMovementWhileAimingShotgunlMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Snap Shot", + "icon": "items/images/en/snap_shot.ded807ee6efd377b27bd06c2a61453fb.png", + "thumb": "items/images/en/thumbs/snap_shot.ded807ee6efd377b27bd06c2a61453fb.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff3b", + "slug": "burston_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BurstonPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Burston Prime Receiver", + "icon": "items/images/en/burston_prime_receiver.9fc6c6a6dca24113027828df669cd89e.png", + "thumb": "items/images/en/thumbs/burston_prime_receiver.9fc6c6a6dca24113027828df669cd89e.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff40", + "slug": "fang_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeFangBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Fang Prime Blade", + "icon": "items/images/en/fang_prime_blade.13b0c690a76382d0fbdebe84e4c509db.png", + "thumb": "items/images/en/thumbs/fang_prime_blade.13b0c690a76382d0fbdebe84e4c509db.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "573b7fc80ec44a47787a690f", + "slug": "vauban_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VaubanPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Vauban Prime Neuroptics Blueprint", + "icon": "items/images/en/vauban_prime_neuroptics.9c15bb47d3ed4ed8e960c2502fac82f2.png", + "thumb": "items/images/en/thumbs/vauban_prime_neuroptics.9c15bb47d3ed4ed8e960c2502fac82f2.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff48", + "slug": "hikou_prime_stars", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeHikouStars", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Hikou Prime Stars", + "icon": "items/images/en/hikou_prime_stars.cd5cefce60a4e85c15614139a8ee9400.png", + "thumb": "items/images/en/thumbs/hikou_prime_stars.cd5cefce60a4e85c15614139a8ee9400.128x128.png", + "subIcon": "sub_icons/weapon/prime_stars_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515649", + "slug": "intruder", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarTimeLimitIncreaseMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "i18n": { + "en": { + "name": "Intruder", + "icon": "items/images/en/intruder.c38f0366ae84d068f18fdb3c22448731.png", + "thumb": "items/images/en/thumbs/intruder.c38f0366ae84d068f18fdb3c22448731.128x128.png" + } + } + }, + { + "id": "59b2a2468d62f4b743a21f31", + "slug": "prisma_angstrum", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpHandRL/PrismaAngstrum", + "tags": [ + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Prisma Angstrum", + "icon": "items/images/en/prisma_angstrum.d35c4cf543441592a43b32ef44d251c1.png", + "thumb": "items/images/en/thumbs/prisma_angstrum.d35c4cf543441592a43b32ef44d251c1.128x128.png" + } + } + }, + { + "id": "5783bf3cd9b6753790c89e92", + "slug": "phaedra_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchLongRifleStock", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Phaedra Stock", + "icon": "items/images/en/phaedra_stock.93a06c74d5ecc242c76ea0ff91e3d9ca.png", + "thumb": "items/images/en/thumbs/phaedra_stock.93a06c74d5ecc242c76ea0ff91e3d9ca.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515663", + "slug": "scorch", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/FireEventPistolMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Scorch", + "icon": "items/images/en/scorch.69fe662898c87f2e01d9ff70ab3d6d22.png", + "thumb": "items/images/en/thumbs/scorch.69fe662898c87f2e01d9ff70ab3d6d22.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155be", + "slug": "entropy_spike", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/BoltoMod", + "tags": [ + "syndicate", + "secondary", + "mod", + "rare", + "bolto" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Entropy Spike", + "icon": "items/images/en/entropy_spike.def94f74a5e4438a695d47fb336d6066.png", + "thumb": "items/images/en/thumbs/entropy_spike.def94f74a5e4438a695d47fb336d6066.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ef", + "slug": "eleventh_storm", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/SwordShieldCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "sword_and_shield" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Eleventh Storm", + "icon": "items/images/en/eleventh_storm.f08448d35130e5d84a8f270451bc273a.png", + "thumb": "items/images/en/thumbs/eleventh_storm.f08448d35130e5d84a8f270451bc273a.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff68", + "slug": "nova_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NovaPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nova Prime Neuroptics Blueprint", + "icon": "items/images/en/nova_prime_neuroptics.639a9222e1cb351cd6dd09ef28155ef0.png", + "thumb": "items/images/en/thumbs/nova_prime_neuroptics.639a9222e1cb351cd6dd09ef28155ef0.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "56dac57b5cc639de0a45c51e", + "slug": "antimatter_mine", + "gameRef": "/Lotus/Powersuits/AntiMatter/AntiMatterDropPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nova" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Antimatter Mine", + "icon": "items/images/en/antimatter_mine.384adc9bfe518c61363ea6c5640c89ee.png", + "thumb": "items/images/en/thumbs/antimatter_mine.384adc9bfe518c61363ea6c5640c89ee.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff69", + "slug": "nova_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NovaPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nova Prime Chassis Blueprint", + "icon": "items/images/en/nova_prime_chassis.639a9222e1cb351cd6dd09ef28155ef0.png", + "thumb": "items/images/en/thumbs/nova_prime_chassis.639a9222e1cb351cd6dd09ef28155ef0.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "56dac5805cc639de0a45c51f", + "slug": "prism_guard", + "gameRef": "/Lotus/Powersuits/Harlequin/PrismPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mirage" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Prism Guard", + "icon": "items/images/en/prism_guard.739b3605765381236dc43f5697692fc1.png", + "thumb": "items/images/en/thumbs/prism_guard.739b3605765381236dc43f5697692fc1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f0", + "slug": "trick_mag", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponAmmoMaxMod", + "tags": [ + "common", + "mod", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Trick Mag", + "icon": "items/images/en/trick_mag.17992c866f1b256de786611bb2e8c7b2.png", + "thumb": "items/images/en/thumbs/trick_mag.17992c866f1b256de786611bb2e8c7b2.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff6b", + "slug": "nova_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NovaPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Nova Prime Blueprint", + "icon": "items/images/en/nova_prime_blueprint.639a9222e1cb351cd6dd09ef28155ef0.png", + "thumb": "items/images/en/thumbs/nova_prime_blueprint.639a9222e1cb351cd6dd09ef28155ef0.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "56dac5855cc639de0a45c520", + "slug": "deceptive_bond", + "gameRef": "/Lotus/Powersuits/Loki/DecoyPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "loki" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Deceptive Bond", + "icon": "items/images/en/deceptive_bond.40d935abe0d890fa3a139cdc64aec602.png", + "thumb": "items/images/en/thumbs/deceptive_bond.40d935abe0d890fa3a139cdc64aec602.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff6c", + "slug": "frost_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/FrostPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Frost Prime Neuroptics Blueprint", + "icon": "items/images/en/frost_prime_neuroptics.4f8ff8605be1afaab9a0e5cc3c67cb21.png", + "thumb": "items/images/en/thumbs/frost_prime_neuroptics.4f8ff8605be1afaab9a0e5cc3c67cb21.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54aaf196e77989526dcfba2d", + "slug": "arcane_squall_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Frost/FrostHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Squall Helmet", + "icon": "items/images/en/arcane_squall_frost_helmet.c74f74a1c9f245336a25cf9786dbf44e.png", + "thumb": "items/images/en/thumbs/arcane_squall_frost_helmet.c74f74a1c9f245336a25cf9786dbf44e.128x128.png" + } + } + }, + { + "id": "5758af4842ba8659dde2f572", + "slug": "calculated_redirection", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelShieldMaxMod", + "tags": [ + "mod", + "common", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Calculated Redirection", + "icon": "items/images/en/calculated_redirection.153e48ee77eeb3d2a70a9c3956be0b6f.png", + "thumb": "items/images/en/thumbs/calculated_redirection.153e48ee77eeb3d2a70a9c3956be0b6f.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51561e", + "slug": "charged_shell", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponElectricityDamageMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Charged Shell", + "icon": "items/images/en/charged_shell.5e627f996728de50e552e7f82fce18a1.png", + "thumb": "items/images/en/thumbs/charged_shell.5e627f996728de50e552e7f82fce18a1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515620", + "slug": "cleanse_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponShotgunFactionDamageCorpus", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cleanse Corpus", + "icon": "items/images/en/cleanse_corpus.c6ef317773f4c04d080ce3fe21f41df5.png", + "thumb": "items/images/en/thumbs/cleanse_corpus.c6ef317773f4c04d080ce3fe21f41df5.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ba", + "slug": "searing_steel", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingEventFireStatusMeleeMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Searing Steel", + "icon": "items/images/en/searing_steel.7aa193ba4e202d8f625e091aa243f50d.png", + "thumb": "items/images/en/thumbs/searing_steel.7aa193ba4e202d8f625e091aa243f50d.128x128.png" + } + } + }, + { + "id": "5758af5142ba8659dde2f573", + "slug": "accelerated_deflection", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelShieldRechargeRateMod", + "tags": [ + "mod", + "uncommon", + "sentinel", + "robotic" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Accelerated Deflection", + "icon": "items/images/en/accelerated_deflection.95d36a3449dba3a6cf7f2e9291fc9a5e.png", + "thumb": "items/images/en/thumbs/accelerated_deflection.95d36a3449dba3a6cf7f2e9291fc9a5e.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515622", + "slug": "clashing_forest", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/StaffCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "staves" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Clashing Forest", + "icon": "items/images/en/clashing_forest.f7d9fcda2617d407371ca2e1e6da9b1f.png", + "thumb": "items/images/en/thumbs/clashing_forest.f7d9fcda2617d407371ca2e1e6da9b1f.128x128.png" + } + } + }, + { + "id": "576459af3ae92d545fd1e7b7", + "slug": "primal_rage", + "gameRef": "/Lotus/Powersuits/MonkeyKing/MonkeyStaffAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "wukong" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Primal Rage", + "icon": "items/images/en/primal_rage.c7d10e485d85553cea850b0a6514337e.png", + "thumb": "items/images/en/thumbs/primal_rage.c7d10e485d85553cea850b0a6514337e.128x128.png" + } + } + }, + { + "id": "576459b43ae92d545fd1e7b8", + "slug": "celestial_stomp", + "gameRef": "/Lotus/Powersuits/MonkeyKing/MonkeyPokeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "wukong" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Celestial Stomp", + "icon": "items/images/en/celestial_stomp.b63ddae93673a888011f8996a80c8a41.png", + "thumb": "items/images/en/thumbs/celestial_stomp.b63ddae93673a888011f8996a80c8a41.128x128.png" + } + } + }, + { + "id": "55e797e7e779892497cdf785", + "slug": "secura_penta", + "gameRef": "/Lotus/Weapons/Syndicates/PerrinSequence/LongGuns/PSPenta", + "tags": [ + "syndicate", + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Secura Penta", + "icon": "items/images/en/secura_penta.46a8573433a7ddec1f7e7c1bccb4d5ac.png", + "thumb": "items/images/en/thumbs/secura_penta.46a8573433a7ddec1f7e7c1bccb4d5ac.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515640", + "slug": "razor_shot", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponSlashDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Razor Shot", + "icon": "items/images/en/razor_shot.d8e458d15e2db1b17648dfe00019a062.png", + "thumb": "items/images/en/thumbs/razor_shot.d8e458d15e2db1b17648dfe00019a062.128x128.png" + } + } + }, + { + "id": "576459bc3ae92d545fd1e7b9", + "slug": "creeping_terrify", + "gameRef": "/Lotus/Powersuits/Necro/TerrorTotemAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nekros" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Creeping Terrify", + "icon": "items/images/en/creeping_terrify.1e5e17ddfeb4274998f69cc73a1b398d.png", + "thumb": "items/images/en/thumbs/creeping_terrify.1e5e17ddfeb4274998f69cc73a1b398d.128x128.png" + } + } + }, + { + "id": "56153689b66f836f7a3c0baf", + "slug": "trinity_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TrinityPrimeBlueprint", + "tags": [ + "blueprint", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Trinity Prime Blueprint", + "icon": "items/images/en/trinity_prime_blueprint.4115dba418ab8ee70197a7fdaee8da76.png", + "thumb": "items/images/en/thumbs/trinity_prime_blueprint.4115dba418ab8ee70197a7fdaee8da76.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51564a", + "slug": "grim_fury", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/PunchKickCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "sparring" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Grim Fury", + "icon": "items/images/en/grim_fury.df7612708bfe214974fe67fe72e473a4.png", + "thumb": "items/images/en/thumbs/grim_fury.df7612708bfe214974fe67fe72e473a4.128x128.png" + } + } + }, + { + "id": "57e91e65c76eb74c087f492f", + "slug": "ayatan_orta_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexC", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 3, + "baseEndo": 650, + "endoMultiplier": 2, + "i18n": { + "en": { + "name": "Ayatan Orta Sculpture", + "icon": "items/images/en/ayatan_orta_sculpture.942499eea26924073ddbb60d8d3016d6.png", + "thumb": "items/images/en/thumbs/ayatan_orta_sculpture.942499eea26924073ddbb60d8d3016d6.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51564b", + "slug": "energy_channel", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponPowerDamageMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Energy Channel", + "icon": "items/images/en/energy_channel.d69e91b8d709d7369f235efb0384f44f.png", + "thumb": "items/images/en/thumbs/energy_channel.d69e91b8d709d7369f235efb0384f44f.128x128.png" + } + } + }, + { + "id": "5615432cb66f8371035bfa34", + "slug": "hallowed_reckoning", + "gameRef": "/Lotus/Powersuits/Paladin/ReckoningAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "oberon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hallowed Reckoning", + "icon": "items/images/en/hallowed_reckoning.1003970df17174c7a7d16418d099910b.png", + "thumb": "items/images/en/thumbs/hallowed_reckoning.1003970df17174c7a7d16418d099910b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51564d", + "slug": "convulsion", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponElectricityDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Convulsion", + "icon": "items/images/en/convulsion.c353854f9c1c5514d241c43277810834.png", + "thumb": "items/images/en/thumbs/convulsion.c353854f9c1c5514d241c43277810834.128x128.png" + } + } + }, + { + "id": "56463c24b66f8358acce4451", + "slug": "arcane_fury", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/GolemArcaneMeleeDamageOnCrit", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Fury", + "icon": "items/images/en/arcane_fury.221e1166ea44c6d2473f59b7cfa4396a.png", + "thumb": "items/images/en/thumbs/arcane_fury.221e1166ea44c6d2473f59b7cfa4396a.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51564f", + "slug": "rapid_resilience", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarProcTimeMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rapid Resilience", + "icon": "items/images/en/rapid_resilience.b14f79218a26403aa00409a93f5dcfa0.png", + "thumb": "items/images/en/thumbs/rapid_resilience.b14f79218a26403aa00409a93f5dcfa0.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515650", + "slug": "pistol_pestilence", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/PoisonEventPistolMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pistol Pestilence", + "icon": "items/images/en/pistol_pestilence.ff61efb2028ea3b8aa22bf9b7b94f32f.png", + "thumb": "items/images/en/thumbs/pistol_pestilence.ff61efb2028ea3b8aa22bf9b7b94f32f.128x128.png" + } + } + }, + { + "id": "5655c4e5b66f832e25b8ce7b", + "slug": "primed_morphic_transformer", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Expert/ArchwingSuitAbilityStrengthModExpert", + "tags": [ + "mod", + "legendary", + "archwing" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Morphic Transformer", + "icon": "items/images/en/primed_morphic_transformer.d9aafc2cca4aed29c725c5b131874ffe.png", + "thumb": "items/images/en/thumbs/primed_morphic_transformer.d9aafc2cca4aed29c725c5b131874ffe.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515651", + "slug": "frail_momentum", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/CorruptedFireRateDamageShotgun", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Frail Momentum", + "icon": "items/images/en/frail_momentum.8495568df9bed9b94564b2b882a57317.png", + "thumb": "items/images/en/thumbs/frail_momentum.8495568df9bed9b94564b2b882a57317.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515653", + "slug": "pathogen_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponToxinDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pathogen Rounds", + "icon": "items/images/en/pathogen_rounds.4eef46cd7b866eea2ac8009ec61901e9.png", + "thumb": "items/images/en/thumbs/pathogen_rounds.4eef46cd7b866eea2ac8009ec61901e9.128x128.png" + } + } + }, + { + "id": "566750375dcbc186f0536bce", + "slug": "arcane_aegis", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/GolemArcaneShieldRegenOnDamage", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Aegis", + "icon": "items/images/en/arcane_aegis.05226d37b29123fba267f5f131a9dcd8.png", + "thumb": "items/images/en/thumbs/arcane_aegis.05226d37b29123fba267f5f131a9dcd8.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515655", + "slug": "sudden_impact", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingMeleeStatusChanceMod", + "tags": [ + "common", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sudden Impact", + "icon": "items/images/en/sudden_impact.86fff87fc89ac8f586597cdc4f7eed96.png", + "thumb": "items/images/en/thumbs/sudden_impact.86fff87fc89ac8f586597cdc4f7eed96.128x128.png" + } + } + }, + { + "id": "5667510e5dcbc186f0536bd0", + "slug": "arcane_consequence", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/GolemArcaneAimGlideOnHeadshot", + "tags": [ + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Consequence", + "icon": "items/images/en/arcane_consequence.f4e12b34a7b31c72f5fa1b042f6ae6e9.png", + "thumb": "items/images/en/thumbs/arcane_consequence.f4e12b34a7b31c72f5fa1b042f6ae6e9.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515659", + "slug": "tempered_blade", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingMeleeCritChanceMod", + "tags": [ + "common", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tempered Blade", + "icon": "items/images/en/tempered_blade.665882d312c78280d541f026a6f86393.png", + "thumb": "items/images/en/thumbs/tempered_blade.665882d312c78280d541f026a6f86393.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51565a", + "slug": "smite_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeFactionDamageCorpus", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Smite Corpus", + "icon": "items/images/en/smite_corpus.ebf6929dc715d0b33f81121b6feca418.png", + "thumb": "items/images/en/thumbs/smite_corpus.ebf6929dc715d0b33f81121b6feca418.128x128.png" + } + } + }, + { + "id": "566751295dcbc186f0536bd1", + "slug": "arcane_energize", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/GolemArcaneRadialEnergyOnEnergyPickup", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Energize", + "icon": "items/images/en/arcane_energize.e5f85590ceb29db89c6753dfdf823485.png", + "thumb": "items/images/en/thumbs/arcane_energize.e5f85590ceb29db89c6753dfdf823485.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51565b", + "slug": "fanged_fusillade", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponEventSlashDamageMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fanged Fusillade", + "icon": "items/images/en/fanged_fusillade.fcc8bd4030b32f8ca111229f07fb0ecc.png", + "thumb": "items/images/en/thumbs/fanged_fusillade.fcc8bd4030b32f8ca111229f07fb0ecc.128x128.png" + } + } + }, + { + "id": "59dfeb5c115f1d887cfd7ab6", + "slug": "gladiator_resolve", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Gladiator/WarframeGladiatorResolveMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Gladiator Resolve", + "icon": "items/images/en/gladiator_resolve.fdabca6b25815599aaa0f7eba0124d27.png", + "thumb": "items/images/en/thumbs/gladiator_resolve.fdabca6b25815599aaa0f7eba0124d27.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515660", + "slug": "ghost", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Ghost", + "tags": [ + "mod", + "common", + "sentinel", + "shade" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ghost", + "icon": "items/images/en/ghost.9c61a624b07663f8d4d710a3331cccce.png", + "thumb": "items/images/en/thumbs/ghost.9c61a624b07663f8d4d710a3331cccce.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515661", + "slug": "rime_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/IceEventRifleMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rime Rounds", + "icon": "items/images/en/rime_rounds.68c847363e800165a0a585da13f20ce7.png", + "thumb": "items/images/en/thumbs/rime_rounds.68c847363e800165a0a585da13f20ce7.128x128.png" + } + } + }, + { + "id": "58d8f22a11efe42a5e5231ff", + "slug": "vulkar_wraith", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerSniperRifle/VulkarWraith", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Vulkar Wraith", + "icon": "items/images/en/vulkar_wraith.f8429a3c0e4db52e800fae7bc4aa19ea.png", + "thumb": "items/images/en/thumbs/vulkar_wraith.f8429a3c0e4db52e800fae7bc4aa19ea.128x128.png" + } + } + }, + { + "id": "57e91e65c76eb74c087f4930", + "slug": "ayatan_piv_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexE", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 2, + "baseEndo": 375, + "endoMultiplier": 2, + "i18n": { + "en": { + "name": "Ayatan Piv Sculpture", + "icon": "items/images/en/ayatan_piv_sculpture.4d39cbe88cfd49b7da1ea55cc18629b7.png", + "thumb": "items/images/en/thumbs/ayatan_piv_sculpture.4d39cbe88cfd49b7da1ea55cc18629b7.128x128.png" + } + } + }, + { + "id": "58f0ee99aa4b70452a173071", + "slug": "negation_swarm", + "gameRef": "/Lotus/Powersuits/Sandman/SandmanSwarmAugmentCard", + "tags": [ + "inaros", + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Negation Armor", + "icon": "items/images/en/negation_swarm.32cd331f70a7a848636a1bb777b96201.png", + "thumb": "items/images/en/thumbs/negation_swarm.32cd331f70a7a848636a1bb777b96201.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515686", + "slug": "blunderbuss", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponCritChanceMod", + "tags": [ + "common", + "shotgun", + "mod", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Blunderbuss", + "icon": "items/images/en/blunderbuss.f8df9459d8032ae3006453260a938a77.png", + "thumb": "items/images/en/thumbs/blunderbuss.f8df9459d8032ae3006453260a938a77.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec85", + "slug": "sybaris_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SybarisPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Sybaris Prime Barrel", + "icon": "items/images/en/sybaris_prime_barrel.39d7dc4a904f7db7e7c78901976aa5fa.png", + "thumb": "items/images/en/thumbs/sybaris_prime_barrel.39d7dc4a904f7db7e7c78901976aa5fa.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5783bf45d9b6753790c89e94", + "slug": "centaur_aegis", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchSwordShieldAegis", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Centaur Aegis", + "icon": "items/images/en/centaur_aegis.7365135b7b3831714b657721d6b1df22.png", + "thumb": "items/images/en/thumbs/centaur_aegis.7365135b7b3831714b657721d6b1df22.128x128.png", + "subIcon": "sub_icons/weapon/generic_aegis_128x128.png" + } + } + }, + { + "id": "5800c6c9c021d9dc0a9f8915", + "slug": "cephalon_suda_augment_mod", + "gameRef": "", + "tags": [ + "syndicate", + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "Cephalon Suda Augment Mod", + "icon": "items/images/en/cephalon_suda_augment_mod.bf6cb888dd01ef5c15e00dde4253bff7.webp", + "thumb": "items/images/en/thumbs/cephalon_suda_augment_mod.bf6cb888dd01ef5c15e00dde4253bff7.128x128.webp" + } + } + }, + { + "id": "58b57068eb26db5c3119210c", + "slug": "banshee_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BansheePrimeChassisBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Banshee Prime Chassis Blueprint", + "icon": "items/images/en/banshee_prime_chassis.a0956816beb733841bce57e69a568cd6.png", + "thumb": "items/images/en/thumbs/banshee_prime_chassis.a0956816beb733841bce57e69a568cd6.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155bf", + "slug": "chilling_grasp", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponFreezeDamageMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Chilling Grasp", + "icon": "items/images/en/chilling_grasp.7dfb6e5744d0c7356011ad64c0e2d039.png", + "thumb": "items/images/en/thumbs/chilling_grasp.7dfb6e5744d0c7356011ad64c0e2d039.128x128.png" + } + } + }, + { + "id": "5d21ce45f4604c012d1e0c0f", + "slug": "wukong_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WukongPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wukong Prime Chassis Blueprint", + "icon": "items/images/en/wukong_prime_chassis.6fa7196ae48a7a3901c35834476f3891.png", + "thumb": "items/images/en/thumbs/wukong_prime_chassis.6fa7196ae48a7a3901c35834476f3891.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515692", + "slug": "blazing_steel", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingWeaponFireDamageMod", + "tags": [ + "uncommon", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Blazing Steel", + "icon": "items/images/en/blazing_steel.4462c08189e7218a64537da221faa4c6.png", + "thumb": "items/images/en/thumbs/blazing_steel.4462c08189e7218a64537da221faa4c6.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51569b", + "slug": "fired_up", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelOverheatDamageMod", + "tags": [ + "mod", + "sentinel", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fired Up", + "icon": "items/images/en/fired_up.33e41b63a3f193f1e801b503a1afb585.png", + "thumb": "items/images/en/thumbs/fired_up.33e41b63a3f193f1e801b503a1afb585.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ac", + "slug": "shattering_storm", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/HammerCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "hammers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shattering Storm", + "icon": "items/images/en/shattering_storm.db1b1e72c57367903c6c7baad6461aa6.png", + "thumb": "items/images/en/thumbs/shattering_storm.db1b1e72c57367903c6c7baad6461aa6.128x128.png" + } + } + }, + { + "id": "57b4e5486f6b2fda8ea6caa4", + "slug": "sense_danger", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowTremorSensePrecept", + "tags": [ + "mod", + "kavat", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fear Sense", + "icon": "items/images/en/sense_danger.03bc6b34f166a4aa51c6e69fe8bf4348.png", + "thumb": "items/images/en/thumbs/sense_danger.03bc6b34f166a4aa51c6e69fe8bf4348.128x128.png" + } + } + }, + { + "id": "57b86950315399578ef1a6bd", + "slug": "bullet_dance", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/GunbladeCmbTwoMeleeTree", + "tags": [ + "gunblade", + "mod", + "rare", + "stance" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Bullet Dance", + "icon": "items/images/en/bullet_dance.fe9f7dce282e60438ffc589647890577.png", + "thumb": "items/images/en/thumbs/bullet_dance.fe9f7dce282e60438ffc589647890577.128x128.png" + } + } + }, + { + "id": "57bc948ae506eb45ea25144c", + "slug": "twin_vipers_wraith_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TwinVipersWraithBlueprint", + "tags": [ + "weapon", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Twin Vipers Wraith Blueprint", + "icon": "items/images/en/twin_vipers_wraith_blueprint.c80af69695edc4c30fb44018404ea432.png", + "thumb": "items/images/en/thumbs/twin_vipers_wraith_blueprint.c80af69695edc4c30fb44018404ea432.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156be", + "slug": "split_chamber", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFireIterationsMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Split Chamber", + "icon": "items/images/en/split_chamber.2cb0a97bd2c5e9d75a505a153e8230cc.png", + "thumb": "items/images/en/thumbs/split_chamber.2cb0a97bd2c5e9d75a505a153e8230cc.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d1", + "slug": "north_wind", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponFreezeDamageMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "North Wind", + "icon": "items/images/en/north_wind.ddcfeab6866eb1c752ab79e55f001abb.png", + "thumb": "items/images/en/thumbs/north_wind.ddcfeab6866eb1c752ab79e55f001abb.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d3", + "slug": "shotgun_scavenger", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerShellAmmoAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shotgun Scavenger", + "icon": "items/images/en/shotgun_scavenger.1f23255c80dbcc3c34e4505c9479f931.png", + "thumb": "items/images/en/thumbs/shotgun_scavenger.1f23255c80dbcc3c34e4505c9479f931.128x128.png" + } + } + }, + { + "id": "54aae283e779897f276a5768", + "slug": "synoid_gammacor", + "gameRef": "/Lotus/Weapons/Syndicates/CephalonSuda/Pistols/CSSynoidGammacor", + "tags": [ + "syndicate", + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Synoid Gammacor", + "icon": "items/images/en/synoid_gammacor.16811422b2fab432718fd630acbf5358.png", + "thumb": "items/images/en/thumbs/synoid_gammacor.16811422b2fab432718fd630acbf5358.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192114", + "slug": "helios_prime_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeHeliosPowerSuit", + "tags": [ + "prime", + "sentinel", + "set" + ], + "i18n": { + "en": { + "name": "Helios Prime Set", + "icon": "items/images/en/helios_prime_set.625b7c74ea5dd61b1840f8094df7648a.png", + "thumb": "items/images/en/thumbs/helios_prime_set.625b7c74ea5dd61b1840f8094df7648a.128x128.png" + } + } + }, + { + "id": "54aae2a0e7798911533cb007", + "slug": "rakta_ballistica", + "gameRef": "/Lotus/Weapons/Syndicates/RedVeil/Pistols/RVBallistica", + "tags": [ + "syndicate", + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Rakta Ballistica", + "icon": "items/images/en/rakta_ballistica.2e338918b2298e17fa465e83d319cc13.png", + "thumb": "items/images/en/thumbs/rakta_ballistica.2e338918b2298e17fa465e83d319cc13.128x128.png" + } + } + }, + { + "id": "59a48b625cd9938cfede7039", + "slug": "hydroid_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HydroidPrimeHelmetBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Hydroid Prime Neuroptics Blueprint", + "icon": "items/images/en/hydroid_prime_neuroptics.5f1abb4ef137bf0dd41565a913f5232a.png", + "thumb": "items/images/en/thumbs/hydroid_prime_neuroptics.5f1abb4ef137bf0dd41565a913f5232a.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c5", + "slug": "greedy_pull", + "gameRef": "/Lotus/Powersuits/Mag/PullAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mag" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Greedy Pull", + "icon": "items/images/en/greedy_pull.46407b1a24b9928f281e9fded5134de4.png", + "thumb": "items/images/en/thumbs/greedy_pull.46407b1a24b9928f281e9fded5134de4.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec8b", + "slug": "silva_and_aegis_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeSilvaAegis/PrimeSilvaAegis", + "tags": [ + "weapon", + "prime", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Silva & Aegis Prime Set", + "icon": "items/images/en/silva_and_aegis_prime_set.d226bbe86d3eccd8c751958dba46a4f6.png", + "thumb": "items/images/en/thumbs/silva_and_aegis_prime_set.d226bbe86d3eccd8c751958dba46a4f6.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d7", + "slug": "sanctuary", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Sanctuary", + "tags": [ + "mod", + "rare", + "sentinel", + "robotic" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Sanctuary", + "icon": "items/images/en/sanctuary.69a5b2425b10b1ee21c9ea5a9a641898.png", + "thumb": "items/images/en/thumbs/sanctuary.69a5b2425b10b1ee21c9ea5a9a641898.128x128.png" + } + } + }, + { + "id": "5870156c937cde2c9d378ac1", + "slug": "tether_grenades", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/CorpusArena/PentaCorpusArenaMod", + "tags": [ + "penta", + "mod", + "primary", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tether Grenades", + "icon": "items/images/en/tether_grenades.47343337c68b796ee58053004079dfe2.png", + "thumb": "items/images/en/thumbs/tether_grenades.47343337c68b796ee58053004079dfe2.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155fa", + "slug": "aviator", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageReductionInAir", + "tags": [ + "mod", + "warframe", + "common" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Aviator", + "icon": "items/images/en/aviator.4dd77aa8df43f385416456f03835c377.png", + "thumb": "items/images/en/thumbs/aviator.4dd77aa8df43f385416456f03835c377.128x128.png" + } + } + }, + { + "id": "59eb9b0952f90ed715e14144", + "slug": "swooping_falcon", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/SwordCmbTwoMeleeTree", + "tags": [ + "mod", + "swords", + "stance", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Swooping Falcon", + "icon": "items/images/en/swooping_falcon.f21a348782f3613ef0c5d9e4d4dc9191.png", + "thumb": "items/images/en/thumbs/swooping_falcon.f21a348782f3613ef0c5d9e4d4dc9191.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a8", + "slug": "constitution", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/ConstitutionMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Constitution", + "icon": "items/images/en/constitution.f1d2cd4cd1c771e3db5ef3b0c87a5fb3.png", + "thumb": "items/images/en/thumbs/constitution.f1d2cd4cd1c771e3db5ef3b0c87a5fb3.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156aa", + "slug": "smite_infusion", + "gameRef": "/Lotus/Powersuits/Paladin/SmiteAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "oberon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Smite Infusion", + "icon": "items/images/en/smite_infusion.924b32e9b01f426767218887c9b9bd73.png", + "thumb": "items/images/en/thumbs/smite_infusion.924b32e9b01f426767218887c9b9bd73.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a0", + "slug": "kavasa_prime_kubrow_collar_set", + "gameRef": "/Lotus/Upgrades/Skins/Kubrows/Collars/PrimeKubrowCollarA", + "tags": [ + "prime", + "skin", + "set" + ], + "i18n": { + "en": { + "name": "Kavasa Prime Kubrow Collar Set", + "icon": "items/images/en/kavasa_prime_kubrow_collar_set.cc1bafee4156c05ebaa812d39cd559ba.png", + "thumb": "items/images/en/thumbs/kavasa_prime_kubrow_collar_set.cc1bafee4156c05ebaa812d39cd559ba.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a1", + "slug": "latron_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/LatronPrime", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Latron Prime Set", + "icon": "items/images/en/latron_prime_set.5c8b8009acbdb97fd49177ba155ecfbe.png", + "thumb": "items/images/en/thumbs/latron_prime_set.5c8b8009acbdb97fd49177ba155ecfbe.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a2", + "slug": "lex_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeLex/PrimeLex", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Lex Prime Set", + "icon": "items/images/en/lex_prime_set.13776cf63dfd68968067b517184a6ac0.png", + "thumb": "items/images/en/thumbs/lex_prime_set.13776cf63dfd68968067b517184a6ac0.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a7", + "slug": "odonata_prime_set", + "gameRef": "/Lotus/Powersuits/Archwing/PrimeJetPack/PrimeJetPack", + "tags": [ + "prime", + "set", + "archwing" + ], + "i18n": { + "en": { + "name": "Odonata Prime Set", + "icon": "items/images/en/odonata_prime_set.9087f5267b49dee37c38d36f57387753.png", + "thumb": "items/images/en/thumbs/odonata_prime_set.9087f5267b49dee37c38d36f57387753.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d8", + "slug": "gun_glide", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/MoreAccuracyLessRecoilSlidingMod", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "assault_rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gun Glide", + "icon": "items/images/en/gun_glide.2dd3e5bb22e91fae14f1b78aaa764d5d.png", + "thumb": "items/images/en/thumbs/gun_glide.2dd3e5bb22e91fae14f1b78aaa764d5d.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ed", + "slug": "rime_vault", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/FreezeParkourPvPMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "i18n": { + "en": { + "name": "Rime Vault", + "icon": "items/images/en/rime_vault.14e572dd10c6b89cf4202d242e01bfe9.png", + "thumb": "items/images/en/thumbs/rime_vault.14e572dd10c6b89cf4202d242e01bfe9.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a501", + "slug": "vanquished_prey", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/RestoreShieldsOnKillMod", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "assault_rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vanquished Prey", + "icon": "items/images/en/vanquished_prey.14414e6361957d4741225cb9606adf8a.png", + "thumb": "items/images/en/thumbs/vanquished_prey.14414e6361957d4741225cb9606adf8a.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a503", + "slug": "voltaic_lance", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/ElectricityParkourPvPMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "i18n": { + "en": { + "name": "Voltaic Lance", + "icon": "items/images/en/voltaic_lance.342d37690004554bbcb355829151ee18.png", + "thumb": "items/images/en/thumbs/voltaic_lance.342d37690004554bbcb355829151ee18.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a506", + "slug": "deft_tempo", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/FasterBulletJumponHeadshotRifleMod", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "assault_rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Deft Tempo", + "icon": "items/images/en/deft_tempo.e50c0487ca72d93242873e1248b9f06f.png", + "thumb": "items/images/en/thumbs/deft_tempo.e50c0487ca72d93242873e1248b9f06f.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a508", + "slug": "double_tap", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/MoreDamageonTripleTapRifleMod", + "tags": [ + "primary", + "latron", + "pvp", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Double Tap", + "icon": "items/images/en/double_tap.11175026394e8ecf711f55a5d9d3933f.png", + "thumb": "items/images/en/thumbs/double_tap.11175026394e8ecf711f55a5d9d3933f.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a50a", + "slug": "final_act", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/IncreasedEfficiencyOnLowHealth", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Final Act", + "icon": "items/images/en/final_act.794292ab515a014b43f9c106b549b822.png", + "thumb": "items/images/en/thumbs/final_act.794292ab515a014b43f9c106b549b822.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a50b", + "slug": "final_tap", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/HindDamageonFifthHit", + "tags": [ + "primary", + "hind", + "pvp", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Final Tap", + "icon": "items/images/en/final_tap.e06ec710b97bbbe0a82278fc7bcdca2b.png", + "thumb": "items/images/en/thumbs/final_tap.e06ec710b97bbbe0a82278fc7bcdca2b.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a514", + "slug": "hydraulic_chamber", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/LessRecoilSmallerMagShotgunMod", + "tags": [ + "primary", + "pvp", + "shotgun", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hydraulic Chamber", + "icon": "items/images/en/hydraulic_chamber.7da4fc38106cfacf117579b3605e02a6.png", + "thumb": "items/images/en/thumbs/hydraulic_chamber.7da4fc38106cfacf117579b3605e02a6.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a515", + "slug": "hydraulic_gauge", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/LessRecoilSmallerMagRifleMod", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "assault_rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hydraulic Gauge", + "icon": "items/images/en/hydraulic_gauge.dd072c8d4744b9a456008a7f2adbee13.png", + "thumb": "items/images/en/thumbs/hydraulic_gauge.dd072c8d4744b9a456008a7f2adbee13.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a519", + "slug": "loose_hatch", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/FasterReloadMoreRecoilRifleMod", + "tags": [ + "common", + "primary", + "pvp", + "mod", + "assault_rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Loose Hatch", + "icon": "items/images/en/loose_hatch.f05f812b3c159e455963f9857e4db68d.png", + "thumb": "items/images/en/thumbs/loose_hatch.f05f812b3c159e455963f9857e4db68d.128x128.png" + } + } + }, + { + "id": "56a7b2ae1133f656cb085d95", + "slug": "narrow_barrel", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/AccuracyWhileAimingShotgunMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Narrow Barrel", + "icon": "items/images/en/narrow_barrel.9be35f0e7b42e6ae5f014d807306b96c.png", + "thumb": "items/images/en/thumbs/narrow_barrel.9be35f0e7b42e6ae5f014d807306b96c.128x128.png" + } + } + }, + { + "id": "56aba2f38d6d183da42403bf", + "slug": "strun_wraith_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StrunWraithBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Strun Wraith Barrel", + "icon": "items/images/en/strun_wraith_barrel.0ef693321b08beb361c5a654663ecf32.png", + "thumb": "items/images/en/thumbs/strun_wraith_barrel.0ef693321b08beb361c5a654663ecf32.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5a9ed835b2b6a80133127c2d", + "slug": "eidolon_zenurik_lens", + "gameRef": "/Lotus/Upgrades/Focus/PowerLensOstron", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Eidolon Zenurik Lens", + "icon": "items/images/en/eidolon_zenurik_lens.93dc4a7c122b9628cd72cee12ac77f3d.png", + "thumb": "items/images/en/thumbs/eidolon_zenurik_lens.93dc4a7c122b9628cd72cee12ac77f3d.128x128.png" + } + } + }, + { + "id": "5b2985e3eb069f04ea65b0fd", + "slug": "destreza_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DestrezaPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Destreza Prime Handle", + "icon": "items/images/en/destreza_prime_handle.b1a1cc461a2cfcf9998f0588c8e932a4.png", + "thumb": "items/images/en/thumbs/destreza_prime_handle.b1a1cc461a2cfcf9998f0588c8e932a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c4", + "slug": "enhanced_durability", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitHealthMaxMod", + "tags": [ + "mod", + "archwing", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Enhanced Durability", + "icon": "items/images/en/enhanced_durability.26080b7b3c3ed24d31ddecccfd213b0a.png", + "thumb": "items/images/en/thumbs/enhanced_durability.26080b7b3c3ed24d31ddecccfd213b0a.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d4", + "slug": "holster_amp", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerHolsterSpeedAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Holster Amp", + "icon": "items/images/en/speed_holster.54553d4b3c642c7702ab942455e005bb.png", + "thumb": "items/images/en/thumbs/speed_holster.54553d4b3c642c7702ab942455e005bb.128x128.png" + } + } + }, + { + "id": "551085e4e7798972c7353fb0", + "slug": "arcane_strike", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/MeleeSpeedOnHit", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Strike", + "icon": "items/images/en/arcane_strike.27c40994b55f506fe736175c9cebbf0e.png", + "thumb": "items/images/en/thumbs/arcane_strike.27c40994b55f506fe736175c9cebbf0e.128x128.png" + } + } + }, + { + "id": "55a46912e77989020f0a68d9", + "slug": "sinister_reach", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponBeamDistanceMod", + "tags": [ + "mod", + "uncommon", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sinister Reach", + "icon": "items/images/en/sinister_reach.00fe6e847ea514728bf3c7ce6c6fe673.png", + "thumb": "items/images/en/thumbs/sinister_reach.00fe6e847ea514728bf3c7ce6c6fe673.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89b1", + "slug": "vectis_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeVectis/PrimeVectisRifle", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Vectis Prime Set", + "icon": "items/images/en/vectis_prime_set.028e001af4469482df80bff29542e043.png", + "thumb": "items/images/en/thumbs/vectis_prime_set.028e001af4469482df80bff29542e043.128x128.png" + } + } + }, + { + "id": "59e3afcd115f1d887cfd7ac8", + "slug": "carving_mantis", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DualSwordCmbThreeMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "dual_swords" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Carving Mantis", + "icon": "items/images/en/carving_mantis.3536f840864456911b4003a33fc522fd.png", + "thumb": "items/images/en/thumbs/carving_mantis.3536f840864456911b4003a33fc522fd.128x128.png" + } + } + }, + { + "id": "5cdedd22fc2db20e0d0c5543", + "slug": "primed_pack_leader", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/Expert/KubrowPackLeaderExpertMod", + "tags": [ + "mod", + "legendary", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Pack Leader", + "icon": "items/images/en/primed_pack_leader.39a41b49aeb7fd8cac6cce8a51c86513.png", + "thumb": "items/images/en/thumbs/primed_pack_leader.39a41b49aeb7fd8cac6cce8a51c86513.128x128.png" + } + } + }, + { + "id": "56153e78b66f83706f01716f", + "slug": "arcane_nullifier", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/MagneticProcResist", + "tags": [ + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Nullifier", + "icon": "items/images/en/arcane_nullifier.2fa3bc7cd7e902ae797f175896f10f97.png", + "thumb": "items/images/en/thumbs/arcane_nullifier.2fa3bc7cd7e902ae797f175896f10f97.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89ab", + "slug": "rhino_prime_set", + "gameRef": "/Lotus/Powersuits/Rhino/RhinoPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Rhino Prime Set", + "icon": "items/images/en/rhino_prime_set.22301207f9463fe9ab215e40eb23a326.png", + "thumb": "items/images/en/thumbs/rhino_prime_set.22301207f9463fe9ab215e40eb23a326.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89ad", + "slug": "sicarus_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeSicarus/PrimeSicarusPistol", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Sicarus Prime Set", + "icon": "items/images/en/sicarus_prime_set.e7c07172e6d63d49ae349d508c56fc85.png", + "thumb": "items/images/en/thumbs/sicarus_prime_set.e7c07172e6d63d49ae349d508c56fc85.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a50f", + "slug": "grinloked", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/MoreAccuracyOnHitGrinlokMod", + "tags": [ + "primary", + "pvp", + "grinlok", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Grinloked", + "icon": "items/images/en/grinloked.a9052cbab7dc1518e74b3e5c2e3abf14.png", + "thumb": "items/images/en/thumbs/grinloked.a9052cbab7dc1518e74b3e5c2e3abf14.128x128.png" + } + } + }, + { + "id": "55a46ad5e77989029d9706ee", + "slug": "arcane_victory", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/HealthRegenOnHeadshot", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Victory", + "icon": "items/images/en/arcane_victory.2e3e7da2e7600a0e376eae98c3fd80a9.png", + "thumb": "items/images/en/thumbs/arcane_victory.2e3e7da2e7600a0e376eae98c3fd80a9.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a510", + "slug": "hastened_steps", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/FasterSprintLessShield", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hastened Steps", + "icon": "items/images/en/hastened_steps.c981a49b2097a6a207d3623dd8a09b91.png", + "thumb": "items/images/en/thumbs/hastened_steps.c981a49b2097a6a207d3623dd8a09b91.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4dc", + "slug": "lie_in_wait", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/HigherAimedDamageMoreRecoilSniperMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "sniper", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lie In Wait", + "icon": "items/images/en/lie_in_wait.eafb08669c7ca6c57e97f52f7888d002.png", + "thumb": "items/images/en/thumbs/lie_in_wait.eafb08669c7ca6c57e97f52f7888d002.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff30", + "slug": "boltor_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BoltorPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Boltor Prime Receiver", + "icon": "items/images/en/boltor_prime_receiver.a26157003dea5b1e1fe6660f46f3ea11.png", + "thumb": "items/images/en/thumbs/boltor_prime_receiver.a26157003dea5b1e1fe6660f46f3ea11.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff31", + "slug": "boltor_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BoltorPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Boltor Prime Stock", + "icon": "items/images/en/boltor_prime_stock.a26157003dea5b1e1fe6660f46f3ea11.png", + "thumb": "items/images/en/thumbs/boltor_prime_stock.a26157003dea5b1e1fe6660f46f3ea11.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e2", + "slug": "night_stalker", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/MarkTargetPistolMod", + "tags": [ + "secondary", + "pvp", + "uncommon", + "mod", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Night Stalker", + "icon": "items/images/en/night_stalker.e3f83458b9a79243df2613bf3d334861.png", + "thumb": "items/images/en/thumbs/night_stalker.e3f83458b9a79243df2613bf3d334861.128x128.png" + } + } + }, + { + "id": "57dbdc525e334907aa8edb57", + "slug": "synoid_heliocor", + "gameRef": "/Lotus/Weapons/Syndicates/CephalonSuda/Melee/CSHeliocor", + "tags": [ + "syndicate", + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Synoid Heliocor", + "icon": "items/images/en/synoid_heliocor.c2b16872e85db1f95ba4766f3edda84d.png", + "thumb": "items/images/en/thumbs/synoid_heliocor.c2b16872e85db1f95ba4766f3edda84d.128x128.png" + } + } + }, + { + "id": "57dbdc745e334907aa8edb5f", + "slug": "elytron_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/DemolitionArchwing/DemolitionArchwingSystemsComponent", + "tags": [ + "archwing", + "component" + ], + "i18n": { + "en": { + "name": "Elytron Systems", + "icon": "items/images/en/elytron_systems_blueprint.971d1e23ad3033ff3af37147302efb8b.png", + "thumb": "items/images/en/thumbs/elytron_systems_blueprint.971d1e23ad3033ff3af37147302efb8b.128x128.png", + "subIcon": "sub_icons/archwing/generic_systems_128x128.png" + } + } + }, + { + "id": "5800c6c9c021d9dc0a9f8914", + "slug": "steel_meridian_augment_mod", + "gameRef": "", + "tags": [ + "syndicate", + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "Steel Meridian Augment Mod", + "icon": "items/images/en/steel_meridian_augment_mod.24859218a0080d6b4454c825412f0711.webp", + "thumb": "items/images/en/thumbs/steel_meridian_augment_mod.24859218a0080d6b4454c825412f0711.128x128.webp" + } + } + }, + { + "id": "5800c901c021d9dc0a9f891a", + "slug": "shadow_harvest", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPScytheStanceOne", + "tags": [ + "scythes", + "pvp", + "uncommon", + "stance", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shadow Harvest", + "icon": "items/images/en/shadow_harvest.168ec1d9aeb51d09579f074739802850.png", + "thumb": "items/images/en/thumbs/shadow_harvest.168ec1d9aeb51d09579f074739802850.128x128.png" + } + } + }, + { + "id": "5800c901c021d9dc0a9f891c", + "slug": "argent_scourge", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPPolearmStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "polearms", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Argent Scourge", + "icon": "items/images/en/argent_scourge.8a20a60d9783334c31cfe5eb983f61cd.png", + "thumb": "items/images/en/thumbs/argent_scourge.8a20a60d9783334c31cfe5eb983f61cd.128x128.png" + } + } + }, + { + "id": "57bc9c84e506eb45ea251457", + "slug": "tigris_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeTigrisBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tigris Prime Barrel", + "icon": "items/images/en/tigris_prime_barrel.5f82721ea78697c95208b9bceb72c4a4.png", + "thumb": "items/images/en/thumbs/tigris_prime_barrel.5f82721ea78697c95208b9bceb72c4a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d3", + "slug": "eject_magazine", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/PassiveReloadMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Eject Magazine", + "icon": "items/images/en/eject_magazine.6044d09b0f7c71b1e6b676be8c288636.png", + "thumb": "items/images/en/thumbs/eject_magazine.6044d09b0f7c71b1e6b676be8c288636.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a51f", + "slug": "plan_b", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/FasterPistolRoFOnHitBowMod", + "tags": [ + "primary", + "pvp", + "rare", + "bow", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Plan B", + "icon": "items/images/en/plan_b.987847916d518013b6d23ea79367e65c.png", + "thumb": "items/images/en/thumbs/plan_b.987847916d518013b6d23ea79367e65c.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ee", + "slug": "burning_wasp", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/WhipCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "whips" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Burning Wasp", + "icon": "items/images/en/burning_wasp.27724a9e8be0d882e6190dc13ea814ab.png", + "thumb": "items/images/en/thumbs/burning_wasp.27724a9e8be0d882e6190dc13ea814ab.128x128.png" + } + } + }, + { + "id": "56a7b2801133f656cb085d8c", + "slug": "sharpened_bullets", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/CritDamageWhileAimingPistolMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sharpened Bullets", + "icon": "items/images/en/sharpened_bullets.e2574bfc3a35927af69218dd4f48a6f6.png", + "thumb": "items/images/en/thumbs/sharpened_bullets.e2574bfc3a35927af69218dd4f48a6f6.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ee", + "slug": "ripper_rounds", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/DamageBiasPunctureRifleMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "rifle", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ripper Rounds", + "icon": "items/images/en/ripper_rounds.b14591b6f15dcf7aba2a721201fd706e.png", + "thumb": "items/images/en/thumbs/ripper_rounds.b14591b6f15dcf7aba2a721201fd706e.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff63", + "slug": "soma_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SomaPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Soma Prime Receiver", + "icon": "items/images/en/soma_prime_receiver.1bf4937a6c2106c373cffeb93b1c87e0.png", + "thumb": "items/images/en/thumbs/soma_prime_receiver.1bf4937a6c2106c373cffeb93b1c87e0.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156f0", + "slug": "reaping_spiral", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/ScytheCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "scythes" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Reaping Spiral", + "icon": "items/images/en/reaping_spiral.77e9198edff9f980f9afba221e5431dc.png", + "thumb": "items/images/en/thumbs/reaping_spiral.77e9198edff9f980f9afba221e5431dc.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff64", + "slug": "soma_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SomaPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Soma Prime Stock", + "icon": "items/images/en/soma_prime_stock.1bf4937a6c2106c373cffeb93b1c87e0.png", + "thumb": "items/images/en/thumbs/soma_prime_stock.1bf4937a6c2106c373cffeb93b1c87e0.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f3", + "slug": "sharpened_blade", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/DamageBiasSlashMeleeMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sharpened Blade", + "icon": "items/images/en/sharpened_blade.d41298d6bb8919cb55975048c052a5bf.png", + "thumb": "items/images/en/thumbs/sharpened_blade.d41298d6bb8919cb55975048c052a5bf.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4fa", + "slug": "strafing_slide", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/MoreAccuracyLessRecoilSlidingPistolMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Strafing Slide", + "icon": "items/images/en/strafing_slide.7c339df1175de65544fdabd98bad1310.png", + "thumb": "items/images/en/thumbs/strafing_slide.7c339df1175de65544fdabd98bad1310.128x128.png" + } + } + }, + { + "id": "57222f1092cc365777a61c0d", + "slug": "scimitar_set", + "gameRef": "/Lotus/Types/Items/Ships/BlueSkyShip", + "tags": [ + "set" + ], + "i18n": { + "en": { + "name": "Scimitar Set", + "icon": "items/images/en/scimitar_set.c8644ada3c4381efbe9a11b55c58b0a7.png", + "thumb": "items/images/en/thumbs/scimitar_set.c8644ada3c4381efbe9a11b55c58b0a7.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4fb", + "slug": "surplus_diverters", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/EnergyOnFullShieldRegenMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Surplus Diverters", + "icon": "items/images/en/surplus_diverters.09029ac49b2910d44f759dd05afc889e.png", + "thumb": "items/images/en/thumbs/surplus_diverters.09029ac49b2910d44f759dd05afc889e.128x128.png" + } + } + }, + { + "id": "5615432cb66f8371035bfa33", + "slug": "cataclysmic_continuum", + "gameRef": "/Lotus/Powersuits/Magician/TearInSpaceAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "limbo" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cataclysmic Continuum", + "icon": "items/images/en/cataclysmic_continuum.97b3de0d31396da2b920bef226ea8791.png", + "thumb": "items/images/en/thumbs/cataclysmic_continuum.97b3de0d31396da2b920bef226ea8791.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8993", + "slug": "braton_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/BratonPrime", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Braton Prime Set", + "icon": "items/images/en/braton_prime_set.ae229642d6179ebfb1547ed7d976e749.png", + "thumb": "items/images/en/thumbs/braton_prime_set.ae229642d6179ebfb1547ed7d976e749.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ec", + "slug": "relentless_assault", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/MeleeVictimStaminaDrain", + "tags": [ + "mod", + "rare", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Relentless Assault", + "icon": "items/images/en/relentless_assault.508cba6b424a5d39e1cd996169c00020.png", + "thumb": "items/images/en/thumbs/relentless_assault.508cba6b424a5d39e1cd996169c00020.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec89", + "slug": "silva_and_aegis_prime_hilt", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SilvaAegisPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Silva & Aegis Prime Hilt", + "icon": "items/images/en/silva_and_aegis_prime_hilt.d226bbe86d3eccd8c751958dba46a4f6.png", + "thumb": "items/images/en/thumbs/silva_and_aegis_prime_hilt.d226bbe86d3eccd8c751958dba46a4f6.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4cd", + "slug": "calculated_spring", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/MoreHealthLessBulletJumpMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Calculated Spring", + "icon": "items/images/en/calculated_spring.1b3e0f95557bd75066cd2801840dbe64.png", + "thumb": "items/images/en/thumbs/calculated_spring.1b3e0f95557bd75066cd2801840dbe64.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4cf", + "slug": "comet_rounds", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/DamageBiasImpactRifleMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "rifle", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Comet Rounds", + "icon": "items/images/en/comet_rounds.241aed9e2ba36e591104eda496da7cda.png", + "thumb": "items/images/en/thumbs/comet_rounds.241aed9e2ba36e591104eda496da7cda.128x128.png" + } + } + }, + { + "id": "59a48b625cd9938cfede703a", + "slug": "hydroid_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HydroidPrimeChassisBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Hydroid Prime Chassis Blueprint", + "icon": "items/images/en/hydroid_prime_chassis.5f1abb4ef137bf0dd41565a913f5232a.png", + "thumb": "items/images/en/thumbs/hydroid_prime_chassis.5f1abb4ef137bf0dd41565a913f5232a.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "588bc3bcc353473a172364f2", + "slug": "aklex_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AklexPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Aklex Prime Blueprint", + "icon": "items/images/en/aklex_prime_blueprint.d4be2f3e545d5e1101d5b83a027e68fe.png", + "thumb": "items/images/en/thumbs/aklex_prime_blueprint.d4be2f3e545d5e1101d5b83a027e68fe.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "588c7a51c353473a172364f4", + "slug": "aklex_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/AkLexPrimePistols", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Aklex Prime Set", + "icon": "items/images/en/aklex_prime_set.d4be2f3e545d5e1101d5b83a027e68fe.png", + "thumb": "items/images/en/thumbs/aklex_prime_set.d4be2f3e545d5e1101d5b83a027e68fe.128x128.png" + } + } + }, + { + "id": "59a5c2565cd9938cfede703d", + "slug": "ballistica_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeBallisticaBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ballistica Prime Blueprint", + "icon": "items/images/en/ballistica_prime_blueprint.4ed33348008ace40406d0383f692ecac.png", + "thumb": "items/images/en/thumbs/ballistica_prime_blueprint.4ed33348008ace40406d0383f692ecac.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c4", + "slug": "tranquil_cleave", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/KatanaCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "nikanas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tranquil Cleave", + "icon": "items/images/en/tranquil_cleave.e23ba51f66afdbde9fdf05c445ea99c2.png", + "thumb": "items/images/en/thumbs/tranquil_cleave.e23ba51f66afdbde9fdf05c445ea99c2.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515601", + "slug": "link_vitality", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowLinkHealthMaxMod", + "tags": [ + "mod", + "uncommon", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Link Vitality", + "icon": "items/images/en/link_health.a7011e17699c06f369132a947d66e5fe.png", + "thumb": "items/images/en/thumbs/link_health.a7011e17699c06f369132a947d66e5fe.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515602", + "slug": "pack_leader", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowPackLeaderMod", + "tags": [ + "mod", + "common", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pack Leader", + "icon": "items/images/en/pack_leader.4e87848ac52dd4ab5673acb0ddcaadfb.png", + "thumb": "items/images/en/thumbs/pack_leader.4e87848ac52dd4ab5673acb0ddcaadfb.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515604", + "slug": "soul_survivor", + "gameRef": "/Lotus/Powersuits/Necro/SoulPunchAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nekros" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Soul Survivor", + "icon": "items/images/en/soul_survivor.624cc099e5f256c381bd6d024d6d1270.png", + "thumb": "items/images/en/thumbs/soul_survivor.624cc099e5f256c381bd6d024d6d1270.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515607", + "slug": "thumper", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Thumper", + "tags": [ + "mod", + "common", + "sentinel", + "djinn" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Thumper", + "icon": "items/images/en/thumper.e357cdd92fb471cd5743fafdee3fa63b.png", + "thumb": "items/images/en/thumbs/thumper.e357cdd92fb471cd5743fafdee3fa63b.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a6", + "slug": "rush", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarSprintSpeedMod", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rush", + "icon": "items/images/en/rush.f8e228622bcae9b591c244d0c257d2b8.png", + "thumb": "items/images/en/thumbs/rush.f8e228622bcae9b591c244d0c257d2b8.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a9", + "slug": "infected_clip", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponToxinDamageMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Infected Clip", + "icon": "items/images/en/infected_clip.2dcda9f516cee1490539981e6167c1ea.png", + "thumb": "items/images/en/thumbs/infected_clip.2dcda9f516cee1490539981e6167c1ea.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156af", + "slug": "cleanse_infested", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponShotgunFactionDamageInfested", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cleanse Infested", + "icon": "items/images/en/cleanse_infested.e6aacd608ac9598fc9a3ad117ca10b11.png", + "thumb": "items/images/en/thumbs/cleanse_infested.e6aacd608ac9598fc9a3ad117ca10b11.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b1", + "slug": "blaze", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/BlazeMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blaze", + "icon": "items/images/en/blaze.273c8ee4490ace959257a4b9015f4237.png", + "thumb": "items/images/en/thumbs/blaze.273c8ee4490ace959257a4b9015f4237.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c8", + "slug": "vacuum", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/UniversalVacuum", + "tags": [ + "mod", + "common", + "sentinel", + "robotic" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vacuum", + "icon": "items/images/en/vacuum.451be5b17b63faa76cab6fafac26dadd.png", + "thumb": "items/images/en/thumbs/vacuum.451be5b17b63faa76cab6fafac26dadd.128x128.png" + } + } + }, + { + "id": "5bc24accb919f2010f7d579b", + "slug": "energy_generator", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/ItemDropOnAssist", + "tags": [ + "mod", + "rare", + "sentinel", + "dethcube" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Energy Generator", + "icon": "items/images/en/energy_generator.8957d37464221bed882c611f37c46e68.png", + "thumb": "items/images/en/thumbs/energy_generator.8957d37464221bed882c611f37c46e68.128x128.png" + } + } + }, + { + "id": "5be5f5a03ffcc7038857f108", + "slug": "scarlet_hurricane", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPClawStanceOne", + "tags": [ + "claws", + "pvp", + "uncommon", + "stance", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Scarlet Hurricane", + "icon": "items/images/en/scarlet_hurricane.1f4c763aa9db4ebbb599b301614a9f4f.png", + "thumb": "items/images/en/thumbs/scarlet_hurricane.1f4c763aa9db4ebbb599b301614a9f4f.128x128.png" + } + } + }, + { + "id": "5be5f5a13ffcc7038857f110", + "slug": "vicious_approach", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPPunchKickStanceOne", + "tags": [ + "sparring", + "uncommon", + "stance", + "pvp", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vicious Approach", + "icon": "items/images/en/vicious_approach.4ed4f3c55e9a8ec701ce0b61c7424de6.png", + "thumb": "items/images/en/thumbs/vicious_approach.4ed4f3c55e9a8ec701ce0b61c7424de6.128x128.png" + } + } + }, + { + "id": "5be5f5a23ffcc7038857f117", + "slug": "frost_jaw", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/DualStat/KubrowIceEventMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Frost Jaw", + "icon": "items/images/en/frost_jaw.d59a7a5de076a6b9d8207259212dace6.png", + "thumb": "items/images/en/thumbs/frost_jaw.d59a7a5de076a6b9d8207259212dace6.128x128.png" + } + } + }, + { + "id": "5be5f5a23ffcc7038857f11d", + "slug": "shock_collar", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/DualStat/KubrowElectEventMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shock Collar", + "icon": "items/images/en/shock_collar.a434f653cdec1d961e045ac057b5ac16.png", + "thumb": "items/images/en/thumbs/shock_collar.a434f653cdec1d961e045ac057b5ac16.128x128.png" + } + } + }, + { + "id": "5be701133ffcc703e462c706", + "slug": "thrash_landing", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBTrickExplosionMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Thrash Landing", + "icon": "items/images/en/thrash_landing.c30cc6c306e463d2d6ff95992e7b2a27.png", + "thumb": "items/images/en/thumbs/thrash_landing.c30cc6c306e463d2d6ff95992e7b2a27.128x128.png" + } + } + }, + { + "id": "5ce7fd88d23a3b00908c4213", + "slug": "motus_impact", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Raptor/RaptorModC", + "tags": [ + "mod", + "uncommon", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Motus Impact", + "icon": "items/images/en/motus_impact.04a89ad8cc6aff8d589615daff9f1187.png", + "thumb": "items/images/en/thumbs/motus_impact.04a89ad8cc6aff8d589615daff9f1187.128x128.png" + } + } + }, + { + "id": "5ce7fd88d23a3b00908c4214", + "slug": "aero_vantage", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hawk/HawkModA", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Aero Vantage", + "icon": "items/images/en/aero_vantage.ae2bfdca388fdeed005c5a86bf7e017f.png", + "thumb": "items/images/en/thumbs/aero_vantage.ae2bfdca388fdeed005c5a86bf7e017f.128x128.png" + } + } + }, + { + "id": "5ce7fd88d23a3b00908c4215", + "slug": "motus_setup", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Raptor/RaptorModB", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Motus Setup", + "icon": "items/images/en/motus_setup.a901c441bed40b5e7ab7726de16313c2.png", + "thumb": "items/images/en/thumbs/motus_setup.a901c441bed40b5e7ab7726de16313c2.128x128.png" + } + } + }, + { + "id": "5ce7fd88d23a3b00908c4216", + "slug": "gale_kick", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/WarframeMightyKickMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gale Kick", + "icon": "items/images/en/gale_kick.df7464675f52fc74c5273bea84ec6e13.png", + "thumb": "items/images/en/thumbs/gale_kick.df7464675f52fc74c5273bea84ec6e13.128x128.png" + } + } + }, + { + "id": "5ce7fd89d23a3b00908c4217", + "slug": "motus_signal", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Raptor/RaptorModA", + "tags": [ + "common", + "mod", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Motus Signal", + "icon": "items/images/en/motus_signal.82e3d6747a47f0aed2d30057d39d7cec.png", + "thumb": "items/images/en/thumbs/motus_signal.82e3d6747a47f0aed2d30057d39d7cec.128x128.png" + } + } + }, + { + "id": "5cf6390ff77f1401f37b3514", + "slug": "deck_12_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeckTwelve", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deck 12 Scene", + "icon": "items/images/en/deck_12_scene.787c4c6d5e2e5ee9dff8a5d381fbe7b7.png", + "thumb": "items/images/en/thumbs/deck_12_scene.787c4c6d5e2e5ee9dff8a5d381fbe7b7.128x128.png" + } + } + }, + { + "id": "5d21ce42f4604c012d1e0c0c", + "slug": "ninkondi_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/NinkondiPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ninkondi Prime Blueprint", + "icon": "items/images/en/ninkondi_prime_blueprint.d8516fa5fc9fe9518b6b9ec8fa59cb28.png", + "thumb": "items/images/en/thumbs/ninkondi_prime_blueprint.d8516fa5fc9fe9518b6b9ec8fa59cb28.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5d21ce43f4604c012d1e0c0d", + "slug": "zhuge_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZhugePrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Zhuge Prime Barrel", + "icon": "items/images/en/zhuge_prime_barrel.38e0e6189f1a333b382507a117b194a9.png", + "thumb": "items/images/en/thumbs/zhuge_prime_barrel.38e0e6189f1a333b382507a117b194a9.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5d21ce45f4604c012d1e0c10", + "slug": "ninkondi_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NinkondiPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ninkondi Prime Handle", + "icon": "items/images/en/ninkondi_prime_handle.d8516fa5fc9fe9518b6b9ec8fa59cb28.png", + "thumb": "items/images/en/thumbs/ninkondi_prime_handle.d8516fa5fc9fe9518b6b9ec8fa59cb28.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5d21ce45f4604c012d1e0c11", + "slug": "ninkondi_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeNinkondi/PrimeNikondi", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Ninkondi Prime Set", + "icon": "items/images/en/ninkondi_prime_set.d8516fa5fc9fe9518b6b9ec8fa59cb28.png", + "thumb": "items/images/en/thumbs/ninkondi_prime_set.d8516fa5fc9fe9518b6b9ec8fa59cb28.128x128.png" + } + } + }, + { + "id": "5d21ce48f4604c012d1e0c18", + "slug": "wukong_prime_set", + "gameRef": "/Lotus/Powersuits/MonkeyKing/WukongPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Wukong Prime Set", + "icon": "items/images/en/wukong_prime_set.6fa7196ae48a7a3901c35834476f3891.png", + "thumb": "items/images/en/thumbs/wukong_prime_set.6fa7196ae48a7a3901c35834476f3891.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff5d", + "slug": "scindo_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeScindoHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Scindo Prime Handle", + "icon": "items/images/en/scindo_prime_handle.ae70ac90b811a44f64263394b6410c28.png", + "thumb": "items/images/en/thumbs/scindo_prime_handle.ae70ac90b811a44f64263394b6410c28.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f6", + "slug": "vile_precision", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/CorruptedRecoilFireRateRifle", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vile Precision", + "icon": "items/images/en/vile_precision.8b4bb8b7e4906de9e2c199af1a4407d5.png", + "thumb": "items/images/en/thumbs/vile_precision.8b4bb8b7e4906de9e2c199af1a4407d5.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f8", + "slug": "parallax_scope", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleCritChanceMod", + "tags": [ + "common", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Parallax Scope", + "icon": "items/images/en/parallax_scope.733e5e6c2f4ae0dd23263865e11fafa5.png", + "thumb": "items/images/en/thumbs/parallax_scope.733e5e6c2f4ae0dd23263865e11fafa5.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155fe", + "slug": "vitality", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarHealthMaxMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Vitality", + "icon": "items/images/en/vitality.dc0a453e7346e5dfe6e297413ee30740.png", + "thumb": "items/images/en/thumbs/vitality.dc0a453e7346e5dfe6e297413ee30740.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515609", + "slug": "sniper_scavenger", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerSniperAmmoAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sniper Scavenger", + "icon": "items/images/en/sniper_scavenger.fc4f17404bac3a608b6d5abb2990b66d.png", + "thumb": "items/images/en/thumbs/sniper_scavenger.fc4f17404bac3a608b6d5abb2990b66d.128x128.png" + } + } + }, + { + "id": "5ba9f2044567de01415f638d", + "slug": "sunika_kubrow_imprint", + "gameRef": "/Lotus/Types/Game/KubrowPet/HunterKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Sunika Kubrow Imprint", + "icon": "items/images/en/sunika_kubrow_imprint.72f95cb9fc93f997efa0510120b0197c.png", + "thumb": "items/images/en/thumbs/sunika_kubrow_imprint.72f95cb9fc93f997efa0510120b0197c.128x128.png" + } + } + }, + { + "id": "5ba9f2054567de01415f6391", + "slug": "adarza_kavat_imprint", + "gameRef": "/Lotus/Types/Game/CatbrowPet/MirrorCatbrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Adarza Kavat Imprint", + "icon": "items/images/en/adarza_kavat_imprint.cd718330ac1d7e42ba6eaddf777f73f0.png", + "thumb": "items/images/en/thumbs/adarza_kavat_imprint.cd718330ac1d7e42ba6eaddf777f73f0.128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283493", + "slug": "rubico_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/RubicoPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Rubico Prime Barrel", + "icon": "items/images/en/rubico_prime_barrel.2071211bc2436d4e768dbb61f98f6efd.png", + "thumb": "items/images/en/thumbs/rubico_prime_barrel.2071211bc2436d4e768dbb61f98f6efd.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e2", + "slug": "stormbringer", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponElectricityDamageMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Stormbringer", + "icon": "items/images/en/stormbringer.b285307831913950e6d3fc05500352c7.png", + "thumb": "items/images/en/thumbs/stormbringer.b285307831913950e6d3fc05500352c7.128x128.png" + } + } + }, + { + "id": "551085b5e7798972a3b857aa", + "slug": "arcane_eruption", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/RadialKnockdownOnEnergyPickup", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Eruption", + "icon": "items/images/en/arcane_eruption.96e2b7f03322df6295089a9dd442df86.png", + "thumb": "items/images/en/thumbs/arcane_eruption.96e2b7f03322df6295089a9dd442df86.128x128.png" + } + } + }, + { + "id": "54aaf28ee7798969777a27a9", + "slug": "arcane_vespa_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Jade/JadeHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Vespa Helmet", + "icon": "items/images/en/arcane_vespa_nyx_helmet.a37db070518d6e37e74bf59692dff155.png", + "thumb": "items/images/en/thumbs/arcane_vespa_nyx_helmet.a37db070518d6e37e74bf59692dff155.128x128.png" + } + } + }, + { + "id": "5526aec0e779896af941825a", + "slug": "escape_velocity", + "gameRef": "/Lotus/Powersuits/AntiMatter/WormHoleAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nova" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Escape Velocity", + "icon": "items/images/en/escape_velocity.dc54d3abdd73262e04e7c0752bbc0980.png", + "thumb": "items/images/en/thumbs/escape_velocity.dc54d3abdd73262e04e7c0752bbc0980.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a4", + "slug": "expel_infested", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPistolFactionDamageInfested", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Expel Infested", + "icon": "items/images/en/expel_infested.7796f9a557ec4ad1336434c677df218f.png", + "thumb": "items/images/en/thumbs/expel_infested.7796f9a557ec4ad1336434c677df218f.128x128.png" + } + } + }, + { + "id": "5d322d0f74bdad027da4d06f", + "slug": "gas_city_cloud_vista_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityConnector14Alt", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Cloud Vista Scene", + "icon": "items/images/en/gas_city_cloud_vista_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_cloud_vista_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c7", + "slug": "combustion_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingWeaponFireDamageMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Combustion Rounds", + "icon": "items/images/en/combustion_rounds.5f8d4224dcdc992f9029cd491cd98f35.png", + "thumb": "items/images/en/thumbs/combustion_rounds.5f8d4224dcdc992f9029cd491cd98f35.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c9", + "slug": "sniper_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponSnipersConvertAmmoMod", + "tags": [ + "mod", + "rare", + "sniper" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sniper Ammo Mutation", + "icon": "items/images/en/sniper_ammo_mutation.b1a91ddd13035a8130e10c35cd895faf.png", + "thumb": "items/images/en/thumbs/sniper_ammo_mutation.b1a91ddd13035a8130e10c35cd895faf.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff7c", + "slug": "loki_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LokiPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Loki Prime Blueprint", + "icon": "items/images/en/loki_prime_blueprint.abc05c280f92196bcb688643873fbf95.png", + "thumb": "items/images/en/thumbs/loki_prime_blueprint.abc05c280f92196bcb688643873fbf95.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51558f", + "slug": "seeking_force", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponPunctureDepthMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Seeking Force", + "icon": "items/images/en/seeking_force.9efcc6f0d43c53ca9a57a65d753de6f3.png", + "thumb": "items/images/en/thumbs/seeking_force.9efcc6f0d43c53ca9a57a65d753de6f3.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515595", + "slug": "target_cracker", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponCritDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Target Cracker", + "icon": "items/images/en/target_cracker.6b81dd2b57724976438b9b083f8301f3.png", + "thumb": "items/images/en/thumbs/target_cracker.6b81dd2b57724976438b9b083f8301f3.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515598", + "slug": "fleeting_expertise", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/CorruptedEfficiencyDurationWarframe", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fleeting Expertise", + "icon": "items/images/en/fleeting_expertise.30c89f6ff728063e5579edd42dd7f811.png", + "thumb": "items/images/en/thumbs/fleeting_expertise.30c89f6ff728063e5579edd42dd7f811.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51559e", + "slug": "critical_delay", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/CorruptedCritRateFireRateRifle", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Critical Delay", + "icon": "items/images/en/critical_delay.5e621ae9ee9a6d2d4576565a26af45cb.png", + "thumb": "items/images/en/thumbs/critical_delay.5e621ae9ee9a6d2d4576565a26af45cb.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b4", + "slug": "provoked", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarGroundFireDmgMod", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Provoked", + "icon": "items/images/en/provoked.d03668dd7faa355653d8c8b691520299.png", + "thumb": "items/images/en/thumbs/provoked.d03668dd7faa355653d8c8b691520299.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b6", + "slug": "spoiled_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/CorruptedDamageSpeedMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Spoiled Strike", + "icon": "items/images/en/spoiled_strike.79611a3d5edd3c4cfaa9a6c514cc6310.png", + "thumb": "items/images/en/thumbs/spoiled_strike.79611a3d5edd3c4cfaa9a6c514cc6310.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156bc", + "slug": "incendiary_coat", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponFireDamageMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Incendiary Coat", + "icon": "items/images/en/incendiary_coat.08c60b348153dcf1a33305345e93cc79.png", + "thumb": "items/images/en/thumbs/incendiary_coat.08c60b348153dcf1a33305345e93cc79.128x128.png" + } + } + }, + { + "id": "54aaf2dfe779891cc44486b8", + "slug": "arcane_coil_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Mag/MagHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Coil Helmet", + "icon": "items/images/en/arcane_coil_mag_helmet.3851f27fceaf9d1e083d67d05b8f846c.png", + "thumb": "items/images/en/thumbs/arcane_coil_mag_helmet.3851f27fceaf9d1e083d67d05b8f846c.128x128.png" + } + } + }, + { + "id": "59dfeb6c115f1d887cfd7abf", + "slug": "augur_accord", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Augur/WarframeAugurAccordMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Augur Accord", + "icon": "items/images/en/augur_accord.068cadfef07bb4e729df53eb1b2f46db.png", + "thumb": "items/images/en/thumbs/augur_accord.068cadfef07bb4e729df53eb1b2f46db.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f6", + "slug": "breach_loader", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponEventPunctureDamageMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Breach Loader", + "icon": "items/images/en/breach_loader.ac1c6544ae28057ae47e86ef8ceceff5.png", + "thumb": "items/images/en/thumbs/breach_loader.ac1c6544ae28057ae47e86ef8ceceff5.128x128.png" + } + } + }, + { + "id": "561536d5b66f836f889b79bb", + "slug": "dual_kamas_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeDualKamasBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Dual Kamas Prime Blueprint", + "icon": "items/images/en/dual_kamas_prime_blueprint.7d95cad6d71a59fa98902cc8bfe87da2.png", + "thumb": "items/images/en/thumbs/dual_kamas_prime_blueprint.7d95cad6d71a59fa98902cc8bfe87da2.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "561537e3b66f836f9fb6b4e8", + "slug": "gaias_tragedy", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/FistCmbThreeMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "fists" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gaia's Tragedy", + "icon": "items/images/en/gaias_tragedy.00ab7027cd3116017ba7758e21af423a.png", + "thumb": "items/images/en/thumbs/gaias_tragedy.00ab7027cd3116017ba7758e21af423a.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff49", + "slug": "latron_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatronPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Latron Prime Barrel", + "icon": "items/images/en/latron_prime_barrel.5c8b8009acbdb97fd49177ba155ecfbe.png", + "thumb": "items/images/en/thumbs/latron_prime_barrel.5c8b8009acbdb97fd49177ba155ecfbe.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5667568bf9001cd2824a6829", + "slug": "karak_wraith_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KarakWraithBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Karak Wraith Barrel", + "icon": "items/images/en/karak_wraith_barrel.b26c71305a536b33e469bc4a8866adea.png", + "thumb": "items/images/en/thumbs/karak_wraith_barrel.b26c71305a536b33e469bc4a8866adea.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5667576ddb7c7a568a8d45c1", + "slug": "zenurik_lens", + "gameRef": "/Lotus/Upgrades/Focus/PowerLens", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Zenurik Lens", + "icon": "items/images/en/zenurik_lens.3a08aee24f8a10e3bf4a0d1e28c34528.png", + "thumb": "items/images/en/thumbs/zenurik_lens.3a08aee24f8a10e3bf4a0d1e28c34528.128x128.png" + } + } + }, + { + "id": "566759c8db7c7a568a8d45c4", + "slug": "agility_drift", + "gameRef": "/Lotus/Upgrades/Mods/OrokinChallenge/OrokinChallengeModAgility", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Agility Drift", + "icon": "items/images/en/agility_drift.b2bb6cdbb38b3b7531de8b626a7805c6.png", + "thumb": "items/images/en/thumbs/agility_drift.b2bb6cdbb38b3b7531de8b626a7805c6.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155dd", + "slug": "bite", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowCritMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Bite", + "icon": "items/images/en/bite.a6fc634c425dd4f1fce100e679286c73.png", + "thumb": "items/images/en/thumbs/bite.a6fc634c425dd4f1fce100e679286c73.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af9418262", + "slug": "afterburn", + "gameRef": "/Lotus/Powersuits/Dragon/DragonBreathAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "chroma" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Afterburn", + "icon": "items/images/en/afterburn.b80b09df8cb5238b9f09230b76a27d8a.png", + "thumb": "items/images/en/thumbs/afterburn.b80b09df8cb5238b9f09230b76a27d8a.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af9418264", + "slug": "rising_storm", + "gameRef": "/Lotus/Powersuits/Ninja/NinjaStormAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ash" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rising Storm", + "icon": "items/images/en/rising_storm.7cf0510c35a5252a084c304666e6e779.png", + "thumb": "items/images/en/thumbs/rising_storm.7cf0510c35a5252a084c304666e6e779.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd899a", + "slug": "ember_prime_set", + "gameRef": "/Lotus/Powersuits/Ember/EmberPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Ember Prime Set", + "icon": "items/images/en/ember_prime_set.971255acc3f1ad8a374d236c6af1c816.png", + "thumb": "items/images/en/thumbs/ember_prime_set.971255acc3f1ad8a374d236c6af1c816.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e0", + "slug": "redirection", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarShieldMaxMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Redirection", + "icon": "items/images/en/redirection.aaa8ac1376add92a1cc07bc95727d424.png", + "thumb": "items/images/en/thumbs/redirection.aaa8ac1376add92a1cc07bc95727d424.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd899b", + "slug": "fang_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualDagger/FangPrimeDagger", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Fang Prime Set", + "icon": "items/images/en/fang_prime_set.13b0c690a76382d0fbdebe84e4c509db.png", + "thumb": "items/images/en/thumbs/fang_prime_set.13b0c690a76382d0fbdebe84e4c509db.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af9418265", + "slug": "chilling_globe", + "gameRef": "/Lotus/Powersuits/Frost/IceShieldAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "frost" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Chilling Globe", + "icon": "items/images/en/chilling_globe.92223b7061c05a98afc460eb267fd053.png", + "thumb": "items/images/en/thumbs/chilling_globe.92223b7061c05a98afc460eb267fd053.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a4", + "slug": "mag_prime_set", + "gameRef": "/Lotus/Powersuits/Mag/MagPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Mag Prime Set", + "icon": "items/images/en/mag_prime_set.2afb45373319b966737bd91cf05a813c.png", + "thumb": "items/images/en/thumbs/mag_prime_set.2afb45373319b966737bd91cf05a813c.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af9418266", + "slug": "exothermic", + "gameRef": "/Lotus/Powersuits/Ember/WorldOnFireAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ember" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Exothermic", + "icon": "items/images/en/exothermic.50195eed5bedabd95f483cd244bff667.png", + "thumb": "items/images/en/thumbs/exothermic.50195eed5bedabd95f483cd244bff667.128x128.png" + } + } + }, + { + "id": "57bc9a40e506eb45ea251453", + "slug": "nekros_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NekrosPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nekros Prime Neuroptics Blueprint", + "icon": "items/images/en/nekros_prime_neuroptics.523943a15c82985ebe7cf14eac98966d.png", + "thumb": "items/images/en/thumbs/nekros_prime_neuroptics.523943a15c82985ebe7cf14eac98966d.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156cc", + "slug": "eagle_eye", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponZoomFovMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Eagle Eye", + "icon": "items/images/en/eagle_eye.84b925bc0a194c323f0a54f5ea4a2cd5.png", + "thumb": "items/images/en/thumbs/eagle_eye.84b925bc0a194c323f0a54f5ea4a2cd5.128x128.png" + } + } + }, + { + "id": "554d3c0ce7798942793d7e8a", + "slug": "shield_overload", + "gameRef": "/Lotus/Powersuits/Mag/ShieldRegenPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mag" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shield Overload", + "icon": "items/images/en/shield_overload.e2751dfa85b7b91e170d549cd1f6b574.png", + "thumb": "items/images/en/thumbs/shield_overload.e2751dfa85b7b91e170d549cd1f6b574.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa25", + "slug": "arc_coil", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/ArcTrap", + "tags": [ + "mod", + "common", + "sentinel", + "diriga" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arc Coil", + "icon": "items/images/en/arc_coil.0df8ece91fb4defa7ce30c1990cbe862.png", + "thumb": "items/images/en/thumbs/arc_coil.0df8ece91fb4defa7ce30c1990cbe862.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa26", + "slug": "chaos_sphere", + "gameRef": "/Lotus/Powersuits/Jade/ChaosAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nyx" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Chaos Sphere", + "icon": "items/images/en/chaos_sphere.4194f4d65e462bfc107592b025aef339.png", + "thumb": "items/images/en/thumbs/chaos_sphere.4194f4d65e462bfc107592b025aef339.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa27", + "slug": "hysterical_fixation", + "gameRef": "/Lotus/Powersuits/Berserker/LastStandPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "valkyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hysterical Fixation", + "icon": "items/images/en/hysterical_fixation.ee66a28ce6af173f246b554544b1121f.png", + "thumb": "items/images/en/thumbs/hysterical_fixation.ee66a28ce6af173f246b554544b1121f.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa2b", + "slug": "defiled_reckoning", + "gameRef": "/Lotus/Powersuits/Paladin/ReckoningPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "oberon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Defiled Reckoning", + "icon": "items/images/en/defiled_reckoning.a2814ddc291d021dc6e3ea9d9c88e92b.png", + "thumb": "items/images/en/thumbs/defiled_reckoning.a2814ddc291d021dc6e3ea9d9c88e92b.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d1", + "slug": "crash_shot", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/DamageBiasImpactShotgunMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crash Shot", + "icon": "items/images/en/crash_shot.8de3e7c1f08433a767ab31af52864e06.png", + "thumb": "items/images/en/thumbs/crash_shot.8de3e7c1f08433a767ab31af52864e06.128x128.png" + } + } + }, + { + "id": "59e203ce115f1d887cfd7ac6", + "slug": "ammo_case", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/ItemVacum", + "tags": [ + "mod", + "common", + "sentinel", + "carrier" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ammo Case", + "icon": "items/images/en/ammo_case.862c4134af807edfca25894181d72d50.png", + "thumb": "items/images/en/thumbs/ammo_case.862c4134af807edfca25894181d72d50.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192113", + "slug": "euphona_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/AllNew1hSG/AllNew1hSG", + "tags": [ + "prime", + "weapon", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Euphona Prime Set", + "icon": "items/images/en/euphona_prime_set.6a18cc50c57ac13c3203e872baf85a8d.png", + "thumb": "items/images/en/thumbs/euphona_prime_set.6a18cc50c57ac13c3203e872baf85a8d.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515645", + "slug": "blade_of_truth", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/JawSwordMod", + "tags": [ + "syndicate", + "mod", + "melee", + "rare", + "jaw_sword" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blade Of Truth", + "icon": "items/images/en/blade_of_truth.53d68caa8f7ae06642b2ed1fd8f3b6cd.png", + "thumb": "items/images/en/thumbs/blade_of_truth.53d68caa8f7ae06642b2ed1fd8f3b6cd.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515654", + "slug": "focus_energy", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/FocusEnergyMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Focus Energy", + "icon": "items/images/en/focus_energy.0c5ef63aa75c780a9ead1c58f65c98f9.png", + "thumb": "items/images/en/thumbs/focus_energy.0c5ef63aa75c780a9ead1c58f65c98f9.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51565c", + "slug": "hawk_eye", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPistolZoomFovMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hawk Eye", + "icon": "items/images/en/hawk_eye.099299329b644d2b752e32006e9c4e83.png", + "thumb": "items/images/en/thumbs/hawk_eye.099299329b644d2b752e32006e9c4e83.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff2b", + "slug": "boar_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BoarPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Boar Prime Blueprint", + "icon": "items/images/en/boar_prime_blueprint.5e8a5ba1520169c7a99c738624328d26.png", + "thumb": "items/images/en/thumbs/boar_prime_blueprint.5e8a5ba1520169c7a99c738624328d26.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec81", + "slug": "oberon_prime_set", + "gameRef": "/Lotus/Powersuits/Paladin/PaladinPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Oberon Prime Set", + "icon": "items/images/en/oberon_prime_set.d7f1623552bce11f166b715679e27022.png", + "thumb": "items/images/en/thumbs/oberon_prime_set.d7f1623552bce11f166b715679e27022.128x128.png" + } + } + }, + { + "id": "5783bf41d9b6753790c89e93", + "slug": "centaur_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchSwordShieldBlade", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Centaur Blade", + "icon": "items/images/en/centaur_blade.7365135b7b3831714b657721d6b1df22.png", + "thumb": "items/images/en/thumbs/centaur_blade.7365135b7b3831714b657721d6b1df22.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51567d", + "slug": "sweeping_serration", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponEventSlashDamageMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sweeping Serration", + "icon": "items/images/en/sweeping_serration.4b3c010db4dbd87d01acd779b861506f.png", + "thumb": "items/images/en/thumbs/sweeping_serration.4b3c010db4dbd87d01acd779b861506f.128x128.png" + } + } + }, + { + "id": "5783bf59d9b6753790c89e98", + "slug": "agkuza_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchHookSwordBlade", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Agkuza Blade", + "icon": "items/images/en/agkuza_blade.037f45c1777df3ce5657b0c40aac04b1.png", + "thumb": "items/images/en/thumbs/agkuza_blade.037f45c1777df3ce5657b0c40aac04b1.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51565f", + "slug": "link_redirection", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowLinkShieldMaxMod", + "tags": [ + "mod", + "uncommon", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Link Redirection", + "icon": "items/images/en/link_shields.37eaecc66465a26b78684db586e56335.png", + "thumb": "items/images/en/thumbs/link_shields.37eaecc66465a26b78684db586e56335.128x128.png" + } + } + }, + { + "id": "5ab167b7b2b6a80475780fab", + "slug": "tiberon_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TiberonPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Tiberon Prime Blueprint", + "icon": "items/images/en/tiberon_prime_blueprint.53f3cf1c68314c0555fbb7020d01f001.png", + "thumb": "items/images/en/thumbs/tiberon_prime_blueprint.53f3cf1c68314c0555fbb7020d01f001.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "55a469a4e7798902410538b1", + "slug": "prisma_dual_cleavers", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/PrismaDualCleavers", + "tags": [ + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Prisma Dual Cleavers", + "icon": "items/images/en/prisma_dual_cleavers.5fa78638ad0916b3f6acff746d006218.png", + "thumb": "items/images/en/thumbs/prisma_dual_cleavers.5fa78638ad0916b3f6acff746d006218.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a507", + "slug": "directed_convergence", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/SupraHigherAccuracyAiming", + "tags": [ + "primary", + "pvp", + "rare", + "supra", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Directed Convergence", + "icon": "items/images/en/directed_convergence.ca17ef6a0640dfc5803f732ef085c49f.png", + "thumb": "items/images/en/thumbs/directed_convergence.ca17ef6a0640dfc5803f732ef085c49f.128x128.png" + } + } + }, + { + "id": "56c3bbd55d2f0202da32e93b", + "slug": "saryn_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SarynPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Saryn Prime Blueprint", + "icon": "items/images/en/saryn_prime_blueprint.394094bef0383f954bd38d622bb075e5.png", + "thumb": "items/images/en/thumbs/saryn_prime_blueprint.394094bef0383f954bd38d622bb075e5.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54c686c9e7798913d9e63fff", + "slug": "primed_heavy_trauma", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponImpactDamageModExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Heavy Trauma", + "icon": "items/images/en/primed_heavy_trauma.bac389152dab880e42a72ef919212844.png", + "thumb": "items/images/en/thumbs/primed_heavy_trauma.bac389152dab880e42a72ef919212844.128x128.png" + } + } + }, + { + "id": "551085a6e77989729ab10a35", + "slug": "arcane_awakening", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/PistolDamageOnReload", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Awakening", + "icon": "items/images/en/arcane_awakening.5d194d91360b233f4226fd02af5d7d1d.png", + "thumb": "items/images/en/thumbs/arcane_awakening.5d194d91360b233f4226fd02af5d7d1d.128x128.png" + } + } + }, + { + "id": "598b06b4ab6b61be6fec0fb3", + "slug": "gamma_beacon", + "gameRef": "/Lotus/Types/Items/MiscItems/VayHekCoordinateFragmentB", + "tags": [ + "misc" + ], + "i18n": { + "en": { + "name": "Gamma Beacon", + "icon": "items/images/en/gamma_beacon.a5eb62c1015b306fdb907b61ff8aab52.png", + "thumb": "items/images/en/thumbs/gamma_beacon.a5eb62c1015b306fdb907b61ff8aab52.128x128.png" + } + } + }, + { + "id": "566751b75dcbc186f0536bd5", + "slug": "arcane_ultimatum", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/GolemArcaneArmorOnFinisher", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Ultimatum", + "icon": "items/images/en/arcane_ultimatum.6f19f5350ebf251e2c2375bbd667f537.png", + "thumb": "items/images/en/thumbs/arcane_ultimatum.6f19f5350ebf251e2c2375bbd667f537.128x128.png" + } + } + }, + { + "id": "56675641f9001cd2824a6824", + "slug": "dera_vandal_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/DeraVandalBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Dera Vandal Blueprint", + "icon": "items/images/en/dera_vandal_blueprint.15c5a1f8b62ab0520cf7394563f73aea.png", + "thumb": "items/images/en/thumbs/dera_vandal_blueprint.15c5a1f8b62ab0520cf7394563f73aea.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "590e255197a0add8e9d5da4b", + "slug": "prisma_obex", + "gameRef": "/Lotus/Weapons/Corpus/Melee/KickAndPunch/PrismaObex", + "tags": [ + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Prisma Obex", + "icon": "items/images/en/prisma_obex.f75428632785a844c428f7e2fa2a9bc6.png", + "thumb": "items/images/en/thumbs/prisma_obex.f75428632785a844c428f7e2fa2a9bc6.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8990", + "slug": "bo_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Staff/PrimeBo/PrimeBoWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Bo Prime Set", + "icon": "items/images/en/bo_prime_set.fad65cfb95d62a4275be60be30375846.png", + "thumb": "items/images/en/thumbs/bo_prime_set.fad65cfb95d62a4275be60be30375846.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8991", + "slug": "boar_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Shotgun/PrimeBoar", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Boar Prime Set", + "icon": "items/images/en/boar_prime_set.5e8a5ba1520169c7a99c738624328d26.png", + "thumb": "items/images/en/thumbs/boar_prime_set.5e8a5ba1520169c7a99c738624328d26.128x128.png" + } + } + }, + { + "id": "59a5cd4d5cd9938cfede7046", + "slug": "ballistica_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBallisticaReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ballistica Prime Receiver", + "icon": "items/images/en/ballistica_prime_receiver.4ed33348008ace40406d0383f692ecac.png", + "thumb": "items/images/en/thumbs/ballistica_prime_receiver.4ed33348008ace40406d0383f692ecac.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8992", + "slug": "boltor_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeBoltor/PrimeBoltor", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Boltor Prime Set", + "icon": "items/images/en/boltor_prime_set.a26157003dea5b1e1fe6660f46f3ea11.png", + "thumb": "items/images/en/thumbs/boltor_prime_set.a26157003dea5b1e1fe6660f46f3ea11.128x128.png" + } + } + }, + { + "id": "56aba30b8d6d183da42403c1", + "slug": "strun_wraith_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StrunWraithStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Strun Wraith Stock", + "icon": "items/images/en/strun_wraith_stock.0ef693321b08beb361c5a654663ecf32.png", + "thumb": "items/images/en/thumbs/strun_wraith_stock.0ef693321b08beb361c5a654663ecf32.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "56aba3108d6d183da42403c2", + "slug": "strun_wraith_set", + "gameRef": "/Lotus/Weapons/Tenno/Shotgun/ShotgunVandal", + "tags": [ + "weapon", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Strun Wraith Set", + "icon": "items/images/en/strun_wraith_set.0ef693321b08beb361c5a654663ecf32.png", + "thumb": "items/images/en/thumbs/strun_wraith_set.0ef693321b08beb361c5a654663ecf32.128x128.png" + } + } + }, + { + "id": "5a311f84c2c9e90dfff475f0", + "slug": "kogake_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeKogake/KogakePrimeKnuckles", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Kogake Prime Set", + "icon": "items/images/en/kogake_prime_set.456b865463108d6f6ff51da978f839cd.png", + "thumb": "items/images/en/thumbs/kogake_prime_set.456b865463108d6f6ff51da978f839cd.128x128.png" + } + } + }, + { + "id": "5a311f85c2c9e90dfff475f6", + "slug": "kogake_prime_gauntlet", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KogakePrimeGauntlet", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Kogake Prime Gauntlet", + "icon": "items/images/en/kogake_prime_gauntlet.456b865463108d6f6ff51da978f839cd.png", + "thumb": "items/images/en/thumbs/kogake_prime_gauntlet.456b865463108d6f6ff51da978f839cd.128x128.png", + "subIcon": "sub_icons/weapon/prime_gauntlet_128x128.png" + } + } + }, + { + "id": "5ab1570db2b6a8044d5137c2", + "slug": "zephyr_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ZephyrPrimeBlueprint", + "tags": [ + "warframe", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Zephyr Prime Blueprint", + "icon": "items/images/en/zephyr_prime_blueprint.4ffc19dd100b3c182beef5f1ef3d337e.png", + "thumb": "items/images/en/thumbs/zephyr_prime_blueprint.4ffc19dd100b3c182beef5f1ef3d337e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5adf8729931bcf00574adc0f", + "slug": "lato_vandal_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/LatoVandal", + "tags": [ + "weapon", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Lato Vandal Set", + "icon": "items/images/en/lato_vandal_set.d3f82be07b93c35d6e1e9430c796ac9a.png", + "thumb": "items/images/en/thumbs/lato_vandal_set.d3f82be07b93c35d6e1e9430c796ac9a.128x128.png" + } + } + }, + { + "id": "5adf8729931bcf00574adc11", + "slug": "lato_vandal_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/LatoVandalBlueprint", + "tags": [ + "weapon", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Lato Vandal Blueprint", + "icon": "items/images/en/lato_vandal_blueprint.d3f82be07b93c35d6e1e9430c796ac9a.png", + "thumb": "items/images/en/thumbs/lato_vandal_blueprint.d3f82be07b93c35d6e1e9430c796ac9a.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5adf872a931bcf00574adc13", + "slug": "lato_vandal_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatoVandalBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Lato Vandal Barrel", + "icon": "items/images/en/lato_vandal_barrel.d3f82be07b93c35d6e1e9430c796ac9a.png", + "thumb": "items/images/en/thumbs/lato_vandal_barrel.d3f82be07b93c35d6e1e9430c796ac9a.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5adf872a931bcf00574adc15", + "slug": "braton_vandal_set", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/VIPRifle", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Braton Vandal Set", + "icon": "items/images/en/braton_vandal_set.91c532bcac702702bf7d259bd5d4d553.png", + "thumb": "items/images/en/thumbs/braton_vandal_set.91c532bcac702702bf7d259bd5d4d553.128x128.png" + } + } + }, + { + "id": "5afdd5bc1a862a05ad817cf0", + "slug": "grineer_settlement_artillery_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGrineerSettlementGunBattery", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Settlement Artillery Scene", + "icon": "items/images/en/grineer_settlement_artillery_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/grineer_settlement_artillery_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5afdd5bc1a862a05ad817cf1", + "slug": "kuva_fortress_crevice_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGrineerFortressCrevice", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Kuva Fortress Crevice Scene", + "icon": "items/images/en/kuva_fortress_crevice_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/kuva_fortress_crevice_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5afdd5bc1a862a05ad817cf2", + "slug": "grineer_sealab_centrifuge_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGrineerOceanCentrifuge", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Sealab Centrifuge Scene", + "icon": "items/images/en/grineer_sealab_centrifuge_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/grineer_sealab_centrifuge_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5afdd5bd1a862a05ad817cf4", + "slug": "lua_balcony_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileOrokinMoonPiaza", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Lua Balcony Scene", + "icon": "items/images/en/lua_balcony_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/lua_balcony_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5b00231bac0f7e006fd6f7b3", + "slug": "reawaken", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/RespawnSelf", + "tags": [ + "mod", + "rare", + "sentinel", + "djinn" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Reawaken", + "icon": "items/images/en/reawaken.dff42d332f0bd30ccf2ff5e89988e120.png", + "thumb": "items/images/en/thumbs/reawaken.dff42d332f0bd30ccf2ff5e89988e120.128x128.png" + } + } + }, + { + "id": "58358a062c2ada0047b386f7", + "slug": "valkyr_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ValkyrPrimeHelmetBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Valkyr Prime Neuroptics Blueprint", + "icon": "items/images/en/valkyr_prime_neuroptics.a5c906d66a11ff70158f0ffad0c628e8.png", + "thumb": "items/images/en/thumbs/valkyr_prime_neuroptics.a5c906d66a11ff70158f0ffad0c628e8.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5783bf4ad9b6753790c89e95", + "slug": "centaur_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchSwordShieldHandle", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Centaur Handle", + "icon": "items/images/en/centaur_handle.7365135b7b3831714b657721d6b1df22.png", + "thumb": "items/images/en/thumbs/centaur_handle.7365135b7b3831714b657721d6b1df22.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "59dfeb6c115f1d887cfd7ac0", + "slug": "augur_message", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Augur/WarframeAugurMessageMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Augur Message", + "icon": "items/images/en/augur_message.dab0bb53ba6150cdfacb10e0355bca4a.png", + "thumb": "items/images/en/thumbs/augur_message.dab0bb53ba6150cdfacb10e0355bca4a.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51568f", + "slug": "true_punishment", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Channel/ChannelCritsMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "True Punishment", + "icon": "items/images/en/true_punishment.823de574bce70d495662b3ca09dede32.png", + "thumb": "items/images/en/thumbs/true_punishment.823de574bce70d495662b3ca09dede32.128x128.png" + } + } + }, + { + "id": "5911f11d97a0add8e9d5da50", + "slug": "entropy_detonation", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/ObexMod", + "tags": [ + "syndicate", + "mod", + "melee", + "rare", + "obex" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Entropy Detonation", + "icon": "items/images/en/entropy_detonation.2330a8de6cb887513a92da41f5ea4708.png", + "thumb": "items/images/en/thumbs/entropy_detonation.2330a8de6cb887513a92da41f5ea4708.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c0", + "slug": "rending_crane", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/AxeCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "heavy_blade" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rending Crane", + "icon": "items/images/en/rending_crane.47206f0333e0e5bc9f144b3d7353d7b1.png", + "thumb": "items/images/en/thumbs/rending_crane.47206f0333e0e5bc9f144b3d7353d7b1.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4c8", + "slug": "air_recon", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/HigherAirAimFoVPistolMod", + "tags": [ + "secondary", + "pvp", + "uncommon", + "mod", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Air Recon", + "icon": "items/images/en/air_recon.73a5b4319a32387372dc2c693b18ebcc.png", + "thumb": "items/images/en/thumbs/air_recon.73a5b4319a32387372dc2c693b18ebcc.128x128.png" + } + } + }, + { + "id": "58358e192c2ada00655a4ef4", + "slug": "venka_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeVenkaClawsBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Venka Prime Blueprint", + "icon": "items/images/en/venka_prime_blueprint.123cb62ab1e8a4edd78997a256cf1e7f.png", + "thumb": "items/images/en/thumbs/venka_prime_blueprint.123cb62ab1e8a4edd78997a256cf1e7f.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192112", + "slug": "euphona_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/Prime1HShotgunBlueprint", + "tags": [ + "prime", + "weapon", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Euphona Prime Blueprint", + "icon": "items/images/en/euphona_prime_blueprint.6a18cc50c57ac13c3203e872baf85a8d.png", + "thumb": "items/images/en/thumbs/euphona_prime_blueprint.6a18cc50c57ac13c3203e872baf85a8d.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5783bf4ed9b6753790c89e96", + "slug": "onorix_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchAxeHandle", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Onorix Handle", + "icon": "items/images/en/onorix_handle.04c7efcf7c6239c88c275d164d6a259a.png", + "thumb": "items/images/en/thumbs/onorix_handle.04c7efcf7c6239c88c275d164d6a259a.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c1", + "slug": "point_blank", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponDamageAmountMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Point Blank", + "icon": "items/images/en/point_blank.a8dd22b4703c52a9ec327ce18c973b8c.png", + "thumb": "items/images/en/thumbs/point_blank.a8dd22b4703c52a9ec327ce18c973b8c.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c1", + "slug": "reflection", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarParryReflectMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Reflection", + "icon": "items/images/en/reflection.92eb5cc1554f5c5b3157030f0fbb951e.png", + "thumb": "items/images/en/thumbs/reflection.92eb5cc1554f5c5b3157030f0fbb951e.128x128.png" + } + } + }, + { + "id": "59e23a55115f1d887cfd7ac7", + "slug": "stinging_thorn", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DaggerCmbThreeMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "daggers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Stinging Thorn", + "icon": "items/images/en/stinging_thorn.a76015e252170dda1dbda4abae153fe4.png", + "thumb": "items/images/en/thumbs/stinging_thorn.a76015e252170dda1dbda4abae153fe4.128x128.png" + } + } + }, + { + "id": "57c05949d0d9ef638234e4ac", + "slug": "shotgun_amp", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerShellDamageAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shotgun Amp", + "icon": "items/images/en/shotgun_amp.b5e296afc4e2c578a30f26353cd1d622.png", + "thumb": "items/images/en/thumbs/shotgun_amp.b5e296afc4e2c578a30f26353cd1d622.128x128.png" + } + } + }, + { + "id": "5c1bda1314a8e4006b1dad81", + "slug": "magus_anomaly", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/PullOnTransferenceIn", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Anomaly", + "icon": "items/images/en/magus_anomaly.3f06b6fc67779e08e0f55c9d04db0da2.png", + "thumb": "items/images/en/thumbs/magus_anomaly.3f06b6fc67779e08e0f55c9d04db0da2.128x128.png" + } + } + }, + { + "id": "561536e4b66f836f8e15eb18", + "slug": "dual_kamas_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeDualKamasHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dual Kamas Prime Handle", + "icon": "items/images/en/dual_kamas_prime_handle.7d95cad6d71a59fa98902cc8bfe87da2.png", + "thumb": "items/images/en/thumbs/dual_kamas_prime_handle.7d95cad6d71a59fa98902cc8bfe87da2.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5c1bda1414a8e4006b1dad83", + "slug": "virtuos_surge", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/VoidToElectricDamage", + "tags": [ + "common", + "arcane_enhancement", + "operator" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Surge", + "icon": "items/images/en/virtuos_surge.1047626f95c989bdd5ee977d1eca05d5.png", + "thumb": "items/images/en/thumbs/virtuos_surge.1047626f95c989bdd5ee977d1eca05d5.128x128.png" + } + } + }, + { + "id": "5c1bda1414a8e4006b1dad84", + "slug": "marked_target", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleStatusChanceAimingMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Marked Target", + "icon": "items/images/en/marked_target.1ad2a7f2e824f40970eeb194184935d3.png", + "thumb": "items/images/en/thumbs/marked_target.1ad2a7f2e824f40970eeb194184935d3.128x128.png" + } + } + }, + { + "id": "57c05949d0d9ef638234e4ad", + "slug": "empowered_blades", + "gameRef": "/Lotus/Upgrades/Mods/Aura/FairyQuest/FairyQuestShieldsToCritAuraMod", + "tags": [ + "mod", + "rare", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Empowered Blades", + "icon": "items/images/en/empowered_blades.99e396cdb655abbd8cb07ca3901f1079.png", + "thumb": "items/images/en/thumbs/empowered_blades.99e396cdb655abbd8cb07ca3901f1079.128x128.png" + } + } + }, + { + "id": "56153730b66f836f9488bcce", + "slug": "kavasa_prime_buckle", + "gameRef": "/Lotus/Types/Recipes/Kubrow/Collars/PrimeKubrowCollarABuckleComponent", + "tags": [ + "prime" + ], + "i18n": { + "en": { + "name": "Kavasa Prime Buckle", + "icon": "items/images/en/kavasa_prime_buckle.cc1bafee4156c05ebaa812d39cd559ba.png", + "thumb": "items/images/en/thumbs/kavasa_prime_buckle.cc1bafee4156c05ebaa812d39cd559ba.128x128.png", + "subIcon": "sub_icons/pets/prime_buckle_128x128.png" + } + } + }, + { + "id": "5c1bda1514a8e4006b1dad86", + "slug": "strain_eruption", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Strain/HelminthStrainEruptionMod", + "tags": [ + "mod", + "rare", + "helminth charger", + "helminth_charger" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Strain Eruption", + "icon": "items/images/en/strain_eruption.adb0c475cb76b9495bfbdf02ff96b160.png", + "thumb": "items/images/en/thumbs/strain_eruption.adb0c475cb76b9495bfbdf02ff96b160.128x128.png" + } + } + }, + { + "id": "57c05949d0d9ef638234e4ae", + "slug": "stand_united", + "gameRef": "/Lotus/Upgrades/Mods/Aura/FairyQuest/FairyQuestThornsAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Stand United", + "icon": "items/images/en/stand_united.1cd80c0f109a360e30d4a69c4e0a99f0.png", + "thumb": "items/images/en/thumbs/stand_united.1cd80c0f109a360e30d4a69c4e0a99f0.128x128.png" + } + } + }, + { + "id": "56153734b66f836f976f5501", + "slug": "kavasa_prime_band", + "gameRef": "/Lotus/Types/Recipes/Kubrow/Collars/PrimeKubrowCollarABandComponent", + "tags": [ + "prime" + ], + "i18n": { + "en": { + "name": "Kavasa Prime Band", + "icon": "items/images/en/kavasa_prime_band.cc1bafee4156c05ebaa812d39cd559ba.png", + "thumb": "items/images/en/thumbs/kavasa_prime_band.cc1bafee4156c05ebaa812d39cd559ba.128x128.png", + "subIcon": "sub_icons/pets/prime_band_128x128.png" + } + } + }, + { + "id": "5bd05ace3ffcc700eb7cfcfa", + "slug": "kuva_throne_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateSteelMeridianQueensThrone", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Kuva Throne Scene", + "icon": "items/images/en/kuva_throne_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/kuva_throne_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5bd05ad03ffcc700eb7cfcfe", + "slug": "sanctuary_conduit_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateSimarisOnslaught", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Sanctuary Conduit Scene", + "icon": "items/images/en/sanctuary_conduit_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/sanctuary_conduit_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5be5f5a03ffcc7038857f105", + "slug": "venom_teeth", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/DualStat/KubrowPoisonEventMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Venom Teeth", + "icon": "items/images/en/venom_teeth.34e128ccb964bde24be6e935b6dc51a7.png", + "thumb": "items/images/en/thumbs/venom_teeth.34e128ccb964bde24be6e935b6dc51a7.128x128.png" + } + } + }, + { + "id": "5be5f5a13ffcc7038857f10e", + "slug": "rising_steel", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPSwordStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "swords", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rising Steel", + "icon": "items/images/en/rising_steel.c114e2cbef17605ee40c0db2d52739c2.png", + "thumb": "items/images/en/thumbs/rising_steel.c114e2cbef17605ee40c0db2d52739c2.128x128.png" + } + } + }, + { + "id": "5be5f5a23ffcc7038857f122", + "slug": "piercing_fury", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPDaggerStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "daggers", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Piercing Fury", + "icon": "items/images/en/piercing_fury.bbc8072ae9a3ee426c3d59ccb44c9213.png", + "thumb": "items/images/en/thumbs/piercing_fury.bbc8072ae9a3ee426c3d59ccb44c9213.128x128.png" + } + } + }, + { + "id": "5be5f5a43ffcc7038857f12b", + "slug": "star_amarast", + "gameRef": "/Lotus/Types/Items/Gems/Solaris/SolarisRareGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Star Amarast", + "icon": "items/images/en/star_amarast.ca85eb3d49ec07b1209b869e21aabe8f.png", + "thumb": "items/images/en/thumbs/star_amarast.ca85eb3d49ec07b1209b869e21aabe8f.128x128.png" + } + } + }, + { + "id": "5be7010f3ffcc703e462c6ff", + "slug": "venerdo_hoverdrive", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBJumpHeightMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Venerdo Hoverdrive", + "icon": "items/images/en/venerdo_hoverdrive.68d2fef37229992117290fcfef314f1a.png", + "thumb": "items/images/en/thumbs/venerdo_hoverdrive.68d2fef37229992117290fcfef314f1a.128x128.png" + } + } + }, + { + "id": "5be701103ffcc703e462c700", + "slug": "trail_blazer", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBElementTrailMod", + "tags": [ + "mod", + "common", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Trail Blazer", + "icon": "items/images/en/trail_blazer.858ee13583012bad3d16225e976774d3.png", + "thumb": "items/images/en/thumbs/trail_blazer.858ee13583012bad3d16225e976774d3.128x128.png" + } + } + }, + { + "id": "5be701103ffcc703e462c701", + "slug": "scan_matter", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/LocateResources", + "tags": [ + "mod", + "common", + "sentinel", + "oxylus" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Scan Matter", + "icon": "items/images/en/scan_matter.725a0529832b4e5b3b5a4d9f6319a1b6.png", + "thumb": "items/images/en/thumbs/scan_matter.725a0529832b4e5b3b5a4d9f6319a1b6.128x128.png" + } + } + }, + { + "id": "5be701103ffcc703e462c702", + "slug": "kinetic_friction", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBGrindStaticMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Kinetic Friction", + "icon": "items/images/en/kinetic_friction.b3942e23d26fcc15c1946c89fcf23b96.png", + "thumb": "items/images/en/thumbs/kinetic_friction.b3942e23d26fcc15c1946c89fcf23b96.128x128.png" + } + } + }, + { + "id": "5be701113ffcc703e462c703", + "slug": "scan_lifeforms", + "gameRef": "", + "tags": [ + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Scan Aquatic Lifeforms", + "icon": "items/images/en/scan_lifeforms.092eac929df7c6f8d989e926cdab8733.webp", + "thumb": "items/images/en/thumbs/scan_lifeforms.092eac929df7c6f8d989e926cdab8733.128x128.webp" + } + } + }, + { + "id": "5be701133ffcc703e462c707", + "slug": "air_time", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBAirGravMod", + "tags": [ + "mod", + "common", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Air Time", + "icon": "items/images/en/air_time.96ed33912d85f25e3a47296e6a0dbc65.png", + "thumb": "items/images/en/thumbs/air_time.96ed33912d85f25e3a47296e6a0dbc65.128x128.png" + } + } + }, + { + "id": "5be701153ffcc703e462c70a", + "slug": "rail_guards", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBGrindSpeedMod", + "tags": [ + "mod", + "common", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rail Guards", + "icon": "items/images/en/rail_guards.664b6a9b409011a4cbabe372ec28da2b.png", + "thumb": "items/images/en/thumbs/rail_guards.664b6a9b409011a4cbabe372ec28da2b.128x128.png" + } + } + }, + { + "id": "5be701153ffcc703e462c70b", + "slug": "assault_mode", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/SentinelAttack", + "tags": [ + "sentinel", + "mod", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Assault Mode", + "icon": "items/images/en/assault_mode.3d12d35a3c4a0e0ba6f22fa09f553fdf.png", + "thumb": "items/images/en/thumbs/assault_mode.3d12d35a3c4a0e0ba6f22fa09f553fdf.128x128.png" + } + } + }, + { + "id": "5be701153ffcc703e462c70c", + "slug": "mag_locks", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBGrindMagnetismMod", + "tags": [ + "mod", + "common", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Mag Locks", + "icon": "items/images/en/mag_locks.276bba4eb302ed0a1f7e10e3ae05784b.png", + "thumb": "items/images/en/thumbs/mag_locks.276bba4eb302ed0a1f7e10e3ae05784b.128x128.png" + } + } + }, + { + "id": "5be701153ffcc703e462c70d", + "slug": "inertia_dampeners", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBPointsMultiplierMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Inertia Dampeners", + "icon": "items/images/en/inertia_dampeners.b0ea371be456fff8188f61b9e48703b8.png", + "thumb": "items/images/en/thumbs/inertia_dampeners.b0ea371be456fff8188f61b9e48703b8.128x128.png" + } + } + }, + { + "id": "5bebf1713ffcc704caf38cf4", + "slug": "akvasto_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeVasto/AkPrimeVasto/AkPrimeVastoPistol", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Akvasto Prime Set", + "icon": "items/images/en/akvasto_prime_set.029887bbd387510ffec1debd81f65dab.png", + "thumb": "items/images/en/thumbs/akvasto_prime_set.029887bbd387510ffec1debd81f65dab.128x128.png" + } + } + }, + { + "id": "554d3af4e77989420d3de2a4", + "slug": "perpetual_agony", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponProcTimeMod", + "tags": [ + "common", + "mod", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Perpetual Agony", + "icon": "items/images/en/perpetual_agony.544534318a687be2710174e2c8826f96.png", + "thumb": "items/images/en/thumbs/perpetual_agony.544534318a687be2710174e2c8826f96.128x128.png" + } + } + }, + { + "id": "55a4692be77989021897043b", + "slug": "armored_agility", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/RunSpeedArmorMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Armored Agility", + "icon": "items/images/en/armored_agility.b46198fa88f4d84f221271d6cb00b9b9.png", + "thumb": "items/images/en/thumbs/armored_agility.b46198fa88f4d84f221271d6cb00b9b9.128x128.png" + } + } + }, + { + "id": "56a7b2531133f656cb085d86", + "slug": "body_count", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/ComboDurationMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Body Count", + "icon": "items/images/en/body_count.78d77ff16a889dca5bac3f0f1ca81ede.png", + "thumb": "items/images/en/thumbs/body_count.78d77ff16a889dca5bac3f0f1ca81ede.128x128.png" + } + } + }, + { + "id": "55a46c43e77989032fa38f11", + "slug": "arcane_deflection", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/SlashProcResist", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Deflection", + "icon": "items/images/en/arcane_deflection.6ee1147da81f3a9f705621012c560832.png", + "thumb": "items/images/en/thumbs/arcane_deflection.6ee1147da81f3a9f705621012c560832.128x128.png" + } + } + }, + { + "id": "56a7b2581133f656cb085d87", + "slug": "weeping_wounds", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/ComboStatusChanceMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Weeping Wounds", + "icon": "items/images/en/weeping_wounds.b1b82c8b21d3fb09861b8f004f4278cf.png", + "thumb": "items/images/en/thumbs/weeping_wounds.b1b82c8b21d3fb09861b8f004f4278cf.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff23", + "slug": "akbronco_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkbroncoPrimeLink", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akbronco Prime Link", + "icon": "items/images/en/akbronco_prime_link.34b5a7f99e5f8c15cc2039a76c725069.png", + "thumb": "items/images/en/thumbs/akbronco_prime_link.34b5a7f99e5f8c15cc2039a76c725069.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "55c15393e779895d5e78e215", + "slug": "vermillion_storm", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/ClawCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vermillion Storm", + "icon": "items/images/en/vermillion_storm.0a31bf81d380ac7e5ced4e490fdb46f3.png", + "thumb": "items/images/en/thumbs/vermillion_storm.0a31bf81d380ac7e5ced4e490fdb46f3.128x128.png" + } + } + }, + { + "id": "56a7b25f1133f656cb085d88", + "slug": "maiming_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/SlideAttackCritChanceMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Maiming Strike", + "icon": "items/images/en/maiming_strike.5f1cac479fe228788be880a41cfe11b7.png", + "thumb": "items/images/en/thumbs/maiming_strike.5f1cac479fe228788be880a41cfe11b7.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515691", + "slug": "investigator", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/CodexScannerPrecept", + "tags": [ + "mod", + "common", + "sentinel", + "helios" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Investigator", + "icon": "items/images/en/investigator.e357cf9924c5d27bf15b557d60f50ae6.png", + "thumb": "items/images/en/thumbs/investigator.e357cf9924c5d27bf15b557d60f50ae6.128x128.png" + } + } + }, + { + "id": "55c153b7e779895d77556bb1", + "slug": "firewalker", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/FireParkourTwoMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Firewalker", + "icon": "items/images/en/firewalker.2cb2403fa29e147124f5a0221da9c94d.png", + "thumb": "items/images/en/thumbs/firewalker.2cb2403fa29e147124f5a0221da9c94d.128x128.png" + } + } + }, + { + "id": "56a7b2661133f656cb085d89", + "slug": "hydraulic_crosshairs", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/CritChanceWhileAimingPistolMod", + "tags": [ + "common", + "mod", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hydraulic Crosshairs", + "icon": "items/images/en/hydraulic_crosshairs.818cf18013b567c4bbe4379f9608df56.png", + "thumb": "items/images/en/thumbs/hydraulic_crosshairs.818cf18013b567c4bbe4379f9608df56.128x128.png" + } + } + }, + { + "id": "55c153cce779895d862007bf", + "slug": "toxic_flight", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/ToxinParkourTwoMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Toxic Flight", + "icon": "items/images/en/toxic_flight.9b2fd1198b495d9f43becea4d2ed0310.png", + "thumb": "items/images/en/thumbs/toxic_flight.9b2fd1198b495d9f43becea4d2ed0310.128x128.png" + } + } + }, + { + "id": "56a7b27a1133f656cb085d8b", + "slug": "laser_sight", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/CritChanceWhileAimingShotgunMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Laser Sight", + "icon": "items/images/en/laser_sight.856fb0b93fb9bd6cc8bbd68041666039.png", + "thumb": "items/images/en/thumbs/laser_sight.856fb0b93fb9bd6cc8bbd68041666039.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515693", + "slug": "smite_infested", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeFactionDamageInfested", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Smite Infested", + "icon": "items/images/en/smite_infested.bfacf65757f7f50af83415cc4a441706.png", + "thumb": "items/images/en/thumbs/smite_infested.bfacf65757f7f50af83415cc4a441706.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155eb", + "slug": "venom_dose", + "gameRef": "/Lotus/Powersuits/Saryn/PoisonAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "saryn" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Venom Dose", + "icon": "items/images/en/venom_dose.9ce559a7511a8c9e070ae118ccdf4d09.png", + "thumb": "items/images/en/thumbs/venom_dose.9ce559a7511a8c9e070ae118ccdf4d09.128x128.png" + } + } + }, + { + "id": "55c153dae779895d91dff3bb", + "slug": "rending_turn", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/SlashParkourTwoMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rending Turn", + "icon": "items/images/en/rending_turn.1a63e9edd7387b62a3ebf1dac810dcc8.png", + "thumb": "items/images/en/thumbs/rending_turn.1a63e9edd7387b62a3ebf1dac810dcc8.128x128.png" + } + } + }, + { + "id": "55c15430e779895dc0c17945", + "slug": "seismic_wave", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeSlamDamageMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Seismic Wave", + "icon": "items/images/en/seismic_wave.e6eff1df92f0d295abf54746067b9e70.png", + "thumb": "items/images/en/thumbs/seismic_wave.e6eff1df92f0d295abf54746067b9e70.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff3f", + "slug": "dakra_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCronusLongSwordHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dakra Prime Handle", + "icon": "items/images/en/dakra_prime_handle.785a613039ec892abc579c176f0b33da.png", + "thumb": "items/images/en/thumbs/dakra_prime_handle.785a613039ec892abc579c176f0b33da.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515696", + "slug": "expel_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPistolFactionDamageGrineer", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Expel Grineer", + "icon": "items/images/en/expel_grineer.93ee977e75b55886a5cdcda023bed2a3.png", + "thumb": "items/images/en/thumbs/expel_grineer.93ee977e75b55886a5cdcda023bed2a3.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff61", + "slug": "soma_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SomaPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Soma Prime Barrel", + "icon": "items/images/en/soma_prime_barrel.1bf4937a6c2106c373cffeb93b1c87e0.png", + "thumb": "items/images/en/thumbs/soma_prime_barrel.1bf4937a6c2106c373cffeb93b1c87e0.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff6e", + "slug": "mag_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MagPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Mag Prime Neuroptics Blueprint", + "icon": "items/images/en/mag_prime_neuroptics.2afb45373319b966737bd91cf05a813c.png", + "thumb": "items/images/en/thumbs/mag_prime_neuroptics.2afb45373319b966737bd91cf05a813c.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "54c6869ae7798913ca68c3dd", + "slug": "primed_fast_hands", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/WeaponReloadSpeedModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Fast Hands", + "icon": "items/images/en/primed_fast_hands.6bd825412c58f77828bfaaa9936a7e92.png", + "thumb": "items/images/en/thumbs/primed_fast_hands.6bd825412c58f77828bfaaa9936a7e92.128x128.png" + } + } + }, + { + "id": "59e91860f25be4e10d365720", + "slug": "furax_wraith_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Fist/FuraxWraith", + "tags": [ + "weapon", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Furax Wraith Set", + "icon": "items/images/en/furax_wraith_set.c460830e1437c5ab3cd37e2ea51b09a9.png", + "thumb": "items/images/en/thumbs/furax_wraith_set.c460830e1437c5ab3cd37e2ea51b09a9.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b2", + "slug": "dead_eye", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerSniperDamageAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Dead Eye", + "icon": "items/images/en/dead_eye.559f9fab1259fe9081d4c2bd68481283.png", + "thumb": "items/images/en/thumbs/dead_eye.559f9fab1259fe9081d4c2bd68481283.128x128.png" + } + } + }, + { + "id": "595567c18e34b5ed3cb3d9b9", + "slug": "melee_riven_mod_(veiled)", + "gameRef": "/Lotus/Upgrades/Mods/Randomized/PlayerMeleeWeaponRandomModRare", + "tags": [ + "mod", + "riven_mod", + "common", + "veiled_riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Melee Riven Mod (Veiled)", + "icon": "items/images/en/melee_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.png", + "thumb": "items/images/en/thumbs/melee_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d0", + "slug": "corrosive_projection", + "gameRef": "/Lotus/Upgrades/Mods/Aura/EnemyArmorReductionAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Corrosive Projection", + "icon": "items/images/en/corrosive_projection.d09df012220dab45c2b256a5eb5806d4.png", + "thumb": "items/images/en/thumbs/corrosive_projection.d09df012220dab45c2b256a5eb5806d4.128x128.png" + } + } + }, + { + "id": "58701655937cde2c9d378ac3", + "slug": "pistol_riven_mod_(veiled)", + "gameRef": "/Lotus/Upgrades/Mods/Randomized/LotusPistolRandomModRare", + "tags": [ + "mod", + "riven_mod", + "common", + "veiled_riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Pistol Riven Mod (Veiled)", + "icon": "items/images/en/pistol_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.png", + "thumb": "items/images/en/thumbs/pistol_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d2", + "slug": "heavy_trauma", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponImpactDamageMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Heavy Trauma", + "icon": "items/images/en/heavy_trauma.c322d8e6bf1d16616a11834bf8b97b0e.png", + "thumb": "items/images/en/thumbs/heavy_trauma.c322d8e6bf1d16616a11834bf8b97b0e.128x128.png" + } + } + }, + { + "id": "5a0475086c4655012038ddc0", + "slug": "exodia_valor", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/CritChannelingDamage", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Valor", + "icon": "items/images/en/exodia_valor.6944e42105fc09e60c8a843acedfd7cf.png", + "thumb": "items/images/en/thumbs/exodia_valor.6944e42105fc09e60c8a843acedfd7cf.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156f2", + "slug": "charged_chamber", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/SniperReloadDamageMod", + "tags": [ + "mod", + "uncommon", + "primary", + "sniper" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Charged Chamber", + "icon": "items/images/en/charged_chamber.1209236bfe82fa23232afcd4d1de0245.png", + "thumb": "items/images/en/thumbs/charged_chamber.1209236bfe82fa23232afcd4d1de0245.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178ad", + "slug": "tidal_impunity", + "gameRef": "/Lotus/Powersuits/Pirate/TidalWaveAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "hydroid" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tidal Impunity", + "icon": "items/images/en/tidal_impunity.6414d27def8a8df37d74995e295da154.png", + "thumb": "items/images/en/thumbs/tidal_impunity.6414d27def8a8df37d74995e295da154.128x128.png" + } + } + }, + { + "id": "5526aec0e779896af941825c", + "slug": "piercing_caliber", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponEventPunctureDamageMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Piercing Caliber", + "icon": "items/images/en/piercing_caliber.a4e3271e2add82496c5f8ab858076116.png", + "thumb": "items/images/en/thumbs/piercing_caliber.a4e3271e2add82496c5f8ab858076116.128x128.png" + } + } + }, + { + "id": "54aaf312e779893b99bd67bd", + "slug": "arcane_backdraft_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Ember/EmberHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Backdraft Helmet", + "icon": "items/images/en/arcane_backdraft_ember_helmet.043ac2179a516fbb8f39e1da426f6855.png", + "thumb": "items/images/en/thumbs/arcane_backdraft_ember_helmet.043ac2179a516fbb8f39e1da426f6855.128x128.png" + } + } + }, + { + "id": "55c15448e779895dccdabe9c", + "slug": "adhesive_blast", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponGrenadeStickyMod", + "tags": [ + "unique", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Adhesive Blast", + "icon": "items/images/en/adhesive_blast.10b405d40b908ec8cf3ea73547e724f7.png", + "thumb": "items/images/en/thumbs/adhesive_blast.10b405d40b908ec8cf3ea73547e724f7.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848fa", + "slug": "kinetic_collision", + "gameRef": "/Lotus/Powersuits/Volt/SpeedPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "volt" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Kinetic Collision", + "icon": "items/images/en/kinetic_collision.167f9268ab9b025ea7c2c2c911d04ff6.png", + "thumb": "items/images/en/thumbs/kinetic_collision.167f9268ab9b025ea7c2c2c911d04ff6.128x128.png" + } + } + }, + { + "id": "56dac5b85cc639de0a45c529", + "slug": "thundermiter", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/ExplodingMiterBlades", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "miter" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Thundermiter", + "icon": "items/images/en/thundermiter_(miter).238b4e97a7f06da1447b393de0611e9b.png", + "thumb": "items/images/en/thumbs/thundermiter_(miter).238b4e97a7f06da1447b393de0611e9b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515606", + "slug": "finishing_touch", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeFinisherDamageMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Finishing Touch", + "icon": "items/images/en/finishing_touch.80048f517500e2e4647c0fcfa2449bee.png", + "thumb": "items/images/en/thumbs/finishing_touch.80048f517500e2e4647c0fcfa2449bee.128x128.png" + } + } + }, + { + "id": "56dac5bc5cc639de0a45c52a", + "slug": "static_alacrity", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/StaticorFasterProjLessAoE", + "tags": [ + "pvp", + "rare", + "mod", + "secondary", + "staticor" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Static Alacrity", + "icon": "items/images/en/static_alacrity.6b3933168d44d40b5c6c70f0f53d1eb2.png", + "thumb": "items/images/en/thumbs/static_alacrity.6b3933168d44d40b5c6c70f0f53d1eb2.128x128.png" + } + } + }, + { + "id": "559daaa7e779897b35d626c6", + "slug": "ash_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AshPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ash Prime Chassis Blueprint", + "icon": "items/images/en/ash_prime_chassis.9f3f82bee82a9741531857cf76eb6594.png", + "thumb": "items/images/en/thumbs/ash_prime_chassis.9f3f82bee82a9741531857cf76eb6594.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "57bc9c84e506eb45ea251459", + "slug": "tigris_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeTigrisBlueprint", + "tags": [ + "primary", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Tigris Prime Blueprint", + "icon": "items/images/en/tigris_prime_blueprint.5f82721ea78697c95208b9bceb72c4a4.png", + "thumb": "items/images/en/thumbs/tigris_prime_blueprint.5f82721ea78697c95208b9bceb72c4a4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "56dac5c05cc639de0a45c52b", + "slug": "emergent_aftermath", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/FasterReloadOnKillSniperMod", + "tags": [ + "primary", + "pvp", + "sniper", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Emergent Aftermath", + "icon": "items/images/en/emergent_aftermath.b9f1c6ba08998f29184821d26fc6ae84.png", + "thumb": "items/images/en/thumbs/emergent_aftermath.b9f1c6ba08998f29184821d26fc6ae84.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51560a", + "slug": "fortitude", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/FortitudeMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fortitude", + "icon": "items/images/en/fortitude.977352ca166dd054da57bbe50cf4ec3e.png", + "thumb": "items/images/en/thumbs/fortitude.977352ca166dd054da57bbe50cf4ec3e.128x128.png" + } + } + }, + { + "id": "559daaafe779897b399db0fd", + "slug": "ash_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AshPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ash Prime Systems Blueprint", + "icon": "items/images/en/ash_prime_systems.9f3f82bee82a9741531857cf76eb6594.png", + "thumb": "items/images/en/thumbs/ash_prime_systems.9f3f82bee82a9741531857cf76eb6594.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff7b", + "slug": "mag_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MagPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Mag Prime Systems Blueprint", + "icon": "items/images/en/mag_prime_systems.2afb45373319b966737bd91cf05a813c.png", + "thumb": "items/images/en/thumbs/mag_prime_systems.2afb45373319b966737bd91cf05a813c.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "55a46992e77989023be347fe", + "slug": "prisma_grakata", + "gameRef": "/Lotus/Weapons/VoidTrader/PrismaGrakata", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Prisma Grakata", + "icon": "items/images/en/prisma_grakata.9a7efdc99822c298dc4ad06517450482.png", + "thumb": "items/images/en/thumbs/prisma_grakata.9a7efdc99822c298dc4ad06517450482.128x128.png" + } + } + }, + { + "id": "55c153afe779895d6f802d7a", + "slug": "mobilize", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/ParkourTwoMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mobilize", + "icon": "items/images/en/mobilize.05d2e152abd6ac55ee0939b7ab932e96.png", + "thumb": "items/images/en/thumbs/mobilize.05d2e152abd6ac55ee0939b7ab932e96.128x128.png" + } + } + }, + { + "id": "559daaefe779897b5a2d3551", + "slug": "vectis_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VectisPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Vectis Prime Receiver", + "icon": "items/images/en/vectis_prime_receiver.028e001af4469482df80bff29542e043.png", + "thumb": "items/images/en/thumbs/vectis_prime_receiver.028e001af4469482df80bff29542e043.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155aa", + "slug": "automatic_trigger", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleFireRateMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Automatic Trigger", + "icon": "items/images/en/automatic_trigger.ee928fb5d9b9bc72e5c3992fa2f4c4fa.png", + "thumb": "items/images/en/thumbs/automatic_trigger.ee928fb5d9b9bc72e5c3992fa2f4c4fa.128x128.png" + } + } + }, + { + "id": "5754a31be701ef5844257dab", + "slug": "armored_recovery", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/RagdollImmunityMod", + "tags": [ + "uncommon", + "pvp", + "mod", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Armored Recovery", + "icon": "items/images/en/armored_recovery.ca5e0f617d60d6227b4499bfcffb898b.png", + "thumb": "items/images/en/thumbs/armored_recovery.ca5e0f617d60d6227b4499bfcffb898b.128x128.png" + } + } + }, + { + "id": "57dbdc525e334907aa8edb55", + "slug": "vaykor_sydon", + "gameRef": "/Lotus/Weapons/Syndicates/SteelMeridian/Melee/SMSydon", + "tags": [ + "syndicate", + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Vaykor Sydon", + "icon": "items/images/en/vaykor_sydon.d83d27c1e7742988b0d4aeb9c39985bd.png", + "thumb": "items/images/en/thumbs/vaykor_sydon.d83d27c1e7742988b0d4aeb9c39985bd.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b1", + "slug": "slip_magazine", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponClipMaxMod", + "tags": [ + "common", + "mod", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Slip Magazine", + "icon": "items/images/en/slip_magazine.c72bb3d9a2f6bd363c43f32dc1f81572.png", + "thumb": "items/images/en/thumbs/slip_magazine.c72bb3d9a2f6bd363c43f32dc1f81572.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515613", + "slug": "homing_fang", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DaggerCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "daggers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Homing Fang", + "icon": "items/images/en/homing_fang.4a024ae5692abd0ef304003c58a31ef7.png", + "thumb": "items/images/en/thumbs/homing_fang.4a024ae5692abd0ef304003c58a31ef7.128x128.png" + } + } + }, + { + "id": "55a46a58e77989027c23b89c", + "slug": "arcane_grace", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/HealthRegenOnDamage", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Grace", + "icon": "items/images/en/arcane_grace.3e4f746417d977c6ac5f2c9edd71ada0.png", + "thumb": "items/images/en/thumbs/arcane_grace.3e4f746417d977c6ac5f2c9edd71ada0.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515614", + "slug": "maul", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowMeleeDamageMod", + "tags": [ + "mod", + "uncommon", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Maul", + "icon": "items/images/en/maul.85d6096a0d2d3be267e39717a8ea2e37.png", + "thumb": "items/images/en/thumbs/maul.85d6096a0d2d3be267e39717a8ea2e37.128x128.png" + } + } + }, + { + "id": "5758ae0842ba8659dde2f571", + "slug": "enhanced_vitality", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelHealthMaxMod", + "tags": [ + "mod", + "common", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Enhanced Vitality", + "icon": "items/images/en/enhanced_vitality.20178f43d39b9452c6e589f1c33577a4.png", + "thumb": "items/images/en/thumbs/enhanced_vitality.20178f43d39b9452c6e589f1c33577a4.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff29", + "slug": "bo_prime_ornament", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBoOrnament", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Bo Prime Ornament", + "icon": "items/images/en/bo_prime_ornament.fad65cfb95d62a4275be60be30375846.png", + "thumb": "items/images/en/thumbs/bo_prime_ornament.fad65cfb95d62a4275be60be30375846.128x128.png", + "subIcon": "sub_icons/weapon/prime_ornament_128x128.png" + } + } + }, + { + "id": "56675652f9001cd2824a6826", + "slug": "dera_vandal_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DeraVandalReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Dera Vandal Receiver", + "icon": "items/images/en/dera_vandal_receiver.15c5a1f8b62ab0520cf7394563f73aea.png", + "thumb": "items/images/en/thumbs/dera_vandal_receiver.15c5a1f8b62ab0520cf7394563f73aea.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd898e", + "slug": "ankyros_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Gauntlet/PrimeAnkyros/PrimeAnkyros", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Ankyros Prime Set", + "icon": "items/images/en/ankyros_prime_set.81b3e5876c214047d10a0d90f92ebdfe.png", + "thumb": "items/images/en/thumbs/ankyros_prime_set.81b3e5876c214047d10a0d90f92ebdfe.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155db", + "slug": "vile_acceleration", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/CorruptedFireRateDamageRifle", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vile Acceleration", + "icon": "items/images/en/vile_acceleration.099e12a749ebb259d6cf079c8608297f.png", + "thumb": "items/images/en/thumbs/vile_acceleration.099e12a749ebb259d6cf079c8608297f.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51560e", + "slug": "barrel_diffusion", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponFireIterationsMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Barrel Diffusion", + "icon": "items/images/en/barrel_diffusion.3c2fbabc91cc911e56dc43b046b9ecdb.png", + "thumb": "items/images/en/thumbs/barrel_diffusion.3c2fbabc91cc911e56dc43b046b9ecdb.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51563a", + "slug": "whirlwind", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveSpeedMod", + "tags": [ + "mod", + "rare", + "melee", + "thrown_melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Whirlwind", + "icon": "items/images/en/whirlwind.80aebc2d1fc7a32c71c31d57142b555b.png", + "thumb": "items/images/en/thumbs/whirlwind.80aebc2d1fc7a32c71c31d57142b555b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51563b", + "slug": "antitoxin", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageResistancePoison", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Antitoxin", + "icon": "items/images/en/antitoxin.a03872dae3e9b75b7f278d6f9007816c.png", + "thumb": "items/images/en/thumbs/antitoxin.a03872dae3e9b75b7f278d6f9007816c.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51563c", + "slug": "disruptor", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponImpactDamageMod", + "tags": [ + "common", + "shotgun", + "mod", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Disruptor", + "icon": "items/images/en/disruptor.059fd9d2db6d766925cad2ca29234cb3.png", + "thumb": "items/images/en/thumbs/disruptor.059fd9d2db6d766925cad2ca29234cb3.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51563d", + "slug": "heavy_caliber", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/CorruptedDamageRecoilRifle", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Heavy Caliber", + "icon": "items/images/en/heavy_caliber.495eed0ad86012fe04049b94426c90ec.png", + "thumb": "items/images/en/thumbs/heavy_caliber.495eed0ad86012fe04049b94426c90ec.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51563e", + "slug": "piercing_hit", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponArmorPiercingDamageMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Piercing Hit", + "icon": "items/images/en/piercing_hit.f2c3f27b03f5a40d3e8a6b6f7d8cfafe.png", + "thumb": "items/images/en/thumbs/piercing_hit.f2c3f27b03f5a40d3e8a6b6f7d8cfafe.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515642", + "slug": "continuity", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarAbilityDurationMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Continuity", + "icon": "items/images/en/continuity.c8f4628b5ad77db5bee66f587e6a1b96.png", + "thumb": "items/images/en/thumbs/continuity.c8f4628b5ad77db5bee66f587e6a1b96.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51564e", + "slug": "tainted_clip", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/CorruptedMaxClipReloadSpeedPistol", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tainted Clip", + "icon": "items/images/en/tainted_clip.bbcdd9d47cba552ded5731145f9998a3.png", + "thumb": "items/images/en/thumbs/tainted_clip.bbcdd9d47cba552ded5731145f9998a3.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515658", + "slug": "shock_trooper", + "gameRef": "/Lotus/Powersuits/Volt/ShockAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "volt" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shock Trooper", + "icon": "items/images/en/shock_trooper.c7ff5b51ab859ff72643c66b6349af52.png", + "thumb": "items/images/en/thumbs/shock_trooper.c7ff5b51ab859ff72643c66b6349af52.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51568e", + "slug": "flow", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarPowerMaxMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Flow", + "icon": "items/images/en/flow.f8307937a89740f0650d730c3d59da3f.png", + "thumb": "items/images/en/thumbs/flow.f8307937a89740f0650d730c3d59da3f.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515698", + "slug": "critical_deceleration", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/CorruptedCritChanceFireRateShotgun", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Critical Deceleration", + "icon": "items/images/en/critical_deceleration.1e6f0389e96ef70a93f09667ac7282a4.png", + "thumb": "items/images/en/thumbs/critical_deceleration.1e6f0389e96ef70a93f09667ac7282a4.128x128.png" + } + } + }, + { + "id": "54ca4330e779891a286a5428", + "slug": "wyrm_prime_carapace", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeWyrmCarapace", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Wyrm Prime Carapace", + "icon": "items/images/en/wyrm_prime_carapace.4da3da5cc8eeef554dc3208bbb5a8f26.png", + "thumb": "items/images/en/thumbs/wyrm_prime_carapace.4da3da5cc8eeef554dc3208bbb5a8f26.128x128.png", + "subIcon": "sub_icons/sentinel/prime_carapace_128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178ae", + "slug": "healing_flame", + "gameRef": "/Lotus/Powersuits/Ember/FireBlastAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ember" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Healing Flame", + "icon": "items/images/en/healing_flame.0672e5552e12d348dbc0521e3841c9a1.png", + "thumb": "items/images/en/thumbs/healing_flame.0672e5552e12d348dbc0521e3841c9a1.128x128.png" + } + } + }, + { + "id": "56153836b66f836fa7d42c8c", + "slug": "atlantis_vulcan", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/NunchakuCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "nunchaku" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Atlantis Vulcan", + "icon": "items/images/en/atlantis_vulcan.e996f3c43cc79c72236bd8b5b422fc65.png", + "thumb": "items/images/en/thumbs/atlantis_vulcan.e996f3c43cc79c72236bd8b5b422fc65.128x128.png" + } + } + }, + { + "id": "56153f21b66f83707a67c0b4", + "slug": "prisma_tetra", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CorpusUMP/PrismaCorpusUMP", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Prisma Tetra", + "icon": "items/images/en/prisma_tetra.e1e516760ccd856f2a66a1992d7e98e1.png", + "thumb": "items/images/en/thumbs/prisma_tetra.e1e516760ccd856f2a66a1992d7e98e1.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa2a", + "slug": "sonic_fracture", + "gameRef": "/Lotus/Powersuits/Banshee/PushAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "banshee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sonic Fracture", + "icon": "items/images/en/sonic_fracture.9f7e0c89b5a38776f2bf3571a170dac3.png", + "thumb": "items/images/en/thumbs/sonic_fracture.9f7e0c89b5a38776f2bf3571a170dac3.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a9", + "slug": "paris_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Bows/PrimeHuntingBow", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Paris Prime Set", + "icon": "items/images/en/paris_prime_set.971f957f8304ce10617836343d47b238.png", + "thumb": "items/images/en/thumbs/paris_prime_set.971f957f8304ce10617836343d47b238.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89af", + "slug": "trinity_prime_set", + "gameRef": "/Lotus/Powersuits/Trinity/TrinityPrime", + "tags": [ + "set", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Trinity Prime Set", + "icon": "items/images/en/trinity_prime_set.4115dba418ab8ee70197a7fdaee8da76.png", + "thumb": "items/images/en/thumbs/trinity_prime_set.4115dba418ab8ee70197a7fdaee8da76.128x128.png" + } + } + }, + { + "id": "59dfeb63115f1d887cfd7aba", + "slug": "vigilante_armaments", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Vigilante/PrimaryVigilanteArmamentsMod", + "tags": [ + "mod", + "common", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vigilante Armaments", + "icon": "items/images/en/vigilante_armaments.4aa8eaec104ba573159a2cbf207b6314.png", + "thumb": "items/images/en/thumbs/vigilante_armaments.4aa8eaec104ba573159a2cbf207b6314.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec82", + "slug": "sybaris_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/SybarisPrimeBlueprint", + "tags": [ + "primary", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sybaris Prime Blueprint", + "icon": "items/images/en/sybaris_prime_blueprint.39d7dc4a904f7db7e7c78901976aa5fa.png", + "thumb": "items/images/en/thumbs/sybaris_prime_blueprint.39d7dc4a904f7db7e7c78901976aa5fa.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "58f0ee99aa4b70452a173072", + "slug": "beguiling_lantern", + "gameRef": "/Lotus/Powersuits/Fairy/FairyLightAugmentCard", + "tags": [ + "mod", + "titania", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Beguiling Lantern", + "icon": "items/images/en/beguiling_lantern.c3248916b6065e2a6e97151e7cfc912c.png", + "thumb": "items/images/en/thumbs/beguiling_lantern.c3248916b6065e2a6e97151e7cfc912c.128x128.png" + } + } + }, + { + "id": "59a5c2565cd9938cfede703e", + "slug": "ballistica_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeBallistica/PrimeBallistica", + "tags": [ + "weapon", + "prime", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Ballistica Prime Set", + "icon": "items/images/en/ballistica_prime_set.4ed33348008ace40406d0383f692ecac.png", + "thumb": "items/images/en/thumbs/ballistica_prime_set.4ed33348008ace40406d0383f692ecac.128x128.png" + } + } + }, + { + "id": "5a04750a6c4655012038ddc6", + "slug": "virtuos_fury", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/IncreasedDamageOnStatusProc", + "tags": [ + "operator", + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Fury", + "icon": "items/images/en/virtuos_fury.f71902bf678d290ad03b625dc35834ca.png", + "thumb": "items/images/en/thumbs/virtuos_fury.f71902bf678d290ad03b625dc35834ca.128x128.png" + } + } + }, + { + "id": "5a04750a6c4655012038ddc7", + "slug": "virtuos_null", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/OperatorAmmoRegenOnKill", + "tags": [ + "common", + "arcane_enhancement", + "operator" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Null", + "icon": "items/images/en/virtuos_null.e3f5a968f4b41d236acad8c9efb8cfef.png", + "thumb": "items/images/en/thumbs/virtuos_null.e3f5a968f4b41d236acad8c9efb8cfef.128x128.png" + } + } + }, + { + "id": "5a04750b6c4655012038ddc8", + "slug": "virtuos_tempo", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/AttackSpeedOnKill", + "tags": [ + "common", + "arcane_enhancement", + "operator" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Tempo", + "icon": "items/images/en/virtuos_tempo.6e63273510b1ba372aa7eaccfce695e2.png", + "thumb": "items/images/en/thumbs/virtuos_tempo.6e63273510b1ba372aa7eaccfce695e2.128x128.png" + } + } + }, + { + "id": "5a04750b6c4655012038ddc9", + "slug": "exodia_force", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/StatusTriggerRadialDamage", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Force", + "icon": "items/images/en/exodia_force.3777cf3132503f972624ac56c1731743.png", + "thumb": "items/images/en/thumbs/exodia_force.3777cf3132503f972624ac56c1731743.128x128.png" + } + } + }, + { + "id": "5a04750e6c4655012038ddd0", + "slug": "virtuos_ghost", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/StatusChanceOnHeadshot", + "tags": [ + "operator", + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Ghost", + "icon": "items/images/en/virtuos_ghost.1bf1c1292e89b66f607c9955ea78b1cb.png", + "thumb": "items/images/en/thumbs/virtuos_ghost.1bf1c1292e89b66f607c9955ea78b1cb.128x128.png" + } + } + }, + { + "id": "59385f6716efa3a742b15f60", + "slug": "chromatic_blade", + "gameRef": "/Lotus/Powersuits/Excalibur/SwordOfDoomAugmentCard", + "tags": [ + "mod", + "excalibur", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Chromatic Blade", + "icon": "items/images/en/chromatic_blade.2d72fee7f3deddd7450241dca62bfd47.png", + "thumb": "items/images/en/thumbs/chromatic_blade.2d72fee7f3deddd7450241dca62bfd47.128x128.png" + } + } + }, + { + "id": "595567c18e34b5ed3cb3d9bb", + "slug": "expel_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPistolFactionDamageCorrupted", + "tags": [ + "mod", + "pistol", + "secondary", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Expel Orokin", + "icon": "items/images/en/expel_corrupted.4b08de242283c30a3da17d9336156b3f.png", + "thumb": "items/images/en/thumbs/expel_corrupted.4b08de242283c30a3da17d9336156b3f.128x128.png" + } + } + }, + { + "id": "59dfeb5c115f1d887cfd7ab3", + "slug": "gladiator_aegis", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Gladiator/WarframeGladiatorAegisMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Gladiator Aegis", + "icon": "items/images/en/gladiator_aegis.b090c523158aaeb9625bdca8df150372.png", + "thumb": "items/images/en/thumbs/gladiator_aegis.b090c523158aaeb9625bdca8df150372.128x128.png" + } + } + }, + { + "id": "5911f11d97a0add8e9d5da4d", + "slug": "neutralizing_justice", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/MiterMod", + "tags": [ + "syndicate", + "miter", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Neutralizing Justice", + "icon": "items/images/en/neutralizing_justice.07728fc8496c758312e086bb788ad1ea.png", + "thumb": "items/images/en/thumbs/neutralizing_justice.07728fc8496c758312e086bb788ad1ea.128x128.png" + } + } + }, + { + "id": "5be5f5a23ffcc7038857f123", + "slug": "radiant_zodian", + "gameRef": "/Lotus/Types/Items/Gems/Solaris/SolarisEidolonGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Radiant Zodian", + "icon": "items/images/en/radiant_zodian.e2aefff3921bbf6045832fe9b77b0480.png", + "thumb": "items/images/en/thumbs/radiant_zodian.e2aefff3921bbf6045832fe9b77b0480.128x128.png" + } + } + }, + { + "id": "5be5f5a43ffcc7038857f12f", + "slug": "biting_piranha", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPDualDaggersStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "dual_daggers", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Biting Piranha", + "icon": "items/images/en/biting_piranha.3ee2f8dd42bb3aa6c5351a8a85813984.png", + "thumb": "items/images/en/thumbs/biting_piranha.3ee2f8dd42bb3aa6c5351a8a85813984.128x128.png" + } + } + }, + { + "id": "5d21ce46f4604c012d1e0c12", + "slug": "wukong_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WukongPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Wukong Prime Blueprint", + "icon": "items/images/en/wukong_prime_blueprint.6fa7196ae48a7a3901c35834476f3891.png", + "thumb": "items/images/en/thumbs/wukong_prime_blueprint.6fa7196ae48a7a3901c35834476f3891.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5d21ce46f4604c012d1e0c13", + "slug": "wukong_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WukongPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wukong Prime Systems Blueprint", + "icon": "items/images/en/wukong_prime_systems.6fa7196ae48a7a3901c35834476f3891.png", + "thumb": "items/images/en/thumbs/wukong_prime_systems.6fa7196ae48a7a3901c35834476f3891.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5d21ce47f4604c012d1e0c14", + "slug": "zhuge_prime_string", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZhugePrimeString", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Zhuge Prime String", + "icon": "items/images/en/zhuge_prime_string.38e0e6189f1a333b382507a117b194a9.png", + "thumb": "items/images/en/thumbs/zhuge_prime_string.38e0e6189f1a333b382507a117b194a9.128x128.png", + "subIcon": "sub_icons/weapon/prime_string_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515664", + "slug": "gilded_truth", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/BurstonPrimeMod", + "tags": [ + "syndicate", + "burston_prime", + "mod", + "rare", + "primary", + "prime" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gilded Truth", + "icon": "items/images/en/gilded_truth.4f864f82b65bf77a28c01419c6cbfce1.png", + "thumb": "items/images/en/thumbs/gilded_truth.4f864f82b65bf77a28c01419c6cbfce1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51566b", + "slug": "link_fiber", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowLinkArmourMaxMod", + "tags": [ + "mod", + "uncommon", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Link Fiber", + "icon": "items/images/en/link_armor.53ac5d1a903c08dfdf9fb776919eb218.png", + "thumb": "items/images/en/thumbs/link_armor.53ac5d1a903c08dfdf9fb776919eb218.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d6", + "slug": "sure_footed", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarKnockdownResistanceMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sure Footed", + "icon": "items/images/en/sure_footed.fc77413849eba2d536fe1e92526ec2d4.png", + "thumb": "items/images/en/thumbs/sure_footed.fc77413849eba2d536fe1e92526ec2d4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51566c", + "slug": "bleeding_willow", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/PolearmCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "polearms" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Bleeding Willow", + "icon": "items/images/en/bleeding_willow.97ef22edecb5ca66d2bb3dcd5f8e8d50.png", + "thumb": "items/images/en/thumbs/bleeding_willow.97ef22edecb5ca66d2bb3dcd5f8e8d50.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51566d", + "slug": "undying_will", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarBleedoutDelayMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Undying Will", + "icon": "items/images/en/undying_will.f8667dd64fe47e9d1473429ebc20f06f.png", + "thumb": "items/images/en/thumbs/undying_will.f8667dd64fe47e9d1473429ebc20f06f.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156dd", + "slug": "iron_phoenix", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/IronPhoenixMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "swords" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Iron Phoenix", + "icon": "items/images/en/iron_phoenix.9946b995245e14dcf5940176f1eb1df0.png", + "thumb": "items/images/en/thumbs/iron_phoenix.9946b995245e14dcf5940176f1eb1df0.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51566e", + "slug": "pointed_wind", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DaggerCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "daggers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pointed Wind", + "icon": "items/images/en/pointed_wind.32a87c4d2733e14f641db59e0c53e8c6.png", + "thumb": "items/images/en/thumbs/pointed_wind.32a87c4d2733e14f641db59e0c53e8c6.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156de", + "slug": "stabilizer", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponRecoilReductionMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Stabilizer", + "icon": "items/images/en/stabilizer.a31ad68e7d65e2e209c966fac3d5a6d1.png", + "thumb": "items/images/en/thumbs/stabilizer.a31ad68e7d65e2e209c966fac3d5a6d1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51566f", + "slug": "rifle_scavenger", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerRifleAmmoAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rifle Scavenger", + "icon": "items/images/en/rifle_scavenger.ed6f40912a4c031cf930152ce241e7c8.png", + "thumb": "items/images/en/thumbs/rifle_scavenger.ed6f40912a4c031cf930152ce241e7c8.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156df", + "slug": "quickening", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Channel/ChannelFireRateMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Quickening", + "icon": "items/images/en/quickening.874008a73f5076666efc47b6f1f6cccf.png", + "thumb": "items/images/en/thumbs/quickening.874008a73f5076666efc47b6f1f6cccf.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515670", + "slug": "rubedo_lined_barrel", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleDamageAmountMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rubedo-Lined Barrel", + "icon": "items/images/en/rubedo_lined_barrel.1aaa79bd2072d87ef1401758528b0ed0.png", + "thumb": "items/images/en/thumbs/rubedo_lined_barrel.1aaa79bd2072d87ef1401758528b0ed0.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e0", + "slug": "sundering_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponArmorPiercingDamageMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sundering Strike", + "icon": "items/images/en/sundering_strike.ebd1f73508fa44ab1d00a53ce98de05e.png", + "thumb": "items/images/en/thumbs/sundering_strike.ebd1f73508fa44ab1d00a53ce98de05e.128x128.png" + } + } + }, + { + "id": "5b00231bac0f7e006fd6f7b4", + "slug": "negate", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/ProcAbsorb", + "tags": [ + "mod", + "rare", + "sentinel", + "wyrm" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Negate", + "icon": "items/images/en/negate.9797e761f012ebd126009f3c45c55027.png", + "thumb": "items/images/en/thumbs/negate.9797e761f012ebd126009f3c45c55027.128x128.png" + } + } + }, + { + "id": "5b00231cac0f7e006fd6f7b5", + "slug": "peculiar_growth", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Peculiars/InflationMod", + "tags": [ + "mod", + "peculiar", + "arcane_enhancement", + "warframe" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Peculiar Growth", + "icon": "items/images/en/peculiar_growth.5300b360bad6d7c97e3700baa3451a51.png", + "thumb": "items/images/en/thumbs/peculiar_growth.5300b360bad6d7c97e3700baa3451a51.128x128.png" + } + } + }, + { + "id": "5b2985e0eb069f04ea65b0d8", + "slug": "destreza_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DestrezaPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Destreza Prime Blade", + "icon": "items/images/en/destreza_prime_blade.b1a1cc461a2cfcf9998f0588c8e932a4.png", + "thumb": "items/images/en/thumbs/destreza_prime_blade.b1a1cc461a2cfcf9998f0588c8e932a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b3", + "slug": "mecha_empowered", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Mecha/WarframeAuraMechaEmpowerMod", + "tags": [ + "mod", + "aura", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Mecha Empowered", + "icon": "items/images/en/mecha_empowered.0056d02d3591f962eb93a4e0e3c26959.png", + "thumb": "items/images/en/thumbs/mecha_empowered.0056d02d3591f962eb93a4e0e3c26959.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b7", + "slug": "mecha_pulse", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Mecha/WarframeMechaPulseMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mecha Pulse", + "icon": "items/images/en/mecha_pulse.ef4fbfb1218faa280cece59aa493f4f8.png", + "thumb": "items/images/en/thumbs/mecha_pulse.ef4fbfb1218faa280cece59aa493f4f8.128x128.png" + } + } + }, + { + "id": "5be5f59e3ffcc7038857f0f9", + "slug": "mafic_rain", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPNunchakuStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "nunchaku", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mafic Rain", + "icon": "items/images/en/mafic_rain.c724ae6bd9c7d8ee2f2a30ab26cd9587.png", + "thumb": "items/images/en/thumbs/mafic_rain.c724ae6bd9c7d8ee2f2a30ab26cd9587.128x128.png" + } + } + }, + { + "id": "5be5f59f3ffcc7038857f0fe", + "slug": "crashing_timber", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPStavesStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "staves", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crashing Timber", + "icon": "items/images/en/crashing_timber.78bf7c1c0cc21be71bee559092289015.png", + "thumb": "items/images/en/thumbs/crashing_timber.78bf7c1c0cc21be71bee559092289015.128x128.png" + } + } + }, + { + "id": "5be5f5a03ffcc7038857f106", + "slug": "tainted_hydra", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPSwordWhipStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "mod", + "blade_and_whip" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tainted Hydra", + "icon": "items/images/en/tainted_hydra.e7b9da17570f90918620dab0d5369a85.png", + "thumb": "items/images/en/thumbs/tainted_hydra.e7b9da17570f90918620dab0d5369a85.128x128.png" + } + } + }, + { + "id": "5be5f5a13ffcc7038857f10b", + "slug": "lashing_coil", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPWhipStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "whips", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lashing Coil", + "icon": "items/images/en/lashing_coil.865c7d854f031a1eb28d8ca6a17b2ec1.png", + "thumb": "items/images/en/thumbs/lashing_coil.865c7d854f031a1eb28d8ca6a17b2ec1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51561f", + "slug": "regen", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Regen", + "tags": [ + "mod", + "sentinel", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Regen", + "icon": "items/images/en/regen.5c9ce2616c97c6f6acd55023ca7974f7.png", + "thumb": "items/images/en/thumbs/regen.5c9ce2616c97c6f6acd55023ca7974f7.128x128.png" + } + } + }, + { + "id": "588c7923c353473a172364f3", + "slug": "aklex_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AklexPrimeLink", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Aklex Prime Link", + "icon": "items/images/en/aklex_prime_link.d4be2f3e545d5e1101d5b83a027e68fe.png", + "thumb": "items/images/en/thumbs/aklex_prime_link.d4be2f3e545d5e1101d5b83a027e68fe.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515625", + "slug": "speed_trigger", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFireRateMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Speed Trigger", + "icon": "items/images/en/speed_trigger.ae1332c42356a11560f0c6878258e5c9.png", + "thumb": "items/images/en/thumbs/speed_trigger.ae1332c42356a11560f0c6878258e5c9.128x128.png" + } + } + }, + { + "id": "59dfeb6c115f1d887cfd7ac3", + "slug": "augur_secrets", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Augur/WarframeAugurSecretsMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Augur Secrets", + "icon": "items/images/en/augur_secrets.1edc65bbf884914b50e3d265e8893457.png", + "thumb": "items/images/en/thumbs/augur_secrets.1edc65bbf884914b50e3d265e8893457.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf06c", + "slug": "cressas_garrison_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateSteelMeridian", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Cressa's Garrison Scene", + "icon": "items/images/en/cressas_garrison_scene.e331642551c2014d21ca853d7dc4d974.png", + "thumb": "items/images/en/thumbs/cressas_garrison_scene.e331642551c2014d21ca853d7dc4d974.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf06a", + "slug": "arbiters_tribunal_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateArbiters", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Arbiter's Tribunal Scene", + "icon": "items/images/en/arbiters_tribunal_scene.0dd3f1fb5c47b0649f24a317fcc82e03.png", + "thumb": "items/images/en/thumbs/arbiters_tribunal_scene.0dd3f1fb5c47b0649f24a317fcc82e03.128x128.png" + } + } + }, + { + "id": "59ecb664195d2301ee11c929", + "slug": "grineer_forest_industry_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGrineerForestIntermediateB", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Forest Industry Scene", + "icon": "items/images/en/grineer_forest_industry_scene.c07de36b4524d5758e6fbb1f14f637c2.png", + "thumb": "items/images/en/thumbs/grineer_forest_industry_scene.c07de36b4524d5758e6fbb1f14f637c2.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c3119210d", + "slug": "banshee_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BansheePrimeSystemsBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Banshee Prime Systems Blueprint", + "icon": "items/images/en/banshee_prime_systems.a0956816beb733841bce57e69a568cd6.png", + "thumb": "items/images/en/thumbs/banshee_prime_systems.a0956816beb733841bce57e69a568cd6.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515636", + "slug": "arrow_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponBowConvertAmmoMod", + "tags": [ + "mod", + "rare", + "primary", + "bow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arrow Mutation", + "icon": "items/images/en/arrow_mutation.692f3be146e439183462b742166788e3.png", + "thumb": "items/images/en/thumbs/arrow_mutation.692f3be146e439183462b742166788e3.128x128.png" + } + } + }, + { + "id": "59a48b625cd9938cfede7038", + "slug": "hydroid_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HydroidPrimeBlueprint", + "tags": [ + "warframe", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Hydroid Prime Blueprint", + "icon": "items/images/en/hydroid_prime_blueprint.5f1abb4ef137bf0dd41565a913f5232a.png", + "thumb": "items/images/en/thumbs/hydroid_prime_blueprint.5f1abb4ef137bf0dd41565a913f5232a.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5754a300e701ef5844257da6", + "slug": "hastened_deflection", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowShieldRechargeRateMod", + "tags": [ + "mod", + "uncommon", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hastened Deflection", + "icon": "items/images/en/hastened_deflection.5d938f59e0bb9cd02f40044c2edfcbdd.png", + "thumb": "items/images/en/thumbs/hastened_deflection.5d938f59e0bb9cd02f40044c2edfcbdd.128x128.png" + } + } + }, + { + "id": "5c4050e32cc6ce023b79c0f1", + "slug": "infectious_injection", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingEventToxinStatusMeleeMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Infectious Injection", + "icon": "items/images/en/infectious_injection.5074db2c7f631857ed2f38ce7b3fc85c.png", + "thumb": "items/images/en/thumbs/infectious_injection.5074db2c7f631857ed2f38ce7b3fc85c.128x128.png" + } + } + }, + { + "id": "5c8694862cc6ce0bbc095d9d", + "slug": "wise_razor", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/LongKatanaCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "two_handed_nikana" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Wise Razor", + "icon": "items/images/en/wise_razor.f030a617d9883c07f3cc854f98537534.png", + "thumb": "items/images/en/thumbs/wise_razor.f030a617d9883c07f3cc854f98537534.128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a0", + "slug": "equinox_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EquinoxPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Equinox Prime Systems Blueprint", + "icon": "items/images/en/equinox_prime_systems.1163c3dad7a8ffce02af7d475fc0ccd4.png", + "thumb": "items/images/en/thumbs/equinox_prime_systems.1163c3dad7a8ffce02af7d475fc0ccd4.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5cc4816afc2db2099c1804cd", + "slug": "archgun_riven_mod_(veiled)", + "gameRef": "/Lotus/Upgrades/Mods/Randomized/LotusArchgunRandomModRare", + "tags": [ + "mod", + "riven_mod", + "common", + "veiled_riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Archgun Riven Mod (Veiled)", + "icon": "items/images/en/arch_gun_riven_mod_(veiled).fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/arch_gun_riven_mod_(veiled).fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff55", + "slug": "paris_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BowPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Paris Prime Blueprint", + "icon": "items/images/en/paris_prime_blueprint.971f957f8304ce10617836343d47b238.png", + "thumb": "items/images/en/thumbs/paris_prime_blueprint.971f957f8304ce10617836343d47b238.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5754a307e701ef5844257da7", + "slug": "resonating_quake", + "gameRef": "/Lotus/Powersuits/Banshee/EarthQuakeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "banshee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Resonating Quake", + "icon": "items/images/en/resonating_quake.02bc8ba11ab6bf320f04755aa6b9a972.png", + "thumb": "items/images/en/thumbs/resonating_quake.02bc8ba11ab6bf320f04755aa6b9a972.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515675", + "slug": "flailing_branch", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/StaffCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "staves" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Flailing Branch", + "icon": "items/images/en/flailing_branch.ae36406a1e5866ec829b6a46c1bceb1b.png", + "thumb": "items/images/en/thumbs/flailing_branch.ae36406a1e5866ec829b6a46c1bceb1b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ac", + "slug": "frostbite", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/IceEventPistolMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Frostbite", + "icon": "items/images/en/frostbite.e8c9b830402b0f3228c0c14efcae34fe.png", + "thumb": "items/images/en/thumbs/frostbite.e8c9b830402b0f3228c0c14efcae34fe.128x128.png" + } + } + }, + { + "id": "5d322d1174bdad027da4d096", + "slug": "gas_city_central_drop_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityConPlusDOpen", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Central Drop Scene", + "icon": "items/images/en/gas_city_central_drop_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_central_drop_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d6ea67e7ea27b05d929cc04", + "slug": "lua_unairu_lens", + "gameRef": "/Lotus/Upgrades/Focus/WardLensLua", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Lua Unairu Lens", + "icon": "items/images/en/lua_unairu_lens.e3b2ed7d024b138843320d13d204e020.png", + "thumb": "items/images/en/thumbs/lua_unairu_lens.e3b2ed7d024b138843320d13d204e020.128x128.png" + } + } + }, + { + "id": "5d8765dd7ea27b08950c13b6", + "slug": "shepherd", + "gameRef": "/Lotus/Upgrades/Mods/Aura/WarframeAuraLoyalHerdMod", + "tags": [ + "mod", + "rare", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shepherd", + "icon": "items/images/en/shepherd.f34b2a53b877927bfc4356ebe15ea9f7.png", + "thumb": "items/images/en/thumbs/shepherd.f34b2a53b877927bfc4356ebe15ea9f7.128x128.png" + } + } + }, + { + "id": "5bebf1713ffcc704caf38cf5", + "slug": "orokin_tower_extraction_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileOrokinExtraction", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Orokin Tower Extraction Scene", + "icon": "items/images/en/orokin_tower_extraction_scene.e0839225d120829577caf4cf65a43789.png", + "thumb": "items/images/en/thumbs/orokin_tower_extraction_scene.e0839225d120829577caf4cf65a43789.128x128.png" + } + } + }, + { + "id": "5c1bda1814a8e4006b1dad8a", + "slug": "deadly_efficiency", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingDamageAfterReloadMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Deadly Efficiency", + "icon": "items/images/en/deadly_efficiency.302b1c7eefacaad306cc6d2fda818e90.png", + "thumb": "items/images/en/thumbs/deadly_efficiency.302b1c7eefacaad306cc6d2fda818e90.128x128.png" + } + } + }, + { + "id": "5c1bda1914a8e4006b1dad8c", + "slug": "virtuos_forge", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/VoidToHeatDamage", + "tags": [ + "operator", + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Forge", + "icon": "items/images/en/virtuos_forge.51355a12fdc05c779f027af6caa6f157.png", + "thumb": "items/images/en/thumbs/virtuos_forge.51355a12fdc05c779f027af6caa6f157.128x128.png" + } + } + }, + { + "id": "5bebf1713ffcc704caf38cf6", + "slug": "akvasto_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AkvastoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Akvasto Prime Blueprint", + "icon": "items/images/en/akvasto_prime_blueprint.029887bbd387510ffec1debd81f65dab.png", + "thumb": "items/images/en/thumbs/akvasto_prime_blueprint.029887bbd387510ffec1debd81f65dab.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5bebf1713ffcc704caf38cf7", + "slug": "akvasto_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkvastoPrimeLink", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akvasto Prime Link", + "icon": "items/images/en/akvasto_prime_link.029887bbd387510ffec1debd81f65dab.png", + "thumb": "items/images/en/thumbs/akvasto_prime_link.029887bbd387510ffec1debd81f65dab.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "5c1bda1914a8e4006b1dad8d", + "slug": "contamination_casing", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingEventToxinStatusRifleMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Contamination Casing", + "icon": "items/images/en/contamination_casing.de6a78dc0528ba17a09271d73ea2f935.png", + "thumb": "items/images/en/thumbs/contamination_casing.de6a78dc0528ba17a09271d73ea2f935.128x128.png" + } + } + }, + { + "id": "5bebf1713ffcc704caf38cf8", + "slug": "onkkos_command_post_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileOnkosCave", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Onkko's Command Post Scene", + "icon": "items/images/en/onkkos_command_post_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/onkkos_command_post_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5870156c937cde2c9d378ac0", + "slug": "flux_overdrive", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/CorpusArena/FluxRifleCorpusArenaMod", + "tags": [ + "mod", + "rare", + "primary", + "flux_rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Flux Overdrive", + "icon": "items/images/en/flux_overdrive.9376e8165c3348b000ea5079648ce948.png", + "thumb": "items/images/en/thumbs/flux_overdrive.9376e8165c3348b000ea5079648ce948.128x128.png" + } + } + }, + { + "id": "5783bf54d9b6753790c89e97", + "slug": "onorix_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchAxeBlade", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Onorix Blade", + "icon": "items/images/en/onorix_blade.04c7efcf7c6239c88c275d164d6a259a.png", + "thumb": "items/images/en/thumbs/onorix_blade.04c7efcf7c6239c88c275d164d6a259a.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "58358e1d2c2ada00655a4ef7", + "slug": "venka_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeVenKa/PrimeVenkaClaws", + "tags": [ + "weapon", + "prime", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Venka Prime Set", + "icon": "items/images/en/venka_prime_set.123cb62ab1e8a4edd78997a256cf1e7f.png", + "thumb": "items/images/en/thumbs/venka_prime_set.123cb62ab1e8a4edd78997a256cf1e7f.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c2", + "slug": "suppress", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponNoiseReductionMod", + "tags": [ + "common", + "mod", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Suppress", + "icon": "items/images/en/suppress.4fe191bbd38ac388a7e39b805b0bec95.png", + "thumb": "items/images/en/thumbs/suppress.4fe191bbd38ac388a7e39b805b0bec95.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155cd", + "slug": "target_fixation", + "gameRef": "/Lotus/Powersuits/Tengu/DiveBombAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "zephyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Target Fixation", + "icon": "items/images/en/target_fixation.864aac356d2748f71e0eec733e78d6f4.png", + "thumb": "items/images/en/thumbs/target_fixation.864aac356d2748f71e0eec733e78d6f4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ce", + "slug": "maglev", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarSlideBoostMod", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Maglev", + "icon": "items/images/en/maglev.23424e017ab170692b7c3aa7c274b839.png", + "thumb": "items/images/en/thumbs/maglev.23424e017ab170692b7c3aa7c274b839.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155df", + "slug": "cleanse_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponShotgunFactionDamageGrineer", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cleanse Grineer", + "icon": "items/images/en/cleanse_grineer.6272080967d415c1b552b9e824df3cdf.png", + "thumb": "items/images/en/thumbs/cleanse_grineer.6272080967d415c1b552b9e824df3cdf.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a512", + "slug": "heightened_reflexes", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/FasterCastingHigherEnergyCostMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Heightened Reflexes", + "icon": "items/images/en/heightened_reflexes.709ed350f31d191816a0b56ffe82188f.png", + "thumb": "items/images/en/thumbs/heightened_reflexes.709ed350f31d191816a0b56ffe82188f.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e2", + "slug": "hunt", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowChargePrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "huras_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunt", + "icon": "items/images/en/hunt.b962f48385bc2733012d480f8cb8f1e6.png", + "thumb": "items/images/en/thumbs/hunt.b962f48385bc2733012d480f8cb8f1e6.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff51", + "slug": "orthos_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PolearmPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Orthos Prime Blueprint", + "icon": "items/images/en/orthos_prime_blueprint.049c8584708b849d1eff500b182825f2.png", + "thumb": "items/images/en/thumbs/orthos_prime_blueprint.049c8584708b849d1eff500b182825f2.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e4", + "slug": "hall_of_malevolence", + "gameRef": "/Lotus/Powersuits/Harlequin/IllusionAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mirage" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hall Of Malevolence", + "icon": "items/images/en/hall_of_malevolence.00f7a45b319be600ecc0f40ad7b90a6c.png", + "thumb": "items/images/en/thumbs/hall_of_malevolence.00f7a45b319be600ecc0f40ad7b90a6c.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e6", + "slug": "smite_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeFactionDamageGrineer", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Smite Grineer", + "icon": "items/images/en/smite_grineer.43bb7e987aa1a2e58acaf75c663ab3ab.png", + "thumb": "items/images/en/thumbs/smite_grineer.43bb7e987aa1a2e58acaf75c663ab3ab.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e7", + "slug": "firestorm", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponIncreaseRadialExplosionMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Firestorm", + "icon": "items/images/en/firestorm.2082d7fa0de3a3e7a8014e6c141d9744.png", + "thumb": "items/images/en/thumbs/firestorm.2082d7fa0de3a3e7a8014e6c141d9744.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e8", + "slug": "bane_of_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFactionDamageCorpus", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bane Of Corpus", + "icon": "items/images/en/bane_of_corpus.cc2b3296eb75613b1b4e159fb1c1b2ac.png", + "thumb": "items/images/en/thumbs/bane_of_corpus.cc2b3296eb75613b1b4e159fb1c1b2ac.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e9", + "slug": "berserker_fury", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponCritFireRateBonusMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Berserker Fury", + "icon": "items/images/en/berserker_fury.ab192773d6352d5bfddb8da40d59dee3.png", + "thumb": "items/images/en/thumbs/berserker_fury.ab192773d6352d5bfddb8da40d59dee3.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d7", + "slug": "rousing_plunder", + "gameRef": "/Lotus/Powersuits/Pirate/LiquifyAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "hydroid" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rousing Plunder", + "icon": "items/images/en/curative_undertow.fa308482fddacdfa8814c5625d5e0284.png", + "thumb": "items/images/en/thumbs/curative_undertow.fa308482fddacdfa8814c5625d5e0284.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a51a", + "slug": "loose_magazine", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/FasterReloadMoreRecoilPistolMod", + "tags": [ + "common", + "secondary", + "pvp", + "mod", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Loose Magazine", + "icon": "items/images/en/loose_magazine.0428fe78b8c7fa59ecd2861e1c3711b7.png", + "thumb": "items/images/en/thumbs/loose_magazine.0428fe78b8c7fa59ecd2861e1c3711b7.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d8", + "slug": "life_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Channel/ChannelVampireMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Life Strike", + "icon": "items/images/en/life_strike.da280f2b062ca433eee88796adb27694.png", + "thumb": "items/images/en/thumbs/life_strike.da280f2b062ca433eee88796adb27694.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ea", + "slug": "handspring", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarKnockdownRecoveryMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Handspring", + "icon": "items/images/en/handspring.7f0d92568cc658d57fd8a30090f4d6ea.png", + "thumb": "items/images/en/thumbs/handspring.7f0d92568cc658d57fd8a30090f4d6ea.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff53", + "slug": "paris_prime_grip", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBowGrip", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Paris Prime Grip", + "icon": "items/images/en/paris_prime_grip.971f957f8304ce10617836343d47b238.png", + "thumb": "items/images/en/thumbs/paris_prime_grip.971f957f8304ce10617836343d47b238.128x128.png", + "subIcon": "sub_icons/weapon/prime_grip_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a51b", + "slug": "lucky_shot", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/HigherVelocityLessAccurateRifleMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "rifle", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lucky Shot", + "icon": "items/images/en/lucky_shot.7e508641f4f2b24459547f38d9361de8.png", + "thumb": "items/images/en/thumbs/lucky_shot.7e508641f4f2b24459547f38d9361de8.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156db", + "slug": "electrified_barrel", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingWeaponElectricityDamageMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Electrified Barrel", + "icon": "items/images/en/electrified_barrel.4578f59f618c4033e9f3b00df2bbc921.png", + "thumb": "items/images/en/thumbs/electrified_barrel.4578f59f618c4033e9f3b00df2bbc921.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a51c", + "slug": "maximum_capacity", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/LargerMagLongerReloadRifleMod", + "tags": [ + "common", + "primary", + "pvp", + "mod", + "assault_rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Maximum Capacity", + "icon": "items/images/en/maximum_capacity.622ba4b0a9f284006d04dc5784e8f8af.png", + "thumb": "items/images/en/thumbs/maximum_capacity.622ba4b0a9f284006d04dc5784e8f8af.128x128.png" + } + } + }, + { + "id": "584470092c2ada00787e0888", + "slug": "savior_decoy", + "gameRef": "/Lotus/Powersuits/Loki/DecoyAugmentCard", + "tags": [ + "mod", + "warframe", + "rare", + "loki" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Savior Decoy", + "icon": "items/images/en/savior_decoy.3b7d00bb0966017aa4b8bcb50803069c.png", + "thumb": "items/images/en/thumbs/savior_decoy.3b7d00bb0966017aa4b8bcb50803069c.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156dc", + "slug": "stalking_fan", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/ScytheCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "scythes" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Stalking Fan", + "icon": "items/images/en/stalking_fan.a17c1259f9849fd88e1dabb9139ad84a.png", + "thumb": "items/images/en/thumbs/stalking_fan.a17c1259f9849fd88e1dabb9139ad84a.128x128.png" + } + } + }, + { + "id": "5992f2fa6a92654847b8df2a", + "slug": "primed_bane_of_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/PrimedWeaponFactionDamageCorrupted", + "tags": [ + "mod", + "rifle", + "primary", + "legendary" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Bane Of Orokin", + "icon": "items/images/en/primed_bane_of_corrupted.b273d5d38532bdb777d830ce87a84d9e.png", + "thumb": "items/images/en/thumbs/primed_bane_of_corrupted.b273d5d38532bdb777d830ce87a84d9e.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e4", + "slug": "warm_coat", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarMissionSpecificResistanceIce", + "tags": [ + "mod", + "warframe", + "common" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Warm Coat", + "icon": "items/images/en/warm_coat.c4e8b614799b3e9ffa04048260884082.png", + "thumb": "items/images/en/thumbs/warm_coat.c4e8b614799b3e9ffa04048260884082.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e5", + "slug": "tainted_mag", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/CorruptedMaxClipReloadSpeedRifle", + "tags": [ + "mod", + "rare", + "primary", + "assault_rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Tainted Mag", + "icon": "items/images/en/tainted_mag.39fd33acdfae357e3d1a4de81f41b598.png", + "thumb": "items/images/en/thumbs/tainted_mag.39fd33acdfae357e3d1a4de81f41b598.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a523", + "slug": "tactical_retreat", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/IncreasedMobilityOnLowHealth", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tactical Retreat", + "icon": "items/images/en/tactical_retreat.90f93980f8da9a73157f4a6bca59e78f.png", + "thumb": "items/images/en/thumbs/tactical_retreat.90f93980f8da9a73157f4a6bca59e78f.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51568a", + "slug": "bright_purity", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/SkanaMod", + "tags": [ + "syndicate", + "mod", + "melee", + "rare", + "skana" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Bright Purity", + "icon": "items/images/en/bright_purity.3efd8f002eda7453eaa2672792b613fc.png", + "thumb": "items/images/en/thumbs/bright_purity.3efd8f002eda7453eaa2672792b613fc.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51569d", + "slug": "frigid_blast", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/IceEventShotgunMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Frigid Blast", + "icon": "items/images/en/frigid_blast.0b918ce4eea7e629fbde24ad88de852e.png", + "thumb": "items/images/en/thumbs/frigid_blast.0b918ce4eea7e629fbde24ad88de852e.128x128.png" + } + } + }, + { + "id": "56dac5b45cc639de0a45c528", + "slug": "shrapnel_rounds", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/MarelokMultishot", + "tags": [ + "pvp", + "marelok", + "rare", + "mod", + "secondary" + ], + "i18n": { + "en": { + "name": "Shrapnel Rounds", + "icon": "items/images/en/shrapnel_rounds.5d6970e62fed4b7e5806a691540249e8.png", + "thumb": "items/images/en/thumbs/shrapnel_rounds.5d6970e62fed4b7e5806a691540249e8.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515593", + "slug": "bleeding_edge", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingMeleeCritDamageMod", + "tags": [ + "common", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Bleeding Edge", + "icon": "items/images/en/bleeding_edge.20bbcd5307f3d62b42c687470591ba49.png", + "thumb": "items/images/en/thumbs/bleeding_edge.20bbcd5307f3d62b42c687470591ba49.128x128.png" + } + } + }, + { + "id": "5bf54b483ffcc7066e7eb855", + "slug": "pax_seeker", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SeekerProjOnHeadshotKill", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Pax Seeker", + "icon": "items/images/en/pax_seeker.8e3a7fb880c0e047f9a7d60ca4fbfb84.png", + "thumb": "items/images/en/thumbs/pax_seeker.8e3a7fb880c0e047f9a7d60ca4fbfb84.128x128.png" + } + } + }, + { + "id": "5c182b739603780081b09a55", + "slug": "mesa_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MesaPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Mesa Prime Blueprint", + "icon": "items/images/en/mesa_prime_blueprint.34d67af54de052f6de1d5ae64ed40197.png", + "thumb": "items/images/en/thumbs/mesa_prime_blueprint.34d67af54de052f6de1d5ae64ed40197.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a5", + "slug": "equinox_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EquinoxPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Equinox Prime Neuroptics Blueprint", + "icon": "items/images/en/equinox_prime_neuroptics.1163c3dad7a8ffce02af7d475fc0ccd4.png", + "thumb": "items/images/en/thumbs/equinox_prime_neuroptics.1163c3dad7a8ffce02af7d475fc0ccd4.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5c196fae96037800ddadac16", + "slug": "redeemer_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/RedeemerPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Redeemer Prime Blueprint", + "icon": "items/images/en/redeemer_prime_blueprint.92fcede37c1ab66d22a2287dc2334731.png", + "thumb": "items/images/en/thumbs/redeemer_prime_blueprint.92fcede37c1ab66d22a2287dc2334731.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5c1bda0d14a8e4006b1dad6e", + "slug": "virtuos_spike", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/VoidToPunctureDamage", + "tags": [ + "common", + "arcane_enhancement", + "operator" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Spike", + "icon": "items/images/en/virtuos_spike.8e4996323b5d41abf0354b39741c0dad.png", + "thumb": "items/images/en/thumbs/virtuos_spike.8e4996323b5d41abf0354b39741c0dad.128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae059f", + "slug": "tipedo_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TipedoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Tipedo Prime Blueprint", + "icon": "items/images/en/tipedo_prime_blueprint.fd4fdcee6ab035eddce9a802ff091cfd.png", + "thumb": "items/images/en/thumbs/tipedo_prime_blueprint.fd4fdcee6ab035eddce9a802ff091cfd.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f1", + "slug": "serrated_edges", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/DamageBiasPunctureMeleeMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Serrated Edges", + "icon": "items/images/en/serrated_edges.7734d4b5eca3d49886694329157f1d74.png", + "thumb": "items/images/en/thumbs/serrated_edges.7734d4b5eca3d49886694329157f1d74.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515591", + "slug": "flame_repellent", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageResistanceFire", + "tags": [ + "mod", + "warframe", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Flame Repellent", + "icon": "items/images/en/flame_repellent.ea1ecc4cf2065e160fa39486a43e1d7e.png", + "thumb": "items/images/en/thumbs/flame_repellent.ea1ecc4cf2065e160fa39486a43e1d7e.128x128.png" + } + } + }, + { + "id": "570e384396c62ba9d1795d21", + "slug": "quanta_vandal", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpShockRifle/QuantaVandal", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Quanta Vandal", + "icon": "items/images/en/quanta_vandal.4cc8f8946b8f07fe991eb81c4c2efafc.png", + "thumb": "items/images/en/thumbs/quanta_vandal.4cc8f8946b8f07fe991eb81c4c2efafc.128x128.png" + } + } + }, + { + "id": "54c6860ce7798913933a7a43", + "slug": "mara_detron", + "gameRef": "/Lotus/Weapons/VoidTrader/VTDetron", + "tags": [ + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Mara Detron", + "icon": "items/images/en/mara_detron.40e0e10a54d94f3947e9a07d438e9509.png", + "thumb": "items/images/en/thumbs/mara_detron.40e0e10a54d94f3947e9a07d438e9509.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515597", + "slug": "shock_absorbers", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageResistanceKnockdown", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shock Absorbers", + "icon": "items/images/en/shock_absorbers.f8b689167fd8fe8c992773d65dcb95fe.png", + "thumb": "items/images/en/thumbs/shock_absorbers.f8b689167fd8fe8c992773d65dcb95fe.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff38", + "slug": "bronco_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BroncoPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Bronco Prime Receiver", + "icon": "items/images/en/bronco_prime_receiver.aa5499a3b26806f1f26a987be9dcf0ca.png", + "thumb": "items/images/en/thumbs/bronco_prime_receiver.aa5499a3b26806f1f26a987be9dcf0ca.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54d4c752e77989282cc8b0a0", + "slug": "mutalist_nav_coordinates", + "gameRef": "", + "tags": [ + "misc" + ], + "i18n": { + "en": { + "name": "Mutalist Alad V Nav Coordinate", + "icon": "items/images/en/mutalist_nav_coordinates.15993c196cd1145c0c7ab083ca73b00d.webp", + "thumb": "items/images/en/thumbs/mutalist_nav_coordinates.15993c196cd1145c0c7ab083ca73b00d.128x128.webp" + } + } + }, + { + "id": "54a73e65e779893a797fff3a", + "slug": "burston_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BurstonPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Burston Prime Blueprint", + "icon": "items/images/en/burston_prime_blueprint.9fc6c6a6dca24113027828df669cd89e.png", + "thumb": "items/images/en/thumbs/burston_prime_blueprint.9fc6c6a6dca24113027828df669cd89e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f6", + "slug": "soft_hands", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/HolsterSpeedBonusMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Soft Hands", + "icon": "items/images/en/soft_hands.c38e7bc163dea7c5c99a2213b1433ea9.png", + "thumb": "items/images/en/thumbs/soft_hands.c38e7bc163dea7c5c99a2213b1433ea9.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f7", + "slug": "spring_loaded_broadhead", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/DaikyuMoreDamageOverDistanceMod", + "tags": [ + "primary", + "pvp", + "rare", + "daikyu", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Spring-Loaded Broadhead", + "icon": "items/images/en/spring_loaded_broadhead.8457bdc8b1bcad57c7c22fb94bd5bebd.png", + "thumb": "items/images/en/thumbs/spring_loaded_broadhead.8457bdc8b1bcad57c7c22fb94bd5bebd.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178ab", + "slug": "rift_torrent", + "gameRef": "/Lotus/Powersuits/Magician/VolatileAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "limbo" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rift Torrent", + "icon": "items/images/en/rift_torrent.b72016d654f06dd8a0f9f21b86f38910.png", + "thumb": "items/images/en/thumbs/rift_torrent.b72016d654f06dd8a0f9f21b86f38910.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff3c", + "slug": "burston_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BurstonPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Burston Prime Stock", + "icon": "items/images/en/burston_prime_stock.9fc6c6a6dca24113027828df669cd89e.png", + "thumb": "items/images/en/thumbs/burston_prime_stock.9fc6c6a6dca24113027828df669cd89e.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4fc", + "slug": "sword_alone", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/IncreasedMobilityEquipped", + "tags": [ + "mod", + "rare", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sword Alone", + "icon": "items/images/en/sword_alone.1c6ec66a54c742480eb3bee11e56ea72.png", + "thumb": "items/images/en/thumbs/sword_alone.1c6ec66a54c742480eb3bee11e56ea72.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4fd", + "slug": "tactical_reload", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/PassiveReloadMod", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "assault_rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tactical Reload", + "icon": "items/images/en/tactical_reload.277ffd090355ce8536f1401ce5024f96.png", + "thumb": "items/images/en/thumbs/tactical_reload.277ffd090355ce8536f1401ce5024f96.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff46", + "slug": "hikou_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeHikouBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Hikou Prime Blueprint", + "icon": "items/images/en/hikou_prime_blueprint.cd5cefce60a4e85c15614139a8ee9400.png", + "thumb": "items/images/en/thumbs/hikou_prime_blueprint.cd5cefce60a4e85c15614139a8ee9400.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4fe", + "slug": "tear_gas", + "gameRef": "/Lotus/Powersuits/Ninja/SmokeScreenPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ash" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tear Gas", + "icon": "items/images/en/tear_gas.dabcc0fbb32e0b6fb9188fd034fd6807.png", + "thumb": "items/images/en/thumbs/tear_gas.dabcc0fbb32e0b6fb9188fd034fd6807.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848fc", + "slug": "primed_slip_magazine", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponClipMaxModExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Slip Magazine", + "icon": "items/images/en/primed_slip_magazine.0fa1381be2a512bad43b7cc263e52edf.png", + "thumb": "items/images/en/thumbs/primed_slip_magazine.0fa1381be2a512bad43b7cc263e52edf.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848fd", + "slug": "shelter", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowSanctuary", + "tags": [ + "mod", + "uncommon", + "sentinel", + "beast" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Shelter", + "icon": "items/images/en/shelter.d38b95bffc41ff5d6964c3433569ae00.png", + "thumb": "items/images/en/thumbs/shelter.d38b95bffc41ff5d6964c3433569ae00.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e1", + "slug": "gemini_cross", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/TonfaCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "tonfas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gemini Cross", + "icon": "items/images/en/gemini_cross.e2d704efafe48796ded6c796e11db6ed.png", + "thumb": "items/images/en/thumbs/gemini_cross.e2d704efafe48796ded6c796e11db6ed.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515671", + "slug": "rupture", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponImpactDamageMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rupture", + "icon": "items/images/en/rupture.630bd87001b46e7542217517d61eb74f.png", + "thumb": "items/images/en/thumbs/rupture.630bd87001b46e7542217517d61eb74f.128x128.png" + } + } + }, + { + "id": "54aaefabe779892ce54c8980", + "slug": "arcane_vanguard_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Rhino/RhinoHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Vanguard Helmet", + "icon": "items/images/en/arcane_vanguard_rhino_helmet.fca8955cebd179b29aa59a74400340b9.png", + "thumb": "items/images/en/thumbs/arcane_vanguard_rhino_helmet.fca8955cebd179b29aa59a74400340b9.128x128.png" + } + } + }, + { + "id": "5729bd18cb59ed5a9b484e92", + "slug": "fomorian_accelerant", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/ProjectNightwatch/DrakgoonNightwatchMod", + "tags": [ + "mod", + "uncommon", + "primary", + "drakgoon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fomorian Accelerant", + "icon": "items/images/en/fomorian_accelerant.703cc26fdc88d12f834c157eae51704e.png", + "thumb": "items/images/en/thumbs/fomorian_accelerant.703cc26fdc88d12f834c157eae51704e.128x128.png" + } + } + }, + { + "id": "54c68672e7798913ba044082", + "slug": "primed_flow", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Expert/AvatarPowerMaxModExpert", + "tags": [ + "mod", + "legendary", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Flow", + "icon": "items/images/en/primed_flow.f65c5889e6d464ceea67c6c0aae9faa0.png", + "thumb": "items/images/en/thumbs/primed_flow.f65c5889e6d464ceea67c6c0aae9faa0.128x128.png" + } + } + }, + { + "id": "5740c1679d238d4a03d28514", + "slug": "imperator_vandal_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/ImperatorVandalBlueprint", + "tags": [ + "weapon", + "primary", + "archwing", + "blueprint" + ], + "i18n": { + "en": { + "name": "Imperator Vandal Blueprint", + "icon": "items/images/en/imperator_vandal_blueprint.a7802d291f16f9dcd97afb2e69c879b6.png", + "thumb": "items/images/en/thumbs/imperator_vandal_blueprint.a7802d291f16f9dcd97afb2e69c879b6.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54dd276ee7798934e7afad13", + "slug": "primed_pistol_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponPistolConvertAmmoModExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Pistol Ammo Mutation", + "icon": "items/images/en/primed_pistol_ammo_mutation.3a6c03643ec114f30da4f486b9a30a59.png", + "thumb": "items/images/en/thumbs/primed_pistol_ammo_mutation.3a6c03643ec114f30da4f486b9a30a59.128x128.png" + } + } + }, + { + "id": "54aaefc3e779893b1ffe451d", + "slug": "arcane_pendragon_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Excalibur/ExcaliburHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Pendragon Helmet", + "icon": "items/images/en/arcane_pendragon_excalibur_helmet.3559c9930fe03efffda9f190abb33e61.png", + "thumb": "items/images/en/thumbs/arcane_pendragon_excalibur_helmet.3559c9930fe03efffda9f190abb33e61.128x128.png" + } + } + }, + { + "id": "54dd278ae7798934ecce4f0a", + "slug": "prisma_veritux", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/VoidTraderArchsword/VTArchSwordWeapon", + "tags": [ + "weapon", + "archwing", + "melee" + ], + "i18n": { + "en": { + "name": "Prisma Veritux", + "icon": "items/images/en/prisma_veritux.5130e65a3ebdac2da6ba0dccaef25861.png", + "thumb": "items/images/en/thumbs/prisma_veritux.5130e65a3ebdac2da6ba0dccaef25861.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178a9", + "slug": "resonance", + "gameRef": "/Lotus/Powersuits/Banshee/SonarAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "banshee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Resonance", + "icon": "items/images/en/resonance.75838284d4cc149b3c5b0746dabaf146.png", + "thumb": "items/images/en/thumbs/resonance.75838284d4cc149b3c5b0746dabaf146.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178af", + "slug": "ballistic_bullseye", + "gameRef": "/Lotus/Powersuits/Cowgirl/BallisticBatteryAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mesa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ballistic Bullseye", + "icon": "items/images/en/ballistic_bullseye.7c80b74fd8358f402b96f1502e0ae453.png", + "thumb": "items/images/en/thumbs/ballistic_bullseye.7c80b74fd8358f402b96f1502e0ae453.128x128.png" + } + } + }, + { + "id": "55244820e779890907ef6805", + "slug": "volt_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VoltPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Volt Prime Blueprint", + "icon": "items/images/en/volt_prime_blueprint.9481daa3eb02aaec1108cdbeeaeea159.png", + "thumb": "items/images/en/thumbs/volt_prime_blueprint.9481daa3eb02aaec1108cdbeeaeea159.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "58f0ee99aa4b70452a173073", + "slug": "piercing_navigator", + "gameRef": "/Lotus/Powersuits/Ranger/RangerControlAugmentCard", + "tags": [ + "mod", + "ivara", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Piercing Navigator", + "icon": "items/images/en/piercing_navigator.bb0a507032b17f728ed5b836a49707cb.png", + "thumb": "items/images/en/thumbs/piercing_navigator.bb0a507032b17f728ed5b836a49707cb.128x128.png" + } + } + }, + { + "id": "5d322d0f74bdad027da4d06e", + "slug": "gas_city_alads_laboratory_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityAssassinate", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Alad's Laboratory Scene", + "icon": "items/images/en/gas_city_alads_laboratory_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_alads_laboratory_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d3", + "slug": "magnum_force", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/CorruptedDamageRecoilPistol", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Magnum Force", + "icon": "items/images/en/magnum_force.4bcd9499631f6c61d99b930dd35493aa.png", + "thumb": "items/images/en/thumbs/magnum_force.4bcd9499631f6c61d99b930dd35493aa.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51569f", + "slug": "expel_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPistolFactionDamageCorpus", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Expel Corpus", + "icon": "items/images/en/expel_corpus.a5014be781ec3ac619fd3d7260e8fa36.png", + "thumb": "items/images/en/thumbs/expel_corpus.a5014be781ec3ac619fd3d7260e8fa36.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff7e", + "slug": "ember_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EmberPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ember Prime Chassis Blueprint", + "icon": "items/images/en/ember_prime_chassis.971255acc3f1ad8a374d236c6af1c816.png", + "thumb": "items/images/en/thumbs/ember_prime_chassis.971255acc3f1ad8a374d236c6af1c816.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5667519a5dcbc186f0536bd4", + "slug": "arcane_tempo", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/GolemArcaneShotgunSpeedOnCrit", + "tags": [ + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Tempo", + "icon": "items/images/en/arcane_tempo.8e5a0c4378df14ffdb5597ff8da8b828.png", + "thumb": "items/images/en/thumbs/arcane_tempo.8e5a0c4378df14ffdb5597ff8da8b828.128x128.png" + } + } + }, + { + "id": "5667576ddb7c7a568a8d45bf", + "slug": "madurai_lens", + "gameRef": "/Lotus/Upgrades/Focus/AttackLens", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Madurai Lens", + "icon": "items/images/en/madurai_lens.3a08aee24f8a10e3bf4a0d1e28c34528.png", + "thumb": "items/images/en/thumbs/madurai_lens.3a08aee24f8a10e3bf4a0d1e28c34528.128x128.png" + } + } + }, + { + "id": "5667576ddb7c7a568a8d45c3", + "slug": "unairu_lens", + "gameRef": "/Lotus/Upgrades/Focus/WardLens", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Unairu Lens", + "icon": "items/images/en/unairu_lens.3a08aee24f8a10e3bf4a0d1e28c34528.png", + "thumb": "items/images/en/thumbs/unairu_lens.3a08aee24f8a10e3bf4a0d1e28c34528.128x128.png" + } + } + }, + { + "id": "566759c8db7c7a568a8d45c6", + "slug": "cunning_drift", + "gameRef": "/Lotus/Upgrades/Mods/OrokinChallenge/OrokinChallengeModCunning", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cunning Drift", + "icon": "items/images/en/cunning_drift.a103fc3c7d90e1fddb3f8fa4d1de1ca8.png", + "thumb": "items/images/en/thumbs/cunning_drift.a103fc3c7d90e1fddb3f8fa4d1de1ca8.128x128.png" + } + } + }, + { + "id": "566759c8db7c7a568a8d45c7", + "slug": "endurance_drift", + "gameRef": "/Lotus/Upgrades/Mods/OrokinChallenge/OrokinChallengeModEndurance", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Endurance Drift", + "icon": "items/images/en/endurance_drift.4d8d90756f5068422df19dfda9b4b528.png", + "thumb": "items/images/en/thumbs/endurance_drift.4d8d90756f5068422df19dfda9b4b528.128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68d2", + "slug": "abating_link", + "gameRef": "/Lotus/Powersuits/Trinity/LinkAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "trinity" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Abating Link", + "icon": "items/images/en/abating_link.c547fa09315093a5ba6c609a9b195580.png", + "thumb": "items/images/en/thumbs/abating_link.c547fa09315093a5ba6c609a9b195580.128x128.png" + } + } + }, + { + "id": "566759c8db7c7a568a8d45c8", + "slug": "power_drift", + "gameRef": "/Lotus/Upgrades/Mods/OrokinChallenge/OrokinChallengeModPower", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Power Drift", + "icon": "items/images/en/power_drift.d9e8ed5d061459f61a6265d9bb87bede.png", + "thumb": "items/images/en/thumbs/power_drift.d9e8ed5d061459f61a6265d9bb87bede.128x128.png" + } + } + }, + { + "id": "566759c8db7c7a568a8d45c9", + "slug": "speed_drift", + "gameRef": "/Lotus/Upgrades/Mods/OrokinChallenge/OrokinChallengeModSpeed", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Speed Drift", + "icon": "items/images/en/speed_drift.53a547593da9f3d0310f6c9c0a1bb958.png", + "thumb": "items/images/en/thumbs/speed_drift.53a547593da9f3d0310f6c9c0a1bb958.128x128.png" + } + } + }, + { + "id": "54e64500e779897594fa68d4", + "slug": "hallowed_eruption", + "gameRef": "/Lotus/Powersuits/Paladin/StairwayToHeavenAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "oberon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hallowed Eruption", + "icon": "items/images/en/hallowed_eruption.76c36d2a76a53af8772a80501f9ca138.png", + "thumb": "items/images/en/thumbs/hallowed_eruption.76c36d2a76a53af8772a80501f9ca138.128x128.png" + } + } + }, + { + "id": "566759c8db7c7a568a8d45ca", + "slug": "stealth_drift", + "gameRef": "/Lotus/Upgrades/Mods/OrokinChallenge/OrokinChallengeModStealth", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Stealth Drift", + "icon": "items/images/en/stealth_drift.4d089bfcf74e7fe98c2feba81b552854.png", + "thumb": "items/images/en/thumbs/stealth_drift.4d089bfcf74e7fe98c2feba81b552854.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff78", + "slug": "rhino_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RhinoPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Rhino Prime Chassis Blueprint", + "icon": "items/images/en/rhino_prime_chassis.22301207f9463fe9ab215e40eb23a326.png", + "thumb": "items/images/en/thumbs/rhino_prime_chassis.22301207f9463fe9ab215e40eb23a326.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155d9", + "slug": "cutting_edge", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingMeleeDamageMod", + "tags": [ + "uncommon", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Cutting Edge", + "icon": "items/images/en/cutting_edge.757405ee47cf3e77d647d18202d1bc99.png", + "thumb": "items/images/en/thumbs/cutting_edge.757405ee47cf3e77d647d18202d1bc99.128x128.png" + } + } + }, + { + "id": "54e64500e779897594fa68d5", + "slug": "iron_shrapnel", + "gameRef": "/Lotus/Powersuits/Rhino/IronSkinAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "rhino" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Iron Shrapnel", + "icon": "items/images/en/iron_shrapnel.cf00aa7e7a9d4d58c550467c24b54a3a.png", + "thumb": "items/images/en/thumbs/iron_shrapnel.cf00aa7e7a9d4d58c550467c24b54a3a.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd898d", + "slug": "akbronco_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/PrimeAkimboShotGun", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Akbronco Prime Set", + "icon": "items/images/en/akbronco_prime_set.34b5a7f99e5f8c15cc2039a76c725069.png", + "thumb": "items/images/en/thumbs/akbronco_prime_set.34b5a7f99e5f8c15cc2039a76c725069.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155da", + "slug": "contagious_spread", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponToxinDamageMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Contagious Spread", + "icon": "items/images/en/contagious_spread.e2853d158134319b74677c8a17ffa80d.png", + "thumb": "items/images/en/thumbs/contagious_spread.e2853d158134319b74677c8a17ffa80d.128x128.png" + } + } + }, + { + "id": "55108594e77989728d5100c6", + "slug": "arcane_agility", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/SpeedOnDamage", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Agility", + "icon": "items/images/en/arcane_agility.2274fd115d389b990a55f5a4ff864773.png", + "thumb": "items/images/en/thumbs/arcane_agility.2274fd115d389b990a55f5a4ff864773.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af941825f", + "slug": "piercing_roar", + "gameRef": "/Lotus/Powersuits/Rhino/RadialBlastAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "rhino" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Piercing Roar", + "icon": "items/images/en/piercing_roar.cfc54fd9c8aa71b6e8ac95c057ae5c05.png", + "thumb": "items/images/en/thumbs/piercing_roar.cfc54fd9c8aa71b6e8ac95c057ae5c05.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8996", + "slug": "carrier_prime_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeCarrierPowerSuit", + "tags": [ + "sentinel", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Carrier Prime Set", + "icon": "items/images/en/carrier_prime_set.1f39e6e9ecef0225b0755dd5c89f3cc8.png", + "thumb": "items/images/en/thumbs/carrier_prime_set.1f39e6e9ecef0225b0755dd5c89f3cc8.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af9418260", + "slug": "hushed_invisibility", + "gameRef": "/Lotus/Powersuits/Loki/InvisibilityAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "loki" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hushed Invisibility", + "icon": "items/images/en/hushed_invisibility.d13d04f2ee52db1b892c0246cbbe8a80.png", + "thumb": "items/images/en/thumbs/hushed_invisibility.d13d04f2ee52db1b892c0246cbbe8a80.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8997", + "slug": "dakra_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/CronusSword/PrimeCronusLongSword", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Dakra Prime Set", + "icon": "items/images/en/dakra_prime_set.785a613039ec892abc579c176f0b33da.png", + "thumb": "items/images/en/thumbs/dakra_prime_set.785a613039ec892abc579c176f0b33da.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af9418261", + "slug": "pilfering_swarm", + "gameRef": "/Lotus/Powersuits/Pirate/KrakenAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "hydroid" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pilfering Swarm", + "icon": "items/images/en/pilfering_swarm.eddeebdc39966986118eac7ab1e0de81.png", + "thumb": "items/images/en/thumbs/pilfering_swarm.eddeebdc39966986118eac7ab1e0de81.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155dc", + "slug": "diamond_skin", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageResistanceLaser", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Diamond Skin", + "icon": "items/images/en/diamond_skin.fcbee4a2fb0610d7cffde32d25bcec51.png", + "thumb": "items/images/en/thumbs/diamond_skin.fcbee4a2fb0610d7cffde32d25bcec51.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8998", + "slug": "dera_vandal_set", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/DeraVandal", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Dera Vandal Set", + "icon": "items/images/en/dera_vandal_set.15c5a1f8b62ab0520cf7394563f73aea.png", + "thumb": "items/images/en/thumbs/dera_vandal_set.15c5a1f8b62ab0520cf7394563f73aea.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155e3", + "slug": "toxic_sequence", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/AcridMod", + "tags": [ + "syndicate", + "secondary", + "mod", + "rare", + "acrid" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Toxic Sequence", + "icon": "items/images/en/toxic_sequence.bab0370da343ca58b4b92fca65b1da6a.png", + "thumb": "items/images/en/thumbs/toxic_sequence.bab0370da343ca58b4b92fca65b1da6a.128x128.png" + } + } + }, + { + "id": "57962daf19aaba0b00a9b1b1", + "slug": "latron_wraith_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/LatronWraithBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Latron Wraith Blueprint", + "icon": "items/images/en/latron_wraith_blueprint.57295b3f36571ea8ea47471d7a70caea.png", + "thumb": "items/images/en/thumbs/latron_wraith_blueprint.57295b3f36571ea8ea47471d7a70caea.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "57962daf19aaba0b00a9b1b2", + "slug": "latron_wraith_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatronWraithReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Latron Wraith Receiver", + "icon": "items/images/en/latron_wraith_receiver.57295b3f36571ea8ea47471d7a70caea.png", + "thumb": "items/images/en/thumbs/latron_wraith_receiver.57295b3f36571ea8ea47471d7a70caea.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "57962daf19aaba0b00a9b1b3", + "slug": "latron_wraith_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatronWraithStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Latron Wraith Stock", + "icon": "items/images/en/latron_wraith_stock.57295b3f36571ea8ea47471d7a70caea.png", + "thumb": "items/images/en/thumbs/latron_wraith_stock.57295b3f36571ea8ea47471d7a70caea.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "57962daf19aaba0b00a9b1b4", + "slug": "latron_wraith_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/WraithLatron/WraithLatron", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Latron Wraith Set", + "icon": "items/images/en/latron_wraith_set.57295b3f36571ea8ea47471d7a70caea.png", + "thumb": "items/images/en/thumbs/latron_wraith_set.57295b3f36571ea8ea47471d7a70caea.128x128.png" + } + } + }, + { + "id": "57b4e5486f6b2fda8ea6caa0", + "slug": "territorial_aggression", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowMarkTerritoryPrecept", + "tags": [ + "mod", + "kavat", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Territorial Aggression", + "icon": "items/images/en/territorial_aggression.fe5b1085fb610c35d7318fb07524b81c.png", + "thumb": "items/images/en/thumbs/territorial_aggression.fe5b1085fb610c35d7318fb07524b81c.128x128.png" + } + } + }, + { + "id": "57b4e5486f6b2fda8ea6caa1", + "slug": "swipe", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowSwipePrecept", + "tags": [ + "mod", + "uncommon", + "melee", + "kavat_claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Swipe", + "icon": "items/images/en/swipe.9cd13bf445a46803ff0439d6333f49d9.png", + "thumb": "items/images/en/thumbs/swipe.9cd13bf445a46803ff0439d6333f49d9.128x128.png" + } + } + }, + { + "id": "57b4e5486f6b2fda8ea6caa2", + "slug": "pounce", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowPouncePrecept", + "tags": [ + "mod", + "kavat", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pounce", + "icon": "items/images/en/pounce.3ab83e349347ec39631b9f203e5ec42c.png", + "thumb": "items/images/en/thumbs/pounce.3ab83e349347ec39631b9f203e5ec42c.128x128.png" + } + } + }, + { + "id": "57b4e5486f6b2fda8ea6caa3", + "slug": "sharpened_claws", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowShredPrecept", + "tags": [ + "mod", + "kavat", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sharpened Claws", + "icon": "items/images/en/sharpened_claws.52d84f002b93e89569ee95d885e585c9.png", + "thumb": "items/images/en/thumbs/sharpened_claws.52d84f002b93e89569ee95d885e585c9.128x128.png" + } + } + }, + { + "id": "57bc948ae506eb45ea25144e", + "slug": "twin_vipers_wraith_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TwinVipersWraithLink", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Twin Vipers Wraith Link", + "icon": "items/images/en/twin_vipers_wraith_link.c80af69695edc4c30fb44018404ea432.png", + "thumb": "items/images/en/thumbs/twin_vipers_wraith_link.c80af69695edc4c30fb44018404ea432.128x128.png", + "subIcon": "sub_icons/weapon/generic_link_128x128.png" + } + } + }, + { + "id": "57bc948ae506eb45ea25144f", + "slug": "twin_vipers_wraith_receivers", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TwinVipersWraithReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Twin Vipers Wraith Receivers", + "icon": "items/images/en/twin_vipers_wraith_receivers.c80af69695edc4c30fb44018404ea432.png", + "thumb": "items/images/en/thumbs/twin_vipers_wraith_receivers.c80af69695edc4c30fb44018404ea432.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "57bc94bae506eb45ea251450", + "slug": "twin_vipers_wraith_set", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/WraithTwinVipers/WraithTwinVipers", + "tags": [ + "weapon", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Twin Vipers Wraith Set", + "icon": "items/images/en/twin_vipers_wraith_set.c80af69695edc4c30fb44018404ea432.png", + "thumb": "items/images/en/thumbs/twin_vipers_wraith_set.c80af69695edc4c30fb44018404ea432.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c6", + "slug": "enemy_radar", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerEnemyRadarAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Enemy Radar", + "icon": "items/images/en/enemy_radar.cee8b527e0265bb39d41e9aa541ac781.png", + "thumb": "items/images/en/thumbs/enemy_radar.cee8b527e0265bb39d41e9aa541ac781.128x128.png" + } + } + }, + { + "id": "57bc9a40e506eb45ea251452", + "slug": "nekros_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NekrosPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nekros Prime Chassis Blueprint", + "icon": "items/images/en/nekros_prime_chassis.523943a15c82985ebe7cf14eac98966d.png", + "thumb": "items/images/en/thumbs/nekros_prime_chassis.523943a15c82985ebe7cf14eac98966d.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5d8765de7ea27b08950c13b8", + "slug": "arcane_bodyguard", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/HealCompanionOnSixMeleeKills", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Bodyguard", + "icon": "items/images/en/arcane_bodyguard.bedeb0f2ceb9e91f99f682b990c09648.png", + "thumb": "items/images/en/thumbs/arcane_bodyguard.bedeb0f2ceb9e91f99f682b990c09648.128x128.png" + } + } + }, + { + "id": "5d8765de7ea27b08950c13bf", + "slug": "arcane_primary_charger", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryDmgOnMeleeKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Primary Charger", + "icon": "items/images/en/arcane_primary_charger.bedeb0f2ceb9e91f99f682b990c09648.png", + "thumb": "items/images/en/thumbs/arcane_primary_charger.bedeb0f2ceb9e91f99f682b990c09648.128x128.png" + } + } + }, + { + "id": "5d8765de7ea27b08950c13c0", + "slug": "swift_momentum", + "gameRef": "/Lotus/Upgrades/Mods/Aura/WarframeAuraWickedStrikesMod", + "tags": [ + "mod", + "rare", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Swift Momentum", + "icon": "items/images/en/swift_momentum.0c600be3efba5908fa35270560321ad8.png", + "thumb": "items/images/en/thumbs/swift_momentum.0c600be3efba5908fa35270560321ad8.128x128.png" + } + } + }, + { + "id": "5d8765de7ea27b08950c13c1", + "slug": "combat_discipline", + "gameRef": "/Lotus/Upgrades/Mods/Aura/WarframeAuraBloodLetterMod", + "tags": [ + "mod", + "rare", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Combat Discipline", + "icon": "items/images/en/combat_discipline.26bc357100917c1c0e274279e0acdcec.png", + "thumb": "items/images/en/thumbs/combat_discipline.26bc357100917c1c0e274279e0acdcec.128x128.png" + } + } + }, + { + "id": "5d8765de7ea27b08950c13c4", + "slug": "arcane_blade_charger", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/MeleeDmgOnRifleKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Blade Charger", + "icon": "items/images/en/arcane_blade_charger.bedeb0f2ceb9e91f99f682b990c09648.png", + "thumb": "items/images/en/thumbs/arcane_blade_charger.bedeb0f2ceb9e91f99f682b990c09648.128x128.png" + } + } + }, + { + "id": "5d8765df7ea27b08950c13c8", + "slug": "melee_guidance", + "gameRef": "/Lotus/Upgrades/Mods/Aura/WarframeAuraBladedRestraintMod", + "tags": [ + "mod", + "rare", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Guidance", + "icon": "items/images/en/melee_guidance.a3ea307cfba59d2d4ca9b5898d6b9b41.png", + "thumb": "items/images/en/thumbs/melee_guidance.a3ea307cfba59d2d4ca9b5898d6b9b41.128x128.png" + } + } + }, + { + "id": "5d9385b17ea27b0a28fd75b8", + "slug": "atlas_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AtlasPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Atlas Prime Chassis Blueprint", + "icon": "items/images/en/atlas_prime_chassis.91fb26397de19c27bfece550a8315a14.png", + "thumb": "items/images/en/thumbs/atlas_prime_chassis.91fb26397de19c27bfece550a8315a14.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5d93ca107ea27b0a87566f5f", + "slug": "dethcube_prime_carapace", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeDethcubeCarapace", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dethcube Prime Carapace", + "icon": "items/images/en/dethcube_prime_carapace.47a0e82681bf367a015928558a9f133b.png", + "thumb": "items/images/en/thumbs/dethcube_prime_carapace.47a0e82681bf367a015928558a9f133b.128x128.png", + "subIcon": "sub_icons/sentinel/prime_carapace_128x128.png" + } + } + }, + { + "id": "5d93ca107ea27b0a87566f62", + "slug": "dethcube_prime_cerebrum", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeDethcubeCerebrum", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dethcube Prime Cerebrum", + "icon": "items/images/en/dethcube_prime_cerebrum.47a0e82681bf367a015928558a9f133b.png", + "thumb": "items/images/en/thumbs/dethcube_prime_cerebrum.47a0e82681bf367a015928558a9f133b.128x128.png", + "subIcon": "sub_icons/sentinel/prime_cerebrum_128x128.png" + } + } + }, + { + "id": "5d93ca117ea27b0a87566f65", + "slug": "tekko_prime_gauntlet", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TekkoPrimeGauntlet", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tekko Prime Gauntlet", + "icon": "items/images/en/tekko_prime_gauntlet.ace5f3ef4976ceae04ed01d8fcc695c7.png", + "thumb": "items/images/en/thumbs/tekko_prime_gauntlet.ace5f3ef4976ceae04ed01d8fcc695c7.128x128.png", + "subIcon": "sub_icons/weapon/prime_gauntlet_128x128.png" + } + } + }, + { + "id": "5d93ca117ea27b0a87566f6a", + "slug": "dethcube_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/SentinelRecipes/PrimeDethcubeSentinelBlueprint", + "tags": [ + "blueprint", + "prime", + "sentinel" + ], + "i18n": { + "en": { + "name": "Dethcube Prime Blueprint", + "icon": "items/images/en/dethcube_prime_blueprint.47a0e82681bf367a015928558a9f133b.png", + "thumb": "items/images/en/thumbs/dethcube_prime_blueprint.47a0e82681bf367a015928558a9f133b.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5d93ca117ea27b0a87566f6b", + "slug": "dethcube_prime_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeDethCubePowerSuit", + "tags": [ + "set", + "prime", + "sentinel" + ], + "i18n": { + "en": { + "name": "Dethcube Prime Set", + "icon": "items/images/en/dethcube_prime_set.47a0e82681bf367a015928558a9f133b.png", + "thumb": "items/images/en/thumbs/dethcube_prime_set.47a0e82681bf367a015928558a9f133b.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515695", + "slug": "glacial_edge", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingWeaponFreezeDamageMod", + "tags": [ + "uncommon", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Glacial Edge", + "icon": "items/images/en/glacial_edge.34a006b5d2a18e9cc682b49562fe467d.png", + "thumb": "items/images/en/thumbs/glacial_edge.34a006b5d2a18e9cc682b49562fe467d.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ae", + "slug": "organ_shatter", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponCritDamageMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Organ Shatter", + "icon": "items/images/en/organ_shatter.d0948b147f608627817540ab9299dbcc.png", + "thumb": "items/images/en/thumbs/organ_shatter.d0948b147f608627817540ab9299dbcc.128x128.png" + } + } + }, + { + "id": "5b2987abeb069f0536234279", + "slug": "limbo_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LimboPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Limbo Prime Systems Blueprint", + "icon": "items/images/en/limbo_prime_systems.7bfbc70bd8438594d45a47fba260b174.png", + "thumb": "items/images/en/thumbs/limbo_prime_systems.7bfbc70bd8438594d45a47fba260b174.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5dbe9b077ea27b0ffe3ca268", + "slug": "runtime", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Cipher/OnHackSprintSpeedMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "i18n": { + "en": { + "name": "Runtime", + "icon": "items/images/en/runtime.01958fa28f5f3acc1b83faa2339a9b75.png", + "thumb": "items/images/en/thumbs/runtime.01958fa28f5f3acc1b83faa2339a9b75.128x128.png" + } + } + }, + { + "id": "5dbe9b137ea27b0ffe3ca286", + "slug": "hit_and_run", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionParkourSpeedMod", + "tags": [ + "mod", + "uncommon", + "parazon" + ], + "i18n": { + "en": { + "name": "Hit And Run", + "icon": "items/images/en/hit_and_run.e2be3690811e9176663c0bf99c875abd.png", + "thumb": "items/images/en/thumbs/hit_and_run.e2be3690811e9176663c0bf99c875abd.128x128.png" + } + } + }, + { + "id": "5df8b0ab1456970087cd9b01", + "slug": "ivara_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/IvaraPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ivara Prime Neuroptics Blueprint", + "icon": "items/images/en/ivara_prime_neuroptics.5c4fbd8ffa071c741cf93e260e43b6db.png", + "thumb": "items/images/en/thumbs/ivara_prime_neuroptics.5c4fbd8ffa071c741cf93e260e43b6db.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5df8b0ab1456970087cd9b02", + "slug": "ivara_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/IvaraPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ivara Prime Chassis Blueprint", + "icon": "items/images/en/ivara_prime_chassis.5c4fbd8ffa071c741cf93e260e43b6db.png", + "thumb": "items/images/en/thumbs/ivara_prime_chassis.5c4fbd8ffa071c741cf93e260e43b6db.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5df8b0ac1456970087cd9b03", + "slug": "ivara_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/IvaraPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ivara Prime Systems Blueprint", + "icon": "items/images/en/ivara_prime_systems.5c4fbd8ffa071c741cf93e260e43b6db.png", + "thumb": "items/images/en/thumbs/ivara_prime_systems.5c4fbd8ffa071c741cf93e260e43b6db.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5df955121456970150510f21", + "slug": "baza_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BazaPrimeBlueprint", + "tags": [ + "primary", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Baza Prime Blueprint", + "icon": "items/images/en/baza_prime_blueprint.a5f9c94cee410a5af7726ee6b2fca2b5.png", + "thumb": "items/images/en/thumbs/baza_prime_blueprint.a5f9c94cee410a5af7726ee6b2fca2b5.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5df955121456970150510f22", + "slug": "baza_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeBaza/PrimeBazaGun", + "tags": [ + "primary", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Baza Prime Set", + "icon": "items/images/en/baza_prime_set.a5f9c94cee410a5af7726ee6b2fca2b5.png", + "thumb": "items/images/en/thumbs/baza_prime_set.a5f9c94cee410a5af7726ee6b2fca2b5.128x128.png" + } + } + }, + { + "id": "5df955131456970150510f23", + "slug": "aksomati_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeAksomati/PrimeAksomati", + "tags": [ + "weapon", + "prime", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Aksomati Prime Set", + "icon": "items/images/en/aksomati_prime_set.617fca3e38e6696ec87a6c28bd6bbebf.png", + "thumb": "items/images/en/thumbs/aksomati_prime_set.617fca3e38e6696ec87a6c28bd6bbebf.128x128.png" + } + } + }, + { + "id": "5df955131456970150510f24", + "slug": "aksomati_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AksomatiPrimeLink", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Aksomati Prime Link", + "icon": "items/images/en/aksomati_prime_link.617fca3e38e6696ec87a6c28bd6bbebf.png", + "thumb": "items/images/en/thumbs/aksomati_prime_link.617fca3e38e6696ec87a6c28bd6bbebf.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "5df955131456970150510f25", + "slug": "baza_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BazaPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Baza Prime Stock", + "icon": "items/images/en/baza_prime_stock.a5f9c94cee410a5af7726ee6b2fca2b5.png", + "thumb": "items/images/en/thumbs/baza_prime_stock.a5f9c94cee410a5af7726ee6b2fca2b5.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "5df955131456970150510f26", + "slug": "aksomati_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AksomatiPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Aksomati Prime Receiver", + "icon": "items/images/en/aksomati_prime_receiver.617fca3e38e6696ec87a6c28bd6bbebf.png", + "thumb": "items/images/en/thumbs/aksomati_prime_receiver.617fca3e38e6696ec87a6c28bd6bbebf.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283492", + "slug": "gram_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GramPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Gram Prime Handle", + "icon": "items/images/en/gram_prime_handle.678c245a88b54368ae895b73b6987231.png", + "thumb": "items/images/en/thumbs/gram_prime_handle.678c245a88b54368ae895b73b6987231.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54dd265ce7798934d026f6fc", + "slug": "primed_reach", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponMeleeRangeIncModExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Reach", + "icon": "items/images/en/primed_reach.190fc0fb5b26e6b8a2f5be6927099fa0.png", + "thumb": "items/images/en/thumbs/primed_reach.190fc0fb5b26e6b8a2f5be6927099fa0.128x128.png" + } + } + }, + { + "id": "5b50a3ad3a84fd02a782324c", + "slug": "warding_thurible", + "gameRef": "/Lotus/Powersuits/Priest/PriestRavageAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "harrow" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Warding Thurible", + "icon": "items/images/en/warding_thurible.73ca05e0681f7517d599fbcd874f7124.png", + "thumb": "items/images/en/thumbs/warding_thurible.73ca05e0681f7517d599fbcd874f7124.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192118", + "slug": "helios_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/SentinelRecipes/PrimeHeliosSentinelBlueprint", + "tags": [ + "prime", + "sentinel", + "blueprint" + ], + "i18n": { + "en": { + "name": "Helios Prime Blueprint", + "icon": "items/images/en/helios_prime_blueprint.625b7c74ea5dd61b1840f8094df7648a.png", + "thumb": "items/images/en/thumbs/helios_prime_blueprint.625b7c74ea5dd61b1840f8094df7648a.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e6", + "slug": "terminal_velocity", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponProjectileSpeedMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Terminal Velocity", + "icon": "items/images/en/terminal_velocity.b4d2c26dca399873d04d5cda75ca674b.png", + "thumb": "items/images/en/thumbs/terminal_velocity.b4d2c26dca399873d04d5cda75ca674b.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e7", + "slug": "ice_storm", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/IceStormMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ice Storm", + "icon": "items/images/en/ice_storm.83c9d29c3e761c17f72130e383b4febc.png", + "thumb": "items/images/en/thumbs/ice_storm.83c9d29c3e761c17f72130e383b4febc.128x128.png" + } + } + }, + { + "id": "592c30c5011e88f094afec7c", + "slug": "cyclone_kraken", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/MacheteCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "machetes" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cyclone Kraken", + "icon": "items/images/en/cyclone_kraken.34333055b36eb2ac252e9df5ef76cdb7.png", + "thumb": "items/images/en/thumbs/cyclone_kraken.34333055b36eb2ac252e9df5ef76cdb7.128x128.png" + } + } + }, + { + "id": "5667568bf9001cd2824a682a", + "slug": "karak_wraith_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KarakWraithReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Karak Wraith Receiver", + "icon": "items/images/en/karak_wraith_receiver.b26c71305a536b33e469bc4a8866adea.png", + "thumb": "items/images/en/thumbs/karak_wraith_receiver.b26c71305a536b33e469bc4a8866adea.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "58f0efdfaa4b70452a173076", + "slug": "orvius_disc", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TeshinGlaiveDisc", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Orvius Disc", + "icon": "items/images/en/orvius_disc.65c03b5b689ec5f70399b9a02f539994.png", + "thumb": "items/images/en/thumbs/orvius_disc.65c03b5b689ec5f70399b9a02f539994.128x128.png", + "subIcon": "sub_icons/weapon/generic_disc_128x128.png" + } + } + }, + { + "id": "5667576ddb7c7a568a8d45c0", + "slug": "vazarin_lens", + "gameRef": "/Lotus/Upgrades/Focus/DefenseLens", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Vazarin Lens", + "icon": "items/images/en/vazarin_lens.3a08aee24f8a10e3bf4a0d1e28c34528.png", + "thumb": "items/images/en/thumbs/vazarin_lens.3a08aee24f8a10e3bf4a0d1e28c34528.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ed", + "slug": "sinking_talon", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DualDaggerCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "dual_daggers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sinking Talon", + "icon": "items/images/en/sinking_talon.825973df87633e7b3f5cfbc94fbfeb5e.png", + "thumb": "items/images/en/thumbs/sinking_talon.825973df87633e7b3f5cfbc94fbfeb5e.128x128.png" + } + } + }, + { + "id": "56dac8d25cc639de0a45c52d", + "slug": "health_conversion", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/HealthPickupGivesArmourMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Health Conversion", + "icon": "items/images/en/health_conversion.9d00e60accdfe2bf5185ed7669a92a88.png", + "thumb": "items/images/en/thumbs/health_conversion.9d00e60accdfe2bf5185ed7669a92a88.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156f4", + "slug": "reflex_coil", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeChargeRateMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Reflex Coil", + "icon": "items/images/en/reflex_coil.356d58290db32e6a5baaad6982212120.png", + "thumb": "items/images/en/thumbs/reflex_coil.356d58290db32e6a5baaad6982212120.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff67", + "slug": "vasto_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VastoPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Vasto Prime Receiver", + "icon": "items/images/en/vasto_prime_receiver.213e4b3b9b3be0f4facb77fd5242b6a4.png", + "thumb": "items/images/en/thumbs/vasto_prime_receiver.213e4b3b9b3be0f4facb77fd5242b6a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f0", + "slug": "searing_leap", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/FireParkourPvPMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "i18n": { + "en": { + "name": "Searing Leap", + "icon": "items/images/en/searing_leap.7841e8bfddec3339f4fa9c10319683aa.png", + "thumb": "items/images/en/thumbs/searing_leap.7841e8bfddec3339f4fa9c10319683aa.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f7", + "slug": "loot_detector", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerLootRadarAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Loot Detector", + "icon": "items/images/en/loot_detector.6aa5548d69fc0e07a731d65c9845c6f9.png", + "thumb": "items/images/en/thumbs/loot_detector.6aa5548d69fc0e07a731d65c9845c6f9.128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68cc", + "slug": "repelling_bastille", + "gameRef": "/Lotus/Powersuits/Trapper/LevTrapAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "vauban" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Repelling Bastille", + "icon": "items/images/en/repelling_bastille.342178f3f8cdb716c8545e5d4fa03227.png", + "thumb": "items/images/en/thumbs/repelling_bastille.342178f3f8cdb716c8545e5d4fa03227.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515590", + "slug": "hollowed_bullets", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleCritDamageMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hollowed Bullets", + "icon": "items/images/en/hollowed_bullets.7071893ea940820a1513221c9daf6c41.png", + "thumb": "items/images/en/thumbs/hollowed_bullets.7071893ea940820a1513221c9daf6c41.128x128.png" + } + } + }, + { + "id": "571955b94445c3e28b80fc80", + "slug": "scimitar_engines_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/BlueSky/BlueSkyEnginesBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Scimitar Engines Blueprint", + "icon": "items/images/en/scimitar_engines.c8644ada3c4381efbe9a11b55c58b0a7.png", + "thumb": "items/images/en/thumbs/scimitar_engines.c8644ada3c4381efbe9a11b55c58b0a7.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_engines_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515615", + "slug": "ironclad_charge", + "gameRef": "/Lotus/Powersuits/Rhino/RhinoChargeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "rhino" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ironclad Charge", + "icon": "items/images/en/ironclad_charge.599316c6fd9b0e8e5aeae0cfea29710b.png", + "thumb": "items/images/en/thumbs/ironclad_charge.599316c6fd9b0e8e5aeae0cfea29710b.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf071", + "slug": "veils_binding_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateRedVeil", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Veil's Binding Scene", + "icon": "items/images/en/veils_binding_scene.76bd980d04e518c1a85f536fa71378c1.png", + "thumb": "items/images/en/thumbs/veils_binding_scene.76bd980d04e518c1a85f536fa71378c1.128x128.png" + } + } + }, + { + "id": "5c1bda2014a8e4006b1dad98", + "slug": "magus_drive", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HoverboardSpeedOnTransferenceIn", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Drive", + "icon": "items/images/en/magus_drive.618edddcaa1b6d427526a4fe89063deb.png", + "thumb": "items/images/en/thumbs/magus_drive.618edddcaa1b6d427526a4fe89063deb.128x128.png" + } + } + }, + { + "id": "5c1bd9fd14a8e4006b1dad50", + "slug": "quick_reload", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleReloadSpeedMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Quick Reload", + "icon": "items/images/en/quick_reload.fa52a871aab9230ddcd58a85f37ad0a3.png", + "thumb": "items/images/en/thumbs/quick_reload.fa52a871aab9230ddcd58a85f37ad0a3.128x128.png" + } + } + }, + { + "id": "5c1bda0714a8e4006b1dad61", + "slug": "strain_fever", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Strain/HelminthStrainFeverMod", + "tags": [ + "mod", + "rare", + "melee", + "helminth_claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Strain Fever", + "icon": "items/images/en/strain_fever.61ccbf01a8906c7747cf0d3269c94e2d.png", + "thumb": "items/images/en/thumbs/strain_fever.61ccbf01a8906c7747cf0d3269c94e2d.128x128.png" + } + } + }, + { + "id": "5c1bda0a14a8e4006b1dad67", + "slug": "archgun_ace", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingHeadshotKillAmmoEfficiencyMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Archgun Ace", + "icon": "items/images/en/archgun_ace.b18c4e461e441c105586d717be639ec8.png", + "thumb": "items/images/en/thumbs/archgun_ace.b18c4e461e441c105586d717be639ec8.128x128.png" + } + } + }, + { + "id": "5c1bda0c14a8e4006b1dad6a", + "slug": "mad_stack", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBFallVelocityMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Mad Stack", + "icon": "items/images/en/mad_stack.b5f5eda7bc2ea84c6ac061e8e75a9d33.png", + "thumb": "items/images/en/thumbs/mad_stack.b5f5eda7bc2ea84c6ac061e8e75a9d33.128x128.png" + } + } + }, + { + "id": "5cb04869fc2db2068006980f", + "slug": "teeming_virulence", + "gameRef": "/Lotus/Powersuits/Infestation/InfestRuptureAugmentCard", + "tags": [ + "mod", + "nidus", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Teeming Virulence", + "icon": "items/images/en/teeming_virulence.fa710f9e32c92ec59ee9bd77215811d0.png", + "thumb": "items/images/en/thumbs/teeming_virulence.fa710f9e32c92ec59ee9bd77215811d0.128x128.png" + } + } + }, + { + "id": "5c1e62d3817a0d0092fb160a", + "slug": "fortuna_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileFortunaTown", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Fortuna Scene", + "icon": "items/images/en/fortuna_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/fortuna_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae059d", + "slug": "tipedo_prime_ornament", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TipedoPrimeOrnament", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tipedo Prime Ornament", + "icon": "items/images/en/tipedo_prime_ornament.fd4fdcee6ab035eddce9a802ff091cfd.png", + "thumb": "items/images/en/thumbs/tipedo_prime_ornament.fd4fdcee6ab035eddce9a802ff091cfd.128x128.png", + "subIcon": "sub_icons/weapon/prime_ornament_128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a3", + "slug": "stradavar_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StradavarPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Stradavar Prime Receiver", + "icon": "items/images/en/stradavar_prime_receiver.57c042a30996514288dfd70f2ce267ca.png", + "thumb": "items/images/en/thumbs/stradavar_prime_receiver.57c042a30996514288dfd70f2ce267ca.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5703ed10a064f4ab755dc139", + "slug": "snipetron_vandal_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SnipetronVandalBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Snipetron Vandal Barrel", + "icon": "items/images/en/snipetron_vandal_barrel.d820059db951ba5a4ac7c1d7ec8515f1.png", + "thumb": "items/images/en/thumbs/snipetron_vandal_barrel.d820059db951ba5a4ac7c1d7ec8515f1.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "54aaf259e7798948f1b718c7", + "slug": "arcane_scorpion_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Ninja/NinjaHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Scorpion Helmet", + "icon": "items/images/en/arcane_scorpion_ash_helmet.0a0e5b3e904af873aaefa4b876a343b9.png", + "thumb": "items/images/en/thumbs/arcane_scorpion_ash_helmet.0a0e5b3e904af873aaefa4b876a343b9.128x128.png" + } + } + }, + { + "id": "54ca4329e779891a21d036bd", + "slug": "wyrm_prime_cerebrum", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeWyrmCerebrum", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Wyrm Prime Cerebrum", + "icon": "items/images/en/wyrm_prime_cerebrum.4da3da5cc8eeef554dc3208bbb5a8f26.png", + "thumb": "items/images/en/thumbs/wyrm_prime_cerebrum.4da3da5cc8eeef554dc3208bbb5a8f26.128x128.png", + "subIcon": "sub_icons/sentinel/prime_cerebrum_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f8", + "slug": "spry_sights", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/FasterMovementWhileAimingPistolMod", + "tags": [ + "secondary", + "pvp", + "uncommon", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Spry Sights", + "icon": "items/images/en/spry_sights.df4f0a716978ef9f0d8d28c7b2022b72.png", + "thumb": "items/images/en/thumbs/spry_sights.df4f0a716978ef9f0d8d28c7b2022b72.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515619", + "slug": "targeting_receptor", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/ThrowGlaivePrecept", + "tags": [ + "mod", + "common", + "sentinel", + "helios" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Targeting Receptor", + "icon": "items/images/en/targeting_receptor.f209646217461cfdbe9d698b1667efbf.png", + "thumb": "items/images/en/thumbs/targeting_receptor.f209646217461cfdbe9d698b1667efbf.128x128.png" + } + } + }, + { + "id": "58d8f22a11efe42a5e5231fe", + "slug": "ayatan_valana_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexG", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 2, + "baseEndo": 325, + "endoMultiplier": 2, + "i18n": { + "en": { + "name": "Ayatan Valana Sculpture", + "icon": "items/images/en/ayatan_valana_sculpture.331f1ba4280627977651aa7209361033.png", + "thumb": "items/images/en/thumbs/ayatan_valana_sculpture.331f1ba4280627977651aa7209361033.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c2", + "slug": "bane_of_infested", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFactionDamageInfested", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bane Of Infested", + "icon": "items/images/en/bane_of_infested.9e952c43d499b268f9e6b3136e470ad4.png", + "thumb": "items/images/en/thumbs/bane_of_infested.9e952c43d499b268f9e6b3136e470ad4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c3", + "slug": "shocking_touch", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponElectricityDamageMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shocking Touch", + "icon": "items/images/en/shocking_touch.a28e38f9a3c81c7b6521ac0cb9cc2ed8.png", + "thumb": "items/images/en/thumbs/shocking_touch.a28e38f9a3c81c7b6521ac0cb9cc2ed8.128x128.png" + } + } + }, + { + "id": "5783bf69d9b6753790c89e9b", + "slug": "cyngas_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchBurstGunBarrel", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Cyngas Barrel", + "icon": "items/images/en/cyngas_barrel.5b9891a467264b6048cd58b409911767.png", + "thumb": "items/images/en/thumbs/cyngas_barrel.5b9891a467264b6048cd58b409911767.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c8", + "slug": "sprint_boost", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerSprintAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sprint Boost", + "icon": "items/images/en/sprint_boost.8474e070e14952636fcf1a5f8f084bd0.png", + "thumb": "items/images/en/thumbs/sprint_boost.8474e070e14952636fcf1a5f8f084bd0.128x128.png" + } + } + }, + { + "id": "5783bf71d9b6753790c89e9d", + "slug": "cyngas_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchBurstGunStock", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Cyngas Stock", + "icon": "items/images/en/cyngas_stock.5b9891a467264b6048cd58b409911767.png", + "thumb": "items/images/en/thumbs/cyngas_stock.5b9891a467264b6048cd58b409911767.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156cb", + "slug": "furious_javelin", + "gameRef": "/Lotus/Powersuits/Excalibur/RadialJavelinAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "excalibur" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Furious Javelin", + "icon": "items/images/en/furious_javelin.d997a3c776d0dae4197f7d45128f07b3.png", + "thumb": "items/images/en/thumbs/furious_javelin.d997a3c776d0dae4197f7d45128f07b3.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff4e", + "slug": "lex_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/LexPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Lex Prime Blueprint", + "icon": "items/images/en/lex_prime_blueprint.13776cf63dfd68968067b517184a6ac0.png", + "thumb": "items/images/en/thumbs/lex_prime_blueprint.13776cf63dfd68968067b517184a6ac0.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "585a925a2c2ada004285df01", + "slug": "draining_gloom", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/DespairEnergyDrainAoE", + "tags": [ + "secondary", + "pvp", + "rare", + "despair", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Draining Gloom", + "icon": "items/images/en/draining_gloom.4d6890c07e01806ae034fd391d0a721c.png", + "thumb": "items/images/en/thumbs/draining_gloom.4d6890c07e01806ae034fd391d0a721c.128x128.png" + } + } + }, + { + "id": "5d322d0f74bdad027da4d07a", + "slug": "gas_city_elemental_refinement_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityIntermediateSix", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Elemental Refinement Scene", + "icon": "items/images/en/gas_city_elemental_refinement_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_elemental_refinement_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c9", + "slug": "hellfire", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFireDamageMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hellfire", + "icon": "items/images/en/hellfire.6b16f100ae3536c790154ad38b575e6d.png", + "thumb": "items/images/en/thumbs/hellfire.6b16f100ae3536c790154ad38b575e6d.128x128.png" + } + } + }, + { + "id": "585a93312c2ada00552edf0f", + "slug": "precision_munition", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/TonkorAccuracySmallerMag", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "tonkor" + ], + "i18n": { + "en": { + "name": "Precision Munition", + "icon": "items/images/en/precision_munition.5b990064481b381619c8aba968f7c176.png", + "thumb": "items/images/en/thumbs/precision_munition.5b990064481b381619c8aba968f7c176.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156cd", + "slug": "argon_plating", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitArmourMod", + "tags": [ + "mod", + "archwing", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Argon Plating", + "icon": "items/images/en/argon_plating.fa183b27e0d58aba993369ad910ab455.png", + "thumb": "items/images/en/thumbs/argon_plating.fa183b27e0d58aba993369ad910ab455.128x128.png" + } + } + }, + { + "id": "56463b04b66f83585da94c6a", + "slug": "corpus_void_key", + "gameRef": "", + "tags": [ + "void key", + "key" + ], + "i18n": { + "en": { + "name": "Corpus Void Key", + "icon": "items/images/en/corpus_void_key.ab1bad7c5670206fa7e612257aef57c6.webp", + "thumb": "items/images/en/thumbs/corpus_void_key.ab1bad7c5670206fa7e612257aef57c6.128x128.webp" + } + } + }, + { + "id": "56783f24cbfa8f0432dd899e", + "slug": "hikou_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/PrimeThrowingStar/PrimeHikou", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Hikou Prime Set", + "icon": "items/images/en/hikou_prime_set.cd5cefce60a4e85c15614139a8ee9400.png", + "thumb": "items/images/en/thumbs/hikou_prime_set.cd5cefce60a4e85c15614139a8ee9400.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155fc", + "slug": "seeker", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPunctureDepthMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Seeker", + "icon": "items/images/en/seeker.d3e5940d2490132e50b48788e1c9d204.png", + "thumb": "items/images/en/thumbs/seeker.d3e5940d2490132e50b48788e1c9d204.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515694", + "slug": "molten_impact", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponFireDamageMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Molten Impact", + "icon": "items/images/en/molten_impact.6c72ca5cdcbdba37648b476d1d1d74c0.png", + "thumb": "items/images/en/thumbs/molten_impact.6c72ca5cdcbdba37648b476d1d1d74c0.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff52", + "slug": "orthos_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimePolearmHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Orthos Prime Handle", + "icon": "items/images/en/orthos_prime_handle.049c8584708b849d1eff500b182825f2.png", + "thumb": "items/images/en/thumbs/orthos_prime_handle.049c8584708b849d1eff500b182825f2.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff58", + "slug": "reaper_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeScytheBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Reaper Prime Blade", + "icon": "items/images/en/reaper_prime_blade.4e1d36812203a97fd0191930485b1095.png", + "thumb": "items/images/en/thumbs/reaper_prime_blade.4e1d36812203a97fd0191930485b1095.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a0", + "slug": "rending_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/RendingStrikeMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rending Strike", + "icon": "items/images/en/rending_strike.07440fd328749d627d981654c4dd4a84.png", + "thumb": "items/images/en/thumbs/rending_strike.07440fd328749d627d981654c4dd4a84.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ba", + "slug": "ammo_stock", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponClipMaxMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ammo Stock", + "icon": "items/images/en/ammo_stock.f8a0f59f9f16bf21f5e70c45a03d62a9.png", + "thumb": "items/images/en/thumbs/ammo_stock.f8a0f59f9f16bf21f5e70c45a03d62a9.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156bb", + "slug": "self_destruct", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelExplosionMod", + "tags": [ + "mod", + "sentinel", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Self Destruct", + "icon": "items/images/en/self_destruct.bf15bae15156d3194870d9d09d6d211d.png", + "thumb": "items/images/en/thumbs/self_destruct.bf15bae15156d3194870d9d09d6d211d.128x128.png" + } + } + }, + { + "id": "56a7b2941133f656cb085d90", + "slug": "spring_loaded_chamber", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/FireRateWhileAimingRifleMod", + "tags": [ + "mod", + "uncommon", + "primary", + "assault_rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Spring-Loaded Chamber", + "icon": "items/images/en/spring_loaded_chamber.74d90753e47acd3407facd4b708849d4.png", + "thumb": "items/images/en/thumbs/spring_loaded_chamber.74d90753e47acd3407facd4b708849d4.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156bd", + "slug": "accelerated_blast", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/AcceleratedBlastMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Accelerated Blast", + "icon": "items/images/en/accelerated_blast.11868e0d3de7aa13ec22647b3d0d3230.png", + "thumb": "items/images/en/thumbs/accelerated_blast.11868e0d3de7aa13ec22647b3d0d3230.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff5c", + "slug": "scindo_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeScindoBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Scindo Prime Blueprint", + "icon": "items/images/en/scindo_prime_blueprint.ae70ac90b811a44f64263394b6410c28.png", + "thumb": "items/images/en/thumbs/scindo_prime_blueprint.ae70ac90b811a44f64263394b6410c28.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d0", + "slug": "tainted_shell", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/CorruptedAccuracyFireRateShotgun", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Tainted Shell", + "icon": "items/images/en/tainted_shell.ead13d95b9f2da054c3bf69f799d4028.png", + "thumb": "items/images/en/thumbs/tainted_shell.ead13d95b9f2da054c3bf69f799d4028.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d2", + "slug": "stinging_truth", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/ViperMod", + "tags": [ + "syndicate", + "secondary", + "mod", + "rare", + "viper" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Stinging Truth", + "icon": "items/images/en/stinging_truth.90e5015f6f6f08638553b8f73b857b49.png", + "thumb": "items/images/en/thumbs/stinging_truth.90e5015f6f6f08638553b8f73b857b49.128x128.png" + } + } + }, + { + "id": "56a7b2991133f656cb085d91", + "slug": "repeater_clip", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/FireRateWhileAimingShotgunMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Repeater Clip", + "icon": "items/images/en/repeater_clip.83e327e168e4c91bc7d9c5ed0fbe1604.png", + "thumb": "items/images/en/thumbs/repeater_clip.83e327e168e4c91bc7d9c5ed0fbe1604.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d5", + "slug": "killing_blow", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeHeavyDamageMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Killing Blow", + "icon": "items/images/en/killing_blow.f56991c9544b1e1519cc896b549c736b.png", + "thumb": "items/images/en/thumbs/killing_blow.f56991c9544b1e1519cc896b549c736b.128x128.png" + } + } + }, + { + "id": "56a7b29e1133f656cb085d92", + "slug": "embedded_catalyzer", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/StatusProcWhileAimingPistolMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Embedded Catalyzer", + "icon": "items/images/en/embedded_catalyzer.b6ea1f474cd68fcb3ffe93bc0cc24300.png", + "thumb": "items/images/en/thumbs/embedded_catalyzer.b6ea1f474cd68fcb3ffe93bc0cc24300.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ec", + "slug": "magma_chamber", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingEventFireStatusRifleMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magma Chamber", + "icon": "items/images/en/magma_chamber.02ceda8031a23aa4a8ef0e1d24bc87db.png", + "thumb": "items/images/en/thumbs/magma_chamber.02ceda8031a23aa4a8ef0e1d24bc87db.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f1", + "slug": "rebound", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveReflectionIncreaseMod", + "tags": [ + "mod", + "common", + "melee", + "thrown_melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rebound", + "icon": "items/images/en/rebound.81cc7cf721d2395f2669fafac3eed574.png", + "thumb": "items/images/en/thumbs/rebound.81cc7cf721d2395f2669fafac3eed574.128x128.png" + } + } + }, + { + "id": "56dac58b5cc639de0a45c521", + "slug": "discharge_strike", + "gameRef": "/Lotus/Powersuits/Necro/SoulPunchPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nekros" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Discharge Strike", + "icon": "items/images/en/discharge_strike.11efeba0f37f6436bad4160e0d60ec15.png", + "thumb": "items/images/en/thumbs/discharge_strike.11efeba0f37f6436bad4160e0d60ec15.128x128.png" + } + } + }, + { + "id": "54aaf21ee7798925c9182cee", + "slug": "arcane_storm_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Volt/VoltHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Storm Helmet", + "icon": "items/images/en/arcane_storm_volt_helmet.08c146490c95048b62f0f9575b1b2d19.png", + "thumb": "items/images/en/thumbs/arcane_storm_volt_helmet.08c146490c95048b62f0f9575b1b2d19.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f2", + "slug": "reach", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeRangeIncMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Reach", + "icon": "items/images/en/reach.bd9e1be51f4d18870dc8fa79d0b1b7e9.png", + "thumb": "items/images/en/thumbs/reach.bd9e1be51f4d18870dc8fa79d0b1b7e9.128x128.png" + } + } + }, + { + "id": "56dac5985cc639de0a45c524", + "slug": "anti_flak_plating", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/BlastResist", + "tags": [ + "uncommon", + "pvp", + "mod", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Anti-Flak Plating", + "icon": "items/images/en/anti_flak_plating.cf4a771790c289975365c7dd23e51cde.png", + "thumb": "items/images/en/thumbs/anti_flak_plating.cf4a771790c289975365c7dd23e51cde.128x128.png" + } + } + }, + { + "id": "59eba86952f90ed715e14155", + "slug": "tear_azurite", + "gameRef": "/Lotus/Types/Items/Gems/Eidolon/CommonGemACutAItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Tear Azurite", + "icon": "items/images/en/tear_azurite.e2f857f217db500bb173a7a4e518958e.png", + "thumb": "items/images/en/thumbs/tear_azurite.e2f857f217db500bb173a7a4e518958e.128x128.png" + } + } + }, + { + "id": "58701655937cde2c9d378ac2", + "slug": "shotgun_riven_mod_(veiled)", + "gameRef": "/Lotus/Upgrades/Mods/Randomized/LotusShotgunRandomModRare", + "tags": [ + "mod", + "riven_mod", + "common", + "veiled_riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Shotgun Riven Mod (Veiled)", + "icon": "items/images/en/shotgun_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.png", + "thumb": "items/images/en/thumbs/shotgun_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.128x128.png" + } + } + }, + { + "id": "5a0475076c4655012038ddbe", + "slug": "magus_cadence", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/SpeedOnVoidDash", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Cadence", + "icon": "items/images/en/magus_cadence.c86f261fe3644b1eb27e22d4a53fa318.png", + "thumb": "items/images/en/thumbs/magus_cadence.c86f261fe3644b1eb27e22d4a53fa318.128x128.png" + } + } + }, + { + "id": "5a0475086c4655012038ddc1", + "slug": "exodia_brave", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/ChannelKillEnergyRate", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Brave", + "icon": "items/images/en/exodia_brave.46667ed53d81bf2cc9aacde46019c7e9.png", + "thumb": "items/images/en/thumbs/exodia_brave.46667ed53d81bf2cc9aacde46019c7e9.128x128.png" + } + } + }, + { + "id": "5a0475096c4655012038ddc2", + "slug": "exodia_hunt", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/GroundSlamPull", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Hunt", + "icon": "items/images/en/exodia_hunt.991da5e49a00e69755b5c7948f5448f6.png", + "thumb": "items/images/en/thumbs/exodia_hunt.991da5e49a00e69755b5c7948f5448f6.128x128.png" + } + } + }, + { + "id": "5a0475096c4655012038ddc3", + "slug": "exodia_triumph", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/StatusChannelingDamage", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Triumph", + "icon": "items/images/en/exodia_triumph.fe6f1256127be984a80deb48afd26faa.png", + "thumb": "items/images/en/thumbs/exodia_triumph.fe6f1256127be984a80deb48afd26faa.128x128.png" + } + } + }, + { + "id": "5a0475096c4655012038ddc4", + "slug": "magus_nourish", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HealOnTransferenceOut", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Nourish", + "icon": "items/images/en/magus_nourish.a33f07304a72500072d20d13258e119b.png", + "thumb": "items/images/en/thumbs/magus_nourish.a33f07304a72500072d20d13258e119b.128x128.png" + } + } + }, + { + "id": "5a04750a6c4655012038ddc5", + "slug": "virtuos_shadow", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/CriticalChanceOnHeadshot", + "tags": [ + "operator", + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Shadow", + "icon": "items/images/en/virtuos_shadow.b6be77f2f40f28d66c86674233faea4d.png", + "thumb": "items/images/en/thumbs/virtuos_shadow.b6be77f2f40f28d66c86674233faea4d.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff7a", + "slug": "ember_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EmberPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ember Prime Systems Blueprint", + "icon": "items/images/en/ember_prime_systems.971255acc3f1ad8a374d236c6af1c816.png", + "thumb": "items/images/en/thumbs/ember_prime_systems.971255acc3f1ad8a374d236c6af1c816.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff7d", + "slug": "frost_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/FrostPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Frost Prime Chassis Blueprint", + "icon": "items/images/en/frost_prime_chassis.4f8ff8605be1afaab9a0e5cc3c67cb21.png", + "thumb": "items/images/en/thumbs/frost_prime_chassis.4f8ff8605be1afaab9a0e5cc3c67cb21.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff7f", + "slug": "rhino_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RhinoPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Rhino Prime Systems Blueprint", + "icon": "items/images/en/rhino_prime_systems.22301207f9463fe9ab215e40eb23a326.png", + "thumb": "items/images/en/thumbs/rhino_prime_systems.22301207f9463fe9ab215e40eb23a326.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff81", + "slug": "ember_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EmberPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Ember Prime Blueprint", + "icon": "items/images/en/ember_prime_blueprint.971255acc3f1ad8a374d236c6af1c816.png", + "thumb": "items/images/en/thumbs/ember_prime_blueprint.971255acc3f1ad8a374d236c6af1c816.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a0", + "slug": "eroding_blight", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/EmbolistMod", + "tags": [ + "embolist", + "syndicate", + "secondary", + "mod", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Eroding Blight", + "icon": "items/images/en/eroding_blight.8c40cf12f0b4d2b85870306b2ba2e5cd.png", + "thumb": "items/images/en/thumbs/eroding_blight.8c40cf12f0b4d2b85870306b2ba2e5cd.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515666", + "slug": "deadly_sequence", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/GrinlokMod", + "tags": [ + "syndicate", + "mod", + "grinlok", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Deadly Sequence", + "icon": "items/images/en/deadly_sequence.da21893bc4cd1e2eea7a73044479c148.png", + "thumb": "items/images/en/thumbs/deadly_sequence.da21893bc4cd1e2eea7a73044479c148.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515669", + "slug": "fever_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponToxinDamageMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fever Strike", + "icon": "items/images/en/fever_strike.bf321f3944fc5640a739184a2a2fdf5b.png", + "thumb": "items/images/en/thumbs/fever_strike.bf321f3944fc5640a739184a2a2fdf5b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51566a", + "slug": "sawtooth_clip", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponSlashDamageMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sawtooth Clip", + "icon": "items/images/en/sawtooth_clip.830e46abe286063df243932fa45de311.png", + "thumb": "items/images/en/thumbs/sawtooth_clip.830e46abe286063df243932fa45de311.128x128.png" + } + } + }, + { + "id": "54aaf140e779891f6ee18f9c", + "slug": "arcane_essence_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Loki/LokiHelmetAlt", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Essence Helmet", + "icon": "items/images/en/arcane_essence_loki_helmet.8225ea44057eed0b4d74d6859a369976.png", + "thumb": "items/images/en/thumbs/arcane_essence_loki_helmet.8225ea44057eed0b4d74d6859a369976.128x128.png" + } + } + }, + { + "id": "54aaf1a2e77989598d22c782", + "slug": "arcane_locust_helmet", + "gameRef": "/Lotus/Upgrades/Skins/Ninja/NinjaHelmetAltB", + "tags": [ + "arcane_helmet", + "skin" + ], + "i18n": { + "en": { + "name": "Arcane Locust Helmet", + "icon": "items/images/en/arcane_locust_ash_helmet.313ff34abae66671da2978f2325a3dd8.png", + "thumb": "items/images/en/thumbs/arcane_locust_ash_helmet.313ff34abae66671da2978f2325a3dd8.128x128.png" + } + } + }, + { + "id": "5526aec0e779896af941825d", + "slug": "tempo_royale", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/AxeCmbThreeMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "heavy_blade" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tempo Royale", + "icon": "items/images/en/tempo_royale.95f226f35e283f4db130fb8eaf232f5c.png", + "thumb": "items/images/en/thumbs/tempo_royale.95f226f35e283f4db130fb8eaf232f5c.128x128.png" + } + } + }, + { + "id": "59eba86952f90ed715e14159", + "slug": "radian_sentirum", + "gameRef": "/Lotus/Types/Items/Gems/Eidolon/EidolonGemACutAItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Radian Sentirum", + "icon": "items/images/en/radian_sentirum.fd67dbe87fcedfc1d914bc36ad2cb7eb.png", + "thumb": "items/images/en/thumbs/radian_sentirum.fd67dbe87fcedfc1d914bc36ad2cb7eb.128x128.png" + } + } + }, + { + "id": "54c686fee7798913eda0615b", + "slug": "prisma_gorgon", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/VoidTraderGorgon/VTGorgon", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Prisma Gorgon", + "icon": "items/images/en/prisma_gorgon.3d4fdb4c17592d735ccdad21868d3019.png", + "thumb": "items/images/en/thumbs/prisma_gorgon.3d4fdb4c17592d735ccdad21868d3019.128x128.png" + } + } + }, + { + "id": "56dac5ac5cc639de0a45c526", + "slug": "brain_storm", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/GrakataUnlimitedAmmo", + "tags": [ + "primary", + "pvp", + "grakata", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Brain Storm", + "icon": "items/images/en/brain_storm.85cc50bf4d62733e3b35cd2f0e3c7b7b.png", + "thumb": "items/images/en/thumbs/brain_storm.85cc50bf4d62733e3b35cd2f0e3c7b7b.128x128.png" + } + } + }, + { + "id": "54ca4260e7798919a4e9b429", + "slug": "high_noon", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/GunbladeCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "gunblade" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "High Noon", + "icon": "items/images/en/high_noon.57ee38d1714bbf3095c9b82605a6a483.png", + "thumb": "items/images/en/thumbs/high_noon.57ee38d1714bbf3095c9b82605a6a483.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155f5", + "slug": "scattered_justice", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/HekMod", + "tags": [ + "syndicate", + "mod", + "rare", + "primary", + "hek" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Scattered Justice", + "icon": "items/images/en/scattered_justice.b46113ecdbc04d327240cedec0e3b1f1.png", + "thumb": "items/images/en/thumbs/scattered_justice.b46113ecdbc04d327240cedec0e3b1f1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155fd", + "slug": "brutal_tide", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/PunchKickCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "sparring" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Brutal Tide", + "icon": "items/images/en/brutal_tide.5af3086dd2d058f73ac47b98a73cd6aa.png", + "thumb": "items/images/en/thumbs/brutal_tide.5af3086dd2d058f73ac47b98a73cd6aa.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848fb", + "slug": "funnel_clouds", + "gameRef": "/Lotus/Powersuits/Tengu/TornadoAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "zephyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Funnel Clouds", + "icon": "items/images/en/funnel_clouds.b40582a7a46c29c0b6717a57b1bc7e4a.png", + "thumb": "items/images/en/thumbs/funnel_clouds.b40582a7a46c29c0b6717a57b1bc7e4a.128x128.png" + } + } + }, + { + "id": "559daa9fe779897b3263c2c7", + "slug": "ash_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AshPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Ash Prime Blueprint", + "icon": "items/images/en/ash_prime_blueprint.9f3f82bee82a9741531857cf76eb6594.png", + "thumb": "items/images/en/thumbs/ash_prime_blueprint.9f3f82bee82a9741531857cf76eb6594.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5783bf2dd9b6753790c89e8f", + "slug": "decurion_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchHeavyPistolsReceiver", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Decurion Receiver", + "icon": "items/images/en/decurion_receiver.5682bc698e5481541faba69246a2c248.png", + "thumb": "items/images/en/thumbs/decurion_receiver.5682bc698e5481541faba69246a2c248.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155bb", + "slug": "toxic_blight", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/MireMod", + "tags": [ + "syndicate", + "mod", + "melee", + "rare", + "mire" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Toxic Blight", + "icon": "items/images/en/toxic_blight.2d55757c9dcf2a97b13302a7d7ae42b4.png", + "thumb": "items/images/en/thumbs/toxic_blight.2d55757c9dcf2a97b13302a7d7ae42b4.128x128.png" + } + } + }, + { + "id": "56153727b66f836f91a8e849", + "slug": "kavasa_prime_kubrow_collar_blueprint", + "gameRef": "/Lotus/Types/Recipes/Kubrow/Collars/PrimeKubrowCollarABlueprint", + "tags": [ + "prime", + "skin", + "blueprint" + ], + "i18n": { + "en": { + "name": "Kavasa Prime Kubrow Collar Blueprint", + "icon": "items/images/en/kavasa_prime_kubrow_collar_blueprint.cc1bafee4156c05ebaa812d39cd559ba.png", + "thumb": "items/images/en/thumbs/kavasa_prime_kubrow_collar_blueprint.cc1bafee4156c05ebaa812d39cd559ba.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "57e91e5cc76eb74c087f492c", + "slug": "ayatan_cyan_star", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexOrnamentA", + "tags": [ + "ayatan_star" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Ayatan Cyan Star", + "icon": "items/images/en/ayatan_cyan_star.89fae8de34c9b16b9f5a9c6acb84e8d9.png", + "thumb": "items/images/en/thumbs/ayatan_cyan_star.89fae8de34c9b16b9f5a9c6acb84e8d9.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155bc", + "slug": "fatal_acceleration", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponProjectileSpeedMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fatal Acceleration", + "icon": "items/images/en/fatal_acceleration.cb3c34161c56cbf17bae039fcdccd2ed.png", + "thumb": "items/images/en/thumbs/fatal_acceleration.cb3c34161c56cbf17bae039fcdccd2ed.128x128.png" + } + } + }, + { + "id": "5783bf32d9b6753790c89e90", + "slug": "phaedra_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchLongRifleBarrel", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Phaedra Barrel", + "icon": "items/images/en/phaedra_barrel.93a06c74d5ecc242c76ea0ff91e3d9ca.png", + "thumb": "items/images/en/thumbs/phaedra_barrel.93a06c74d5ecc242c76ea0ff91e3d9ca.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515646", + "slug": "thiefs_wit", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarLootRadarMod", + "tags": [ + "mod", + "warframe", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Thief's Wit", + "icon": "items/images/en/thiefs_wit.b861b939df1689692ce5371fbe2d1e2d.png", + "thumb": "items/images/en/thumbs/thiefs_wit.b861b939df1689692ce5371fbe2d1e2d.128x128.png" + } + } + }, + { + "id": "59e91860f25be4e10d36571e", + "slug": "furax_wraith_left_gauntlet", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/FuraxWraithLeftGauntlet", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Furax Wraith Left Gauntlet", + "icon": "items/images/en/furax_wraith_left_gauntlet.c460830e1437c5ab3cd37e2ea51b09a9.png", + "thumb": "items/images/en/thumbs/furax_wraith_left_gauntlet.c460830e1437c5ab3cd37e2ea51b09a9.128x128.png", + "subIcon": "sub_icons/weapon/generic_gauntlet_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155bd", + "slug": "melee_prowess", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponStunChanceMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Prowess", + "icon": "items/images/en/melee_prowess.f792c4c19fa0f63b782959a71993d299.png", + "thumb": "items/images/en/thumbs/melee_prowess.f792c4c19fa0f63b782959a71993d299.128x128.png" + } + } + }, + { + "id": "57e91e5cc76eb74c087f492d", + "slug": "ayatan_amber_star", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexOrnamentB", + "tags": [ + "ayatan_star" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Ayatan Amber Star", + "icon": "items/images/en/ayatan_amber_star.9657dbb79cc82338d5b3caa62da3e934.png", + "thumb": "items/images/en/thumbs/ayatan_amber_star.9657dbb79cc82338d5b3caa62da3e934.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515662", + "slug": "prolonged_paralysis", + "gameRef": "/Lotus/Powersuits/Berserker/ShieldBashAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "valkyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Prolonged Paralysis", + "icon": "items/images/en/prolonged_paralysis.d1a7e0254f38ad1b3c220f774f84bf07.png", + "thumb": "items/images/en/thumbs/prolonged_paralysis.d1a7e0254f38ad1b3c220f774f84bf07.128x128.png" + } + } + }, + { + "id": "584160cd43e4267b5b699191", + "slug": "rifle_riven_mod_(veiled)", + "gameRef": "/Lotus/Upgrades/Mods/Randomized/LotusRifleRandomModRare", + "tags": [ + "mod", + "riven_mod", + "common", + "veiled_riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Rifle Riven Mod (Veiled)", + "icon": "items/images/en/rifle_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.png", + "thumb": "items/images/en/thumbs/rifle_riven_mod_(veiled).efa7515ed4b28b90fcde3b230701034b.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d6", + "slug": "flak_shot", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/DamageBiasSlashShotgunMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Flak Shot", + "icon": "items/images/en/flak_shot.be4117525d415460b856b5c75c0582c2.png", + "thumb": "items/images/en/thumbs/flak_shot.be4117525d415460b856b5c75c0582c2.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d7", + "slug": "follow_through", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/EnergyOnKill", + "tags": [ + "uncommon", + "pvp", + "mod", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Follow Through", + "icon": "items/images/en/follow_through.a1544cb860ea4175e3dea411582f3d34.png", + "thumb": "items/images/en/thumbs/follow_through.a1544cb860ea4175e3dea411582f3d34.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155cb", + "slug": "quickdraw", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponReloadSpeedMod", + "tags": [ + "common", + "mod", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Quickdraw", + "icon": "items/images/en/quickdraw.ce5b3a81c96d6ce353b3541627bad28a.png", + "thumb": "items/images/en/thumbs/quickdraw.ce5b3a81c96d6ce353b3541627bad28a.128x128.png" + } + } + }, + { + "id": "58446fac2c2ada005650f88f", + "slug": "guardian_derision", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponBlockingTauntMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Guardian Derision", + "icon": "items/images/en/guardian_derision.475b011473c1252788f6d63a43dfa651.png", + "thumb": "items/images/en/thumbs/guardian_derision.475b011473c1252788f6d63a43dfa651.128x128.png" + } + } + }, + { + "id": "58446fc72c2ada0064aca003", + "slug": "icy_avalanche", + "gameRef": "/Lotus/Powersuits/Frost/AvalancheAugmentCard", + "tags": [ + "mod", + "warframe", + "rare", + "frost" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Icy Avalanche", + "icon": "items/images/en/icy_avalanche.ee531a2d69a5c482eca8f264fbeaf103.png", + "thumb": "items/images/en/thumbs/icy_avalanche.ee531a2d69a5c482eca8f264fbeaf103.128x128.png" + } + } + }, + { + "id": "598b06b4ab6b61be6fec0fb6", + "slug": "vay_hek_frequency_triangulator", + "gameRef": "", + "tags": [ + "triangulator", + "collectible" + ], + "i18n": { + "en": { + "name": "Vay Hek Frequency Triangulator", + "icon": "items/images/en/vay_hek_frequency_triangulator.525164bf6dc3fccdfcfaa2ffff40da58.webp", + "thumb": "items/images/en/thumbs/vay_hek_frequency_triangulator.525164bf6dc3fccdfcfaa2ffff40da58.128x128.webp" + } + } + }, + { + "id": "5ce7fd85d23a3b00908c4206", + "slug": "whiplash_mine", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPrecept/MoaTetherVaccumMinePrecept", + "tags": [ + "mod", + "common", + "sentinel", + "moa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Whiplash Mine", + "icon": "items/images/en/whiplash_mine.456875d6f4b1d774c8f880dca0bf9975.png", + "thumb": "items/images/en/thumbs/whiplash_mine.456875d6f4b1d774c8f880dca0bf9975.128x128.png" + } + } + }, + { + "id": "5ce7fd86d23a3b00908c4207", + "slug": "odomedic", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/HealBot", + "tags": [ + "mod", + "rare", + "sentinel", + "robotic" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Odomedic", + "icon": "items/images/en/odomedic.2b54938545c6d389274341c425a53cad.png", + "thumb": "items/images/en/thumbs/odomedic.2b54938545c6d389274341c425a53cad.128x128.png" + } + } + }, + { + "id": "5ce7fd86d23a3b00908c4209", + "slug": "proton_jet", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Spider/SpiderModB", + "tags": [ + "mod", + "uncommon", + "primary", + "rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Proton Jet", + "icon": "items/images/en/proton_jet.79c7fc989dd7af4f8b6cbbd01e72a691.png", + "thumb": "items/images/en/thumbs/proton_jet.79c7fc989dd7af4f8b6cbbd01e72a691.128x128.png" + } + } + }, + { + "id": "5ce7fd86d23a3b00908c420a", + "slug": "security_override", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPrecept/MoaHackerPrecept", + "tags": [ + "mod", + "common", + "sentinel", + "moa" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Security Override", + "icon": "items/images/en/security_override.2405e99b57a45fd7feb0aa0e586e08ab.png", + "thumb": "items/images/en/thumbs/security_override.2405e99b57a45fd7feb0aa0e586e08ab.128x128.png" + } + } + }, + { + "id": "5ce7fd87d23a3b00908c420e", + "slug": "rift_haven", + "gameRef": "/Lotus/Powersuits/Magician/BanishAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "limbo" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rift Haven", + "icon": "items/images/en/rift_haven.84eb7632d0bd0b93a7a7173ea774f2b1.png", + "thumb": "items/images/en/thumbs/rift_haven.84eb7632d0bd0b93a7a7173ea774f2b1.128x128.png" + } + } + }, + { + "id": "56153f3bb66f83707da7eef9", + "slug": "machete_wraith", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/WraithMacheteWeapon", + "tags": [ + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Machete Wraith", + "icon": "items/images/en/machete_wraith.6d6dc37e4b72f552963591b652dbd5f9.png", + "thumb": "items/images/en/thumbs/machete_wraith.6d6dc37e4b72f552963591b652dbd5f9.128x128.png" + } + } + }, + { + "id": "57c20990022d3f62c0d81aa8", + "slug": "safeguard", + "gameRef": "/Lotus/Powersuits/Nezha/NezhaSashAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nezha" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Safeguard", + "icon": "items/images/en/safeguard.636dc23f7f989e63a549c926a64efee6.png", + "thumb": "items/images/en/thumbs/safeguard.636dc23f7f989e63a549c926a64efee6.128x128.png" + } + } + }, + { + "id": "56153f4cb66f837080b7120d", + "slug": "prova_vandal", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/VandalElectroProd", + "tags": [ + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Prova Vandal", + "icon": "items/images/en/prova_vandal.05e4450f5ba01240165a9b0f63c7e973.png", + "thumb": "items/images/en/thumbs/prova_vandal.05e4450f5ba01240165a9b0f63c7e973.128x128.png" + } + } + }, + { + "id": "57c20990022d3f62c0d81aa9", + "slug": "path_of_statues", + "gameRef": "/Lotus/Powersuits/Brawler/BrawlerPunchAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "atlas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Path Of Statues", + "icon": "items/images/en/path_of_statues.56d82cf8e4dad50d1fe7dc748f03df1d.png", + "thumb": "items/images/en/thumbs/path_of_statues.56d82cf8e4dad50d1fe7dc748f03df1d.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa22", + "slug": "contagion_cloud", + "gameRef": "/Lotus/Powersuits/Saryn/WeaponPoisonAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "saryn" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Contagion Cloud", + "icon": "items/images/en/contagion_cloud.c422f41645623ac71fcd74668430bfa6.png", + "thumb": "items/images/en/thumbs/contagion_cloud.c422f41645623ac71fcd74668430bfa6.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89aa", + "slug": "reaper_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Scythe/ReaperWeapon", + "tags": [ + "prime", + "weapon", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Reaper Prime Set", + "icon": "items/images/en/reaper_prime_set.4e1d36812203a97fd0191930485b1095.png", + "thumb": "items/images/en/thumbs/reaper_prime_set.4e1d36812203a97fd0191930485b1095.128x128.png" + } + } + }, + { + "id": "57c73be094b4b0f159ab5e15", + "slug": "immolated_radiance", + "gameRef": "/Lotus/Powersuits/Ember/FireSkinAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ember" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Immolated Radiance", + "icon": "items/images/en/immolated_radiance.8f20ac882e024bad8676d16c90f0f666.png", + "thumb": "items/images/en/thumbs/immolated_radiance.8f20ac882e024bad8676d16c90f0f666.128x128.png" + } + } + }, + { + "id": "573b7fbd0ec44a47787a690d", + "slug": "vauban_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VaubanPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Vauban Prime Blueprint", + "icon": "items/images/en/vauban_prime_blueprint.9c15bb47d3ed4ed8e960c2502fac82f2.png", + "thumb": "items/images/en/thumbs/vauban_prime_blueprint.9c15bb47d3ed4ed8e960c2502fac82f2.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "559daad1e779897b4be73862", + "slug": "carrier_prime_carapace", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCarrierCarapace", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Carrier Prime Carapace", + "icon": "items/images/en/carrier_prime_carapace.1f39e6e9ecef0225b0755dd5c89f3cc8.png", + "thumb": "items/images/en/thumbs/carrier_prime_carapace.1f39e6e9ecef0225b0755dd5c89f3cc8.128x128.png", + "subIcon": "sub_icons/sentinel/prime_carapace_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a50d", + "slug": "full_capacity", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/LargerMagLongerReloadPistolMod", + "tags": [ + "common", + "secondary", + "pvp", + "mod", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Full Capacity", + "icon": "items/images/en/full_capacity.3487f8c1a516c44d36d4655604875586.png", + "thumb": "items/images/en/thumbs/full_capacity.3487f8c1a516c44d36d4655604875586.128x128.png" + } + } + }, + { + "id": "59385f6716efa3a742b15f5f", + "slug": "magnetized_discharge", + "gameRef": "/Lotus/Powersuits/Mag/BulletAttractorAugmentCard", + "tags": [ + "mod", + "mag", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetized Discharge", + "icon": "items/images/en/magnetized_discharge.2865866b4b2c0b29287f721d2386beec.png", + "thumb": "items/images/en/thumbs/magnetized_discharge.2865866b4b2c0b29287f721d2386beec.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff25", + "slug": "ankyros_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AnkyrosPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ankyros Prime Blueprint", + "icon": "items/images/en/ankyros_prime_blueprint.81b3e5876c214047d10a0d90f92ebdfe.png", + "thumb": "items/images/en/thumbs/ankyros_prime_blueprint.81b3e5876c214047d10a0d90f92ebdfe.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5953f8e78e34b5ed3cb3d9b8", + "slug": "inaros_tomb_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileInarosTomb", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Inaros Tomb Scene", + "icon": "items/images/en/inaros_tomb_scene.2913e156942befe7b2966a961bb0bbaa.png", + "thumb": "items/images/en/thumbs/inaros_tomb_scene.2913e156942befe7b2966a961bb0bbaa.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff2a", + "slug": "boar_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BoarPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Boar Prime Barrel", + "icon": "items/images/en/boar_prime_barrel.5e8a5ba1520169c7a99c738624328d26.png", + "thumb": "items/images/en/thumbs/boar_prime_barrel.5e8a5ba1520169c7a99c738624328d26.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec7f", + "slug": "oberon_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OberonPrimeChassisBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Oberon Prime Chassis Blueprint", + "icon": "items/images/en/oberon_prime_chassis.d7f1623552bce11f166b715679e27022.png", + "thumb": "items/images/en/thumbs/oberon_prime_chassis.d7f1623552bce11f166b715679e27022.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4dd", + "slug": "lock_and_load", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/PassiveReloadMod", + "tags": [ + "primary", + "pvp", + "shotgun", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lock And Load", + "icon": "items/images/en/lock_and_load.1aaa76e73ac149aa2a8ee0a8c3307f80.png", + "thumb": "items/images/en/thumbs/lock_and_load.1aaa76e73ac149aa2a8ee0a8c3307f80.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf06e", + "slug": "lunaro_arena_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTilePvPTennoBallMoon", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Lunaro Arena Scene", + "icon": "items/images/en/lunaro_arena_scene.d09d157709002db42e9c9921dc05bed8.png", + "thumb": "items/images/en/thumbs/lunaro_arena_scene.d09d157709002db42e9c9921dc05bed8.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec8a", + "slug": "silva_and_aegis_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SilvaAegisPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Silva & Aegis Prime Blade", + "icon": "items/images/en/silva_and_aegis_prime_blade.d226bbe86d3eccd8c751958dba46a4f6.png", + "thumb": "items/images/en/thumbs/silva_and_aegis_prime_blade.d226bbe86d3eccd8c751958dba46a4f6.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "551085bce7798972a9b2fc6e", + "slug": "arcane_guardian", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/ArmourOnDamage", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Guardian", + "icon": "items/images/en/arcane_guardian.5d8874dfd06eaaf9aaceef59d99213b3.png", + "thumb": "items/images/en/thumbs/arcane_guardian.5d8874dfd06eaaf9aaceef59d99213b3.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff2f", + "slug": "boltor_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BoltorPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Boltor Prime Blueprint", + "icon": "items/images/en/boltor_prime_blueprint.a26157003dea5b1e1fe6660f46f3ea11.png", + "thumb": "items/images/en/thumbs/boltor_prime_blueprint.a26157003dea5b1e1fe6660f46f3ea11.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa2c", + "slug": "fast_deflection", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarShieldRechargeRateMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fast Deflection", + "icon": "items/images/en/fast_deflection.95342874b39baa832e829ed76fd36238.png", + "thumb": "items/images/en/thumbs/fast_deflection.95342874b39baa832e829ed76fd36238.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec86", + "slug": "sybaris_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeSybaris/PrimeSybarisRifle", + "tags": [ + "primary", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Sybaris Prime Set", + "icon": "items/images/en/sybaris_prime_set.39d7dc4a904f7db7e7c78901976aa5fa.png", + "thumb": "items/images/en/thumbs/sybaris_prime_set.39d7dc4a904f7db7e7c78901976aa5fa.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec80", + "slug": "oberon_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OberonPrimeSystemsBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Oberon Prime Systems Blueprint", + "icon": "items/images/en/oberon_prime_systems.d7f1623552bce11f166b715679e27022.png", + "thumb": "items/images/en/thumbs/oberon_prime_systems.d7f1623552bce11f166b715679e27022.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5df955141456970150510f29", + "slug": "baza_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BazaPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Baza Prime Receiver", + "icon": "items/images/en/baza_prime_receiver.a5f9c94cee410a5af7726ee6b2fca2b5.png", + "thumb": "items/images/en/thumbs/baza_prime_receiver.a5f9c94cee410a5af7726ee6b2fca2b5.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5dfea13a1456970294aff353", + "slug": "primed_smite_infested", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponMeleeFactionDamageInfestedExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Smite Infested", + "icon": "items/images/en/primed_smite_infested.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/primed_smite_infested.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5dfea13d1456970294aff363", + "slug": "shedu_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SheduHeavyWeaponBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Shedu Barrel", + "icon": "items/images/en/shedu_barrel.765c016812e915e1e06ceb5e3820ae48.png", + "thumb": "items/images/en/thumbs/shedu_barrel.765c016812e915e1e06ceb5e3820ae48.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5dfea1421456970294aff37f", + "slug": "shedu_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SheduHeavyWeaponReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Shedu Receiver", + "icon": "items/images/en/shedu_receiver.765c016812e915e1e06ceb5e3820ae48.png", + "thumb": "items/images/en/thumbs/shedu_receiver.765c016812e915e1e06ceb5e3820ae48.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5dfea1431456970294aff388", + "slug": "primed_smite_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponMeleeFactionDamageCorpusExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Smite Corpus", + "icon": "items/images/en/primed_smite_corpus.c6335de9a70ac156604d8251a665d1df.png", + "thumb": "items/images/en/thumbs/primed_smite_corpus.c6335de9a70ac156604d8251a665d1df.128x128.png" + } + } + }, + { + "id": "5dfea1441456970294aff38c", + "slug": "sentient_fountain_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileSentientConTransitionPlusOne", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Sentient Fountain Scene", + "icon": "items/images/en/sentient_fountain_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/sentient_fountain_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5dfea1481456970294aff3a3", + "slug": "shedu_set", + "gameRef": "/Lotus/Weapons/Sentients/Shedu/SheduHeavyWeapon", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Shedu Set", + "icon": "items/images/en/shedu_set.765c016812e915e1e06ceb5e3820ae48.png", + "thumb": "items/images/en/thumbs/shedu_set.765c016812e915e1e06ceb5e3820ae48.128x128.png" + } + } + }, + { + "id": "5dfea1491456970294aff3a5", + "slug": "shedu_chassis", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SheduHeavyWeaponChassis", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Shedu Chassis", + "icon": "items/images/en/shedu_chassis.765c016812e915e1e06ceb5e3820ae48.png", + "thumb": "items/images/en/thumbs/shedu_chassis.765c016812e915e1e06ceb5e3820ae48.128x128.png", + "subIcon": "sub_icons/weapon/generic_chassis_128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749e6", + "slug": "void_cloak", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/VoidCloak", + "tags": [ + "mod", + "railjack", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Void Cloak", + "icon": "items/images/en/void_cloak.f6d99679c6cbed946e0a4cdaaf04bd33.png", + "thumb": "items/images/en/thumbs/void_cloak.f6d99679c6cbed946e0a4cdaaf04bd33.128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749f8", + "slug": "squad_renew", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/CrewShipRenewAbilityCard", + "tags": [ + "mod", + "rare", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Squad Renew", + "icon": "items/images/en/squad_renew.0996bfb3496a13e52b387ad5f062de07.png", + "thumb": "items/images/en/thumbs/squad_renew.0996bfb3496a13e52b387ad5f062de07.128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749fd", + "slug": "section_density", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarGunnerWeaponCritDamage", + "tags": [ + "railjack", + "uncommon", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Section Density", + "icon": "items/images/en/section_density.06364c3a4445dcfff9525d825617fd46.png", + "thumb": "items/images/en/thumbs/section_density.06364c3a4445dcfff9525d825617fd46.128x128.png" + } + } + }, + { + "id": "5dff6e101456970316674a01", + "slug": "flow_burn", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/CrewShipAfterBurnersAbilityCard", + "tags": [ + "mod", + "railjack", + "uncommon" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Flow Burn", + "icon": "items/images/en/flow_burn.8fb937bc22af398d6629f02b6c486d85.png", + "thumb": "items/images/en/thumbs/flow_burn.8fb937bc22af398d6629f02b6c486d85.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178a8", + "slug": "surging_dash", + "gameRef": "/Lotus/Powersuits/Excalibur/SlashDashAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "excalibur" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Surging Dash", + "icon": "items/images/en/surging_dash.95479235e9e1b4f7b1f21f47a927f723.png", + "thumb": "items/images/en/thumbs/surging_dash.95479235e9e1b4f7b1f21f47a927f723.128x128.png" + } + } + }, + { + "id": "5b91784d0566c80216658ce8", + "slug": "conductor", + "gameRef": "/Lotus/Powersuits/Bard/BardCharmAugmentCard", + "tags": [ + "mod", + "octavia", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Conductor", + "icon": "items/images/en/conductor.176dbf05c7070dba7196023a13fd5422.png", + "thumb": "items/images/en/thumbs/conductor.176dbf05c7070dba7196023a13fd5422.128x128.png" + } + } + }, + { + "id": "5b91784d0566c80216658cea", + "slug": "accumulating_whipclaw", + "gameRef": "/Lotus/Powersuits/Khora/KhoraCrackAugmentCard", + "tags": [ + "mod", + "khora", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Accumulating Whipclaw", + "icon": "items/images/en/accumulating_whipclaw.925629206108b92d30f15c13b3cbcc4e.png", + "thumb": "items/images/en/thumbs/accumulating_whipclaw.925629206108b92d30f15c13b3cbcc4e.128x128.png" + } + } + }, + { + "id": "5be5f5a03ffcc7038857f109", + "slug": "heart_noctrul", + "gameRef": "/Lotus/Types/Items/Gems/Solaris/SolarisCommonGemBCutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Heart Noctrul", + "icon": "items/images/en/heart_noctrul.353a7ac00570827bfc745565a5670ca0.png", + "thumb": "items/images/en/thumbs/heart_noctrul.353a7ac00570827bfc745565a5670ca0.128x128.png" + } + } + }, + { + "id": "55397302e77989047f88411c", + "slug": "photon_repeater", + "gameRef": "/Lotus/Powersuits/Trapper/MagHoleAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "vauban" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Photon Repeater", + "icon": "items/images/en/photon_repeater.6a629b63941e30384976211533c6d0d6.png", + "thumb": "items/images/en/thumbs/photon_repeater.6a629b63941e30384976211533c6d0d6.128x128.png" + } + } + }, + { + "id": "5c196faf96037800ddadac17", + "slug": "redeemer_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Gunblade/RedeemerPrime/RedeemerPrimeWep", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Redeemer Prime Set", + "icon": "items/images/en/redeemer_prime_set.92fcede37c1ab66d22a2287dc2334731.png", + "thumb": "items/images/en/thumbs/redeemer_prime_set.92fcede37c1ab66d22a2287dc2334731.128x128.png" + } + } + }, + { + "id": "5c1bda0514a8e4006b1dad5f", + "slug": "hypothermic_shell", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingEventColdStatusRifleMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hypothermic Shell", + "icon": "items/images/en/hypothermic_shell.fbc9f5edb8b058c6b643e7eef855f2c4.png", + "thumb": "items/images/en/thumbs/hypothermic_shell.fbc9f5edb8b058c6b643e7eef855f2c4.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a0c", + "slug": "warhead", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanOrdnanceDamage", + "tags": [ + "railjack", + "uncommon", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Warhead", + "icon": "items/images/en/warhead.e72c4c662e69a1340c98b841dad7ae70.png", + "thumb": "items/images/en/thumbs/warhead.e72c4c662e69a1340c98b841dad7ae70.128x128.png" + } + } + }, + { + "id": "5e02154d14569703bf43e54a", + "slug": "battle_stations", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/CrewShipQuadDamageAbilityCard", + "tags": [ + "mod", + "railjack", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Battle Stations", + "icon": "items/images/en/battle_stations.7140bba7146e58d1479718becd0271cf.png", + "thumb": "items/images/en/thumbs/battle_stations.7140bba7146e58d1479718becd0271cf.128x128.png" + } + } + }, + { + "id": "5e02154e14569703bf43e54e", + "slug": "countermeasures", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipFlaresAbilityCard", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Countermeasures", + "icon": "items/images/en/countermeasures.42ebc16d772da18cc7fdf72d811b320a.png", + "thumb": "items/images/en/thumbs/countermeasures.42ebc16d772da18cc7fdf72d811b320a.128x128.png" + } + } + }, + { + "id": "5e4145907b0275011bc5b7cd", + "slug": "blood_forge", + "gameRef": "/Lotus/Powersuits/Garuda/GarudaBloodAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "garuda" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blood Forge", + "icon": "items/images/en/blood_forge.46b1109abc8ae56837786ff19ba99501.png", + "thumb": "items/images/en/thumbs/blood_forge.46b1109abc8ae56837786ff19ba99501.128x128.png" + } + } + }, + { + "id": "5e4145907b0275011bc5b7ce", + "slug": "balefire_surge", + "gameRef": "/Lotus/Powersuits/IronFrame/IronFrameBlastAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "hildryn" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Balefire Surge", + "icon": "items/images/en/balefire_surge.494748c2c7a6859593d8438f3522e8b5.png", + "thumb": "items/images/en/thumbs/balefire_surge.494748c2c7a6859593d8438f3522e8b5.128x128.png" + } + } + }, + { + "id": "5e4145907b0275011bc5b7cf", + "slug": "sentient_basin_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileSentientIntCaveDescent", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Sentient Basin Scene", + "icon": "items/images/en/sentient_basin_scene.a492dd325242346b1630ebbee8d8272f.png", + "thumb": "items/images/en/thumbs/sentient_basin_scene.a492dd325242346b1630ebbee8d8272f.128x128.png" + } + } + }, + { + "id": "5e4145907b0275011bc5b7d0", + "slug": "sentient_balcony_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileSentientConTallJunctionOne", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Sentient Balcony Scene", + "icon": "items/images/en/sentient_balcony_scene.c4ef34e82aa7b62ad8888d1c6b38be16.png", + "thumb": "items/images/en/thumbs/sentient_balcony_scene.c4ef34e82aa7b62ad8888d1c6b38be16.128x128.png" + } + } + }, + { + "id": "5e4145917b0275011bc5b7d1", + "slug": "endless_lullaby", + "gameRef": "/Lotus/Powersuits/Pacifist/PacifistWaveAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "baruuk" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Endless Lullaby", + "icon": "items/images/en/endless_lullaby.11fb2e84d6b43a9f0f9bb7ec6a821d92.png", + "thumb": "items/images/en/thumbs/endless_lullaby.11fb2e84d6b43a9f0f9bb7ec6a821d92.128x128.png" + } + } + }, + { + "id": "5c1bda1114a8e4006b1dad78", + "slug": "magus_accelerant", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HeatResistOnBlast", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Accelerant", + "icon": "items/images/en/magus_accelerant.3d50149a79c8ec5ab2a2499da47244e2.png", + "thumb": "items/images/en/thumbs/magus_accelerant.3d50149a79c8ec5ab2a2499da47244e2.128x128.png" + } + } + }, + { + "id": "57bc9c99e506eb45ea25145d", + "slug": "galatine_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeGalatineBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Galatine Prime Blueprint", + "icon": "items/images/en/galatine_prime_blueprint.066b855eb73def09ca5f21f677010098.png", + "thumb": "items/images/en/thumbs/galatine_prime_blueprint.066b855eb73def09ca5f21f677010098.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5e7caa01267539063de48c3f", + "slug": "aerial_ace", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Arbitration/JumpRefreshOnKillRifleMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Aerial Ace", + "icon": "items/images/en/aerial_ace.ecfa92c3a9687561c98a5ef27bf843b5.png", + "thumb": "items/images/en/thumbs/aerial_ace.ecfa92c3a9687561c98a5ef27bf843b5.128x128.png" + } + } + }, + { + "id": "5e7caa02267539063de48c40", + "slug": "energizing_shot", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/ShootPickUpPistolMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol_(no_aoe)" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Energizing Shot", + "icon": "items/images/en/energizing_shot.8e0c1b01dba24357b770fe970d57c459.png", + "thumb": "items/images/en/thumbs/energizing_shot.8e0c1b01dba24357b770fe970d57c459.128x128.png" + } + } + }, + { + "id": "5e7caa02267539063de48c41", + "slug": "anchored_glide", + "gameRef": "/Lotus/Powersuits/Tengu/TenguDisablePassiveMod", + "tags": [ + "mod", + "rare", + "warframe", + "zephyr" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Anchored Glide", + "icon": "items/images/en/anchored_glide.f5f043a3836edf65ef625618548cf6f8.png", + "thumb": "items/images/en/thumbs/anchored_glide.f5f043a3836edf65ef625618548cf6f8.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156da", + "slug": "venomous_clip", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingWeaponToxinDamageMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Venomous Clip", + "icon": "items/images/en/venomous_clip.9fc8ea3b71afd7b9d9392cb04519f805.png", + "thumb": "items/images/en/thumbs/venomous_clip.9fc8ea3b71afd7b9d9392cb04519f805.128x128.png" + } + } + }, + { + "id": "56675652f9001cd2824a6825", + "slug": "dera_vandal_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DeraVandalBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Dera Vandal Barrel", + "icon": "items/images/en/dera_vandal_barrel.15c5a1f8b62ab0520cf7394563f73aea.png", + "thumb": "items/images/en/thumbs/dera_vandal_barrel.15c5a1f8b62ab0520cf7394563f73aea.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d0", + "slug": "counterweight", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/DamageBiasImpactMeleeMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Counterweight", + "icon": "items/images/en/counterweight.fc95b4c6b041d6be1898624a72f7d267.png", + "thumb": "items/images/en/thumbs/counterweight.fc95b4c6b041d6be1898624a72f7d267.128x128.png" + } + } + }, + { + "id": "5ce7fd85d23a3b00908c4205", + "slug": "anti_grav_grenade", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPrecept/MoaLiftBombPrecept", + "tags": [ + "mod", + "common", + "sentinel", + "moa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Anti-Grav Grenade", + "icon": "items/images/en/anti_grav_grenade.08aa82d4bc0f4921a12b4e0b8e8979f6.png", + "thumb": "items/images/en/thumbs/anti_grav_grenade.08aa82d4bc0f4921a12b4e0b8e8979f6.128x128.png" + } + } + }, + { + "id": "57c05949d0d9ef638234e4af", + "slug": "brief_respite", + "gameRef": "/Lotus/Upgrades/Mods/Aura/FairyQuest/FairyQuestAbilityToShieldsAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Brief Respite", + "icon": "items/images/en/brief_respite.716172347813d137cc5d9d0cbe249d6c.png", + "thumb": "items/images/en/thumbs/brief_respite.716172347813d137cc5d9d0cbe249d6c.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a8", + "slug": "orthos_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/PrimePolearmWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Orthos Prime Set", + "icon": "items/images/en/orthos_prime_set.049c8584708b849d1eff500b182825f2.png", + "thumb": "items/images/en/thumbs/orthos_prime_set.049c8584708b849d1eff500b182825f2.128x128.png" + } + } + }, + { + "id": "57c73be094b4b0f159ab5e13", + "slug": "hysterical_assault", + "gameRef": "/Lotus/Powersuits/Berserker/LastStandAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "valkyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hysterical Assault", + "icon": "items/images/en/hysterical_assault.d0eaaceb3982bdd8bb585766ed9e6204.png", + "thumb": "items/images/en/thumbs/hysterical_assault.d0eaaceb3982bdd8bb585766ed9e6204.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4c6", + "slug": "adept_surge", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/MoreBulletJumpLessHealthMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Adept Surge", + "icon": "items/images/en/adept_surge.d176142917c6532a97645ade76dd3edc.png", + "thumb": "items/images/en/thumbs/adept_surge.d176142917c6532a97645ade76dd3edc.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a50e", + "slug": "gorgon_frenzy", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/FasterRoFonKillGorgonMod", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "gorgon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gorgon Frenzy", + "icon": "items/images/en/gorgon_frenzy.0993e71e3c052de71d6bfe993c4076f7.png", + "thumb": "items/images/en/thumbs/gorgon_frenzy.0993e71e3c052de71d6bfe993c4076f7.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89b2", + "slug": "volt_prime_set", + "gameRef": "/Lotus/Powersuits/Volt/VoltPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Volt Prime Set", + "icon": "items/images/en/volt_prime_set.9481daa3eb02aaec1108cdbeeaeea159.png", + "thumb": "items/images/en/thumbs/volt_prime_set.9481daa3eb02aaec1108cdbeeaeea159.128x128.png" + } + } + }, + { + "id": "59eba86952f90ed715e14156", + "slug": "esher_devar", + "gameRef": "/Lotus/Types/Items/Gems/Eidolon/CommonGemBCutAItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Esher Devar", + "icon": "items/images/en/esher_devar.c0c43cd7a20d441676da210e92a83600.png", + "thumb": "items/images/en/thumbs/esher_devar.c0c43cd7a20d441676da210e92a83600.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c3119210b", + "slug": "banshee_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BansheePrimeHelmetBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Banshee Prime Neuroptics Blueprint", + "icon": "items/images/en/banshee_prime_neuroptics.a0956816beb733841bce57e69a568cd6.png", + "thumb": "items/images/en/thumbs/banshee_prime_neuroptics.a0956816beb733841bce57e69a568cd6.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa2d", + "slug": "electro_pulse", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/TaserStun", + "tags": [ + "mod", + "common", + "sentinel", + "diriga" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Electro Pulse", + "icon": "items/images/en/electro_pulse.f4bd69a3149985b72299f5da28a01306.png", + "thumb": "items/images/en/thumbs/electro_pulse.f4bd69a3149985b72299f5da28a01306.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa2e", + "slug": "neutralize", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowDisarmPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "chesa_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Neutralize", + "icon": "items/images/en/neutralize.a1c4b488328e3b844b16e657030b59fb.png", + "thumb": "items/images/en/thumbs/neutralize.a1c4b488328e3b844b16e657030b59fb.128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa32", + "slug": "retrieve", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowLootPrecept", + "tags": [ + "mod", + "common", + "kubrow", + "chesa_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Retrieve", + "icon": "items/images/en/retrieve.c3364c6fe981f656c6398cdf231fd526.png", + "thumb": "items/images/en/thumbs/retrieve.c3364c6fe981f656c6398cdf231fd526.128x128.png" + } + } + }, + { + "id": "5740c1769d238d4a03d28516", + "slug": "imperator_vandal_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ImperatorVandalReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Imperator Vandal Receiver", + "icon": "items/images/en/imperator_vandal_receiver.a7802d291f16f9dcd97afb2e69c879b6.png", + "thumb": "items/images/en/thumbs/imperator_vandal_receiver.a7802d291f16f9dcd97afb2e69c879b6.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "57dbdc525e334907aa8edb58", + "slug": "secura_lecta", + "gameRef": "/Lotus/Weapons/Syndicates/PerrinSequence/Melee/PSLecta", + "tags": [ + "syndicate", + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Secura Lecta", + "icon": "items/images/en/secura_lecta.44e35643f0208a0aa069fe393cd2e11b.png", + "thumb": "items/images/en/thumbs/secura_lecta.44e35643f0208a0aa069fe393cd2e11b.128x128.png" + } + } + }, + { + "id": "57dbdc685e334907aa8edb5b", + "slug": "amesha_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/SupportArchwing/SupportArchwingSystemsComponent", + "tags": [ + "archwing", + "component" + ], + "i18n": { + "en": { + "name": "Amesha Systems", + "icon": "items/images/en/amesha_systems_blueprint.ff297caf790ef259b5715a2510974338.png", + "thumb": "items/images/en/thumbs/amesha_systems_blueprint.ff297caf790ef259b5715a2510974338.128x128.png", + "subIcon": "sub_icons/archwing/generic_systems_128x128.png" + } + } + }, + { + "id": "57dbdc685e334907aa8edb5c", + "slug": "amesha_wings_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/SupportArchwing/SupportArchwingWingsComponent", + "tags": [ + "archwing", + "component" + ], + "i18n": { + "en": { + "name": "Amesha Wings", + "icon": "items/images/en/amesha_wings_blueprint.ff297caf790ef259b5715a2510974338.png", + "thumb": "items/images/en/thumbs/amesha_wings_blueprint.ff297caf790ef259b5715a2510974338.128x128.png", + "subIcon": "sub_icons/archwing/generic_wings_128x128.png" + } + } + }, + { + "id": "57dbdc685e334907aa8edb5d", + "slug": "amesha_harness_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/SupportArchwing/SupportArchwingChassisComponent", + "tags": [ + "archwing", + "component" + ], + "i18n": { + "en": { + "name": "Amesha Harness", + "icon": "items/images/en/amesha_harness_blueprint.ff297caf790ef259b5715a2510974338.png", + "thumb": "items/images/en/thumbs/amesha_harness_blueprint.ff297caf790ef259b5715a2510974338.128x128.png", + "subIcon": "sub_icons/archwing/generic_chassis_128x128.png" + } + } + }, + { + "id": "57dbdc685e334907aa8edb5e", + "slug": "amesha_set", + "gameRef": "/Lotus/Powersuits/Archwing/SupportJetPack/SupportJetPack", + "tags": [ + "set", + "archwing" + ], + "i18n": { + "en": { + "name": "Amesha Set", + "icon": "items/images/en/amesha_set.ff297caf790ef259b5715a2510974338.png", + "thumb": "items/images/en/thumbs/amesha_set.ff297caf790ef259b5715a2510974338.128x128.png" + } + } + }, + { + "id": "57dbdc745e334907aa8edb61", + "slug": "elytron_harness_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/DemolitionArchwing/DemolitionArchwingChassisComponent", + "tags": [ + "archwing", + "component" + ], + "i18n": { + "en": { + "name": "Elytron Harness", + "icon": "items/images/en/elytron_harness_blueprint.971d1e23ad3033ff3af37147302efb8b.png", + "thumb": "items/images/en/thumbs/elytron_harness_blueprint.971d1e23ad3033ff3af37147302efb8b.128x128.png", + "subIcon": "sub_icons/archwing/generic_chassis_128x128.png" + } + } + }, + { + "id": "57dbdc745e334907aa8edb62", + "slug": "elytron_set", + "gameRef": "/Lotus/Powersuits/Archwing/DemolitionJetPack/DemolitionJetPack", + "tags": [ + "set", + "archwing" + ], + "i18n": { + "en": { + "name": "Elytron Set", + "icon": "items/images/en/elytron_set.971d1e23ad3033ff3af37147302efb8b.png", + "thumb": "items/images/en/thumbs/elytron_set.971d1e23ad3033ff3af37147302efb8b.128x128.png" + } + } + }, + { + "id": "57dbdc825e334907aa8edb63", + "slug": "itzal_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/StealthArchwing/StealthArchwingSystemsBlueprint", + "tags": [ + "component", + "archwing", + "blueprint" + ], + "i18n": { + "en": { + "name": "Itzal Systems Blueprint", + "icon": "items/images/en/itzal_systems.0010e4eeee847edd082019f488da2fc2.png", + "thumb": "items/images/en/thumbs/itzal_systems.0010e4eeee847edd082019f488da2fc2.128x128.png", + "subIcon": "sub_icons/archwing/generic_systems_128x128.png" + } + } + }, + { + "id": "57dbdc825e334907aa8edb64", + "slug": "itzal_wings_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/StealthArchwing/StealthArchwingWingsBlueprint", + "tags": [ + "component", + "archwing", + "blueprint" + ], + "i18n": { + "en": { + "name": "Itzal Wings Blueprint", + "icon": "items/images/en/itzal_wings.0010e4eeee847edd082019f488da2fc2.png", + "thumb": "items/images/en/thumbs/itzal_wings.0010e4eeee847edd082019f488da2fc2.128x128.png", + "subIcon": "sub_icons/archwing/generic_wings_128x128.png" + } + } + }, + { + "id": "57dbdc825e334907aa8edb65", + "slug": "itzal_harness_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/StealthArchwing/StealthArchwingChassisBlueprint", + "tags": [ + "component", + "archwing", + "blueprint" + ], + "i18n": { + "en": { + "name": "Itzal Harness Blueprint", + "icon": "items/images/en/itzal_harness.0010e4eeee847edd082019f488da2fc2.png", + "thumb": "items/images/en/thumbs/itzal_harness.0010e4eeee847edd082019f488da2fc2.128x128.png", + "subIcon": "sub_icons/archwing/generic_chassis_128x128.png" + } + } + }, + { + "id": "57dbdc825e334907aa8edb66", + "slug": "itzal_set", + "gameRef": "/Lotus/Powersuits/Archwing/StealthJetPack/StealthJetPack", + "tags": [ + "set", + "archwing" + ], + "i18n": { + "en": { + "name": "Itzal Set", + "icon": "items/images/en/itzal_set.0010e4eeee847edd082019f488da2fc2.png", + "thumb": "items/images/en/thumbs/itzal_set.0010e4eeee847edd082019f488da2fc2.128x128.png" + } + } + }, + { + "id": "57e91e65c76eb74c087f4932", + "slug": "ayatan_vaya_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexD", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 2, + "baseEndo": 400, + "endoMultiplier": 2, + "i18n": { + "en": { + "name": "Ayatan Vaya Sculpture", + "icon": "items/images/en/ayatan_vaya_sculpture.3aaade63978258328e4106a499616299.png", + "thumb": "items/images/en/thumbs/ayatan_vaya_sculpture.3aaade63978258328e4106a499616299.128x128.png" + } + } + }, + { + "id": "5800c6c9c021d9dc0a9f8916", + "slug": "the_perrin_sequence_augment_mod", + "gameRef": "", + "tags": [ + "syndicate", + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "The Perrin Sequence Augment Mod", + "icon": "items/images/en/the_perrin_sequence_augment_mod.c4b984d8cc314def94439a70bf22df7a.webp", + "thumb": "items/images/en/thumbs/the_perrin_sequence_augment_mod.c4b984d8cc314def94439a70bf22df7a.128x128.webp" + } + } + }, + { + "id": "5800c6c9c021d9dc0a9f8918", + "slug": "new_loka_augment_mod", + "gameRef": "", + "tags": [ + "syndicate", + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "New Loka Augment Mod", + "icon": "items/images/en/new_loka_augment_mod.56722614fc5920d6450d0f9b7ede42bf.webp", + "thumb": "items/images/en/thumbs/new_loka_augment_mod.56722614fc5920d6450d0f9b7ede42bf.128x128.webp" + } + } + }, + { + "id": "5800c6c9c021d9dc0a9f8919", + "slug": "arbiters_of_hexis_augment_mod", + "gameRef": "", + "tags": [ + "syndicate", + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "Arbiters of Hexis Augment Mod", + "icon": "items/images/en/arbiters_of_hexis_augment_mod.045733f67826c2efe957b7454f169c23.webp", + "thumb": "items/images/en/thumbs/arbiters_of_hexis_augment_mod.045733f67826c2efe957b7454f169c23.128x128.webp" + } + } + }, + { + "id": "5788fad04fff472f131a135f", + "slug": "charm", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowLuckPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "smeeta_kavat" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Charm", + "icon": "items/images/en/charm.6112d33fa330329649e3f40e41c2b30f.png", + "thumb": "items/images/en/thumbs/charm.6112d33fa330329649e3f40e41c2b30f.128x128.png" + } + } + }, + { + "id": "5788fad84fff472f131a1361", + "slug": "cats_eye", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowCatsEyePrecept", + "tags": [ + "mod", + "rare", + "kavat", + "adarza_kavat" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cat's Eye", + "icon": "items/images/en/cats_eye.ec8680ee8d86067156c3d818b72cb1e5.png", + "thumb": "items/images/en/thumbs/cats_eye.ec8680ee8d86067156c3d818b72cb1e5.128x128.png" + } + } + }, + { + "id": "580e38faca550948410af0a6", + "slug": "medi_pet_kit", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Events/Index/CompanionMedipetKitMod", + "tags": [ + "companion", + "mod", + "rare", + "sentinel" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Medi-Pet Kit", + "icon": "items/images/en/medi_pet_kit.0bb8979ddfec3be2177dd52fca2d1797.png", + "thumb": "items/images/en/thumbs/medi_pet_kit.0bb8979ddfec3be2177dd52fca2d1797.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff5a", + "slug": "reaper_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeScytheHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Reaper Prime Handle", + "icon": "items/images/en/reaper_prime_handle.4e1d36812203a97fd0191930485b1095.png", + "thumb": "items/images/en/thumbs/reaper_prime_handle.4e1d36812203a97fd0191930485b1095.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff5e", + "slug": "sicarus_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SicarusPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Sicarus Prime Barrel", + "icon": "items/images/en/sicarus_prime_barrel.e7c07172e6d63d49ae349d508c56fc85.png", + "thumb": "items/images/en/thumbs/sicarus_prime_barrel.e7c07172e6d63d49ae349d508c56fc85.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff32", + "slug": "braton_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BratonPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Braton Prime Barrel", + "icon": "items/images/en/braton_prime_barrel.ae229642d6179ebfb1547ed7d976e749.png", + "thumb": "items/images/en/thumbs/braton_prime_barrel.ae229642d6179ebfb1547ed7d976e749.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa30", + "slug": "purifying_flames", + "gameRef": "/Lotus/Powersuits/Ember/FireBlastPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ember" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Purifying Flames", + "icon": "items/images/en/purifying_flames.186bd104f40550d63859a61f3168f5e3.png", + "thumb": "items/images/en/thumbs/purifying_flames.186bd104f40550d63859a61f3168f5e3.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e3", + "slug": "overcharged", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/EnergyToOvershieldsOnSpawnMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Overcharged", + "icon": "items/images/en/overcharged.9457277e259da0727f6d4ceae945f2f4.png", + "thumb": "items/images/en/thumbs/overcharged.9457277e259da0727f6d4ceae945f2f4.128x128.png" + } + } + }, + { + "id": "57dbdc745e334907aa8edb60", + "slug": "elytron_wings_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/DemolitionArchwing/DemolitionArchwingWingsComponent", + "tags": [ + "archwing", + "component" + ], + "i18n": { + "en": { + "name": "Elytron Wings", + "icon": "items/images/en/elytron_wings_blueprint.971d1e23ad3033ff3af37147302efb8b.png", + "thumb": "items/images/en/thumbs/elytron_wings_blueprint.971d1e23ad3033ff3af37147302efb8b.128x128.png", + "subIcon": "sub_icons/archwing/generic_wings_128x128.png" + } + } + }, + { + "id": "5788fad54fff472f131a1360", + "slug": "mischief", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowDistractPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "smeeta_kavat" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mischief", + "icon": "items/images/en/mischief.ea4ad1cb83cc9c58f7a51df554177b12.png", + "thumb": "items/images/en/thumbs/mischief.ea4ad1cb83cc9c58f7a51df554177b12.128x128.png" + } + } + }, + { + "id": "57bc9c84e506eb45ea251455", + "slug": "tigris_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeTigris/PrimeTigris", + "tags": [ + "primary", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Tigris Prime Set", + "icon": "items/images/en/tigris_prime_set.5f82721ea78697c95208b9bceb72c4a4.png", + "thumb": "items/images/en/thumbs/tigris_prime_set.5f82721ea78697c95208b9bceb72c4a4.128x128.png" + } + } + }, + { + "id": "580e38faca550948410af0a7", + "slug": "shield_charger", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Events/CorpusArena/ShieldAuraPrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "robotic" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shield Charger", + "icon": "items/images/en/shield_charger.1546221ebdf55621fa89258271588896.png", + "thumb": "items/images/en/thumbs/shield_charger.1546221ebdf55621fa89258271588896.128x128.png" + } + } + }, + { + "id": "57dbdc525e334907aa8edb59", + "slug": "rakta_dark_dagger", + "gameRef": "/Lotus/Weapons/Syndicates/RedVeil/Melee/RVDarkDagger", + "tags": [ + "syndicate", + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Rakta Dark Dagger", + "icon": "items/images/en/rakta_dark_dagger.c59954c3d3a9a925e98caee4ac7d20af.png", + "thumb": "items/images/en/thumbs/rakta_dark_dagger.c59954c3d3a9a925e98caee4ac7d20af.128x128.png" + } + } + }, + { + "id": "580e392dca550948410af0aa", + "slug": "static_discharge", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/CorpusArena/ProvaCorpusArenaMod", + "tags": [ + "mod", + "prova", + "rare", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Static Discharge", + "icon": "items/images/en/static_discharge.d2cf544a23a502e675ccb784bf23b044.png", + "thumb": "items/images/en/thumbs/static_discharge.d2cf544a23a502e675ccb784bf23b044.128x128.png" + } + } + }, + { + "id": "580e392dca550948410af0ab", + "slug": "pain_threshold", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Events/AvatarStaggerRecoveryMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pain Threshold", + "icon": "items/images/en/pain_threshold.734138fbeec37d2b7f270d646283595e.png", + "thumb": "items/images/en/thumbs/pain_threshold.734138fbeec37d2b7f270d646283595e.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff56", + "slug": "paris_prime_string", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBowString", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Paris Prime String", + "icon": "items/images/en/paris_prime_string.971f957f8304ce10617836343d47b238.png", + "thumb": "items/images/en/thumbs/paris_prime_string.971f957f8304ce10617836343d47b238.128x128.png", + "subIcon": "sub_icons/weapon/prime_string_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d2", + "slug": "double_barrel_drift", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/MoreAccuracyLessRecoilSlidingShotgunMod", + "tags": [ + "primary", + "pvp", + "shotgun", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Double-Barrel Drift", + "icon": "items/images/en/double_barrel_drift.a4030814b2aeb34e8629164f2a96c5b0.png", + "thumb": "items/images/en/thumbs/double_barrel_drift.a4030814b2aeb34e8629164f2a96c5b0.128x128.png" + } + } + }, + { + "id": "591844575c170664fbd37eb3", + "slug": "gorgon_wraith_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/GorgonWraithBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gorgon Wraith Blueprint", + "icon": "items/images/en/gorgon_wraith_blueprint.2fe2c6cae89adbecbba049aafcd664d7.png", + "thumb": "items/images/en/thumbs/gorgon_wraith_blueprint.2fe2c6cae89adbecbba049aafcd664d7.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "56a7b2741133f656cb085d8a", + "slug": "argon_scope", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/CritChanceWhileAimingRifleMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Argon Scope", + "icon": "items/images/en/argon_scope.f59f66183ee3f605c51f28d68dfa6714.png", + "thumb": "items/images/en/thumbs/argon_scope.f59f66183ee3f605c51f28d68dfa6714.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d5", + "slug": "explosive_demise", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/ExplodeOnMeleeDeath", + "tags": [ + "mod", + "rare", + "pvp", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Explosive Demise", + "icon": "items/images/en/explosive_demise.b10b3c3c0c794946cc6c8078c220138c.png", + "thumb": "items/images/en/thumbs/explosive_demise.b10b3c3c0c794946cc6c8078c220138c.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff60", + "slug": "sicarus_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SicarusPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Sicarus Prime Receiver", + "icon": "items/images/en/sicarus_prime_receiver.e7c07172e6d63d49ae349d508c56fc85.png", + "thumb": "items/images/en/thumbs/sicarus_prime_receiver.e7c07172e6d63d49ae349d508c56fc85.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "571955a04445c3e28b80fc7d", + "slug": "mantis_engines_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/Mantys/MantysPowerCoreBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Mantis Engines Blueprint", + "icon": "items/images/en/mantis_engines.d4716b0defc2695308eb9b5a4b18d935.png", + "thumb": "items/images/en/thumbs/mantis_engines.d4716b0defc2695308eb9b5a4b18d935.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_core_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51559c", + "slug": "sure_shot", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponStunChanceMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sure Shot", + "icon": "items/images/en/sure_shot.d6761f1901d2e4f8f44d2616ddbb8d57.png", + "thumb": "items/images/en/thumbs/sure_shot.d6761f1901d2e4f8f44d2616ddbb8d57.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff43", + "slug": "glaive_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GlaivePrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Glaive Prime Blade", + "icon": "items/images/en/glaive_prime_blade.17767ab370f143a315df90177995ef92.png", + "thumb": "items/images/en/thumbs/glaive_prime_blade.17767ab370f143a315df90177995ef92.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "554d3d13e77989430b114cb2", + "slug": "sapping_reach", + "gameRef": "/Lotus/Powersuits/Mag/PullPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mag" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sapping Reach", + "icon": "items/images/en/sapping_reach.443c26cf9edee1c90fefca34a579609a.png", + "thumb": "items/images/en/thumbs/sapping_reach.443c26cf9edee1c90fefca34a579609a.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd899f", + "slug": "karak_wraith_set", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerM16Homage/KarakWraith", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Karak Wraith Set", + "icon": "items/images/en/karak_wraith_set.b26c71305a536b33e469bc4a8866adea.png", + "thumb": "items/images/en/thumbs/karak_wraith_set.b26c71305a536b33e469bc4a8866adea.128x128.png" + } + } + }, + { + "id": "573b802f0ec44a47787a6914", + "slug": "fragor_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeFragor/PrimeFragor", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Fragor Prime Set", + "icon": "items/images/en/fragor_prime_set.2b917b8a12f0981ff0a9a48c6c24edb1.png", + "thumb": "items/images/en/thumbs/fragor_prime_set.2b917b8a12f0981ff0a9a48c6c24edb1.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515626", + "slug": "crimson_dervish", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/CrimsonDervishMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "swords" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crimson Dervish", + "icon": "items/images/en/crimson_dervish.cbdbd8ebb0221bf67f7aacd3fa52ed7f.png", + "thumb": "items/images/en/thumbs/crimson_dervish.cbdbd8ebb0221bf67f7aacd3fa52ed7f.128x128.png" + } + } + }, + { + "id": "573b80450ec44a47787a6915", + "slug": "akstiletto_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AkstilettoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Akstiletto Prime Blueprint", + "icon": "items/images/en/akstiletto_prime_blueprint.a88c0a1e43ba462af7cc44efd01a7044.png", + "thumb": "items/images/en/thumbs/akstiletto_prime_blueprint.a88c0a1e43ba462af7cc44efd01a7044.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "573b804a0ec44a47787a6916", + "slug": "akstiletto_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkstilettoPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akstiletto Prime Barrel", + "icon": "items/images/en/akstiletto_prime_barrel.a88c0a1e43ba462af7cc44efd01a7044.png", + "thumb": "items/images/en/thumbs/akstiletto_prime_barrel.a88c0a1e43ba462af7cc44efd01a7044.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515627", + "slug": "deep_freeze", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponFreezeDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Deep Freeze", + "icon": "items/images/en/deep_freeze.337e20a21ade89374d13a36733da015f.png", + "thumb": "items/images/en/thumbs/deep_freeze.337e20a21ade89374d13a36733da015f.128x128.png" + } + } + }, + { + "id": "573b804f0ec44a47787a6917", + "slug": "akstiletto_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkstilettoPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akstiletto Prime Receiver", + "icon": "items/images/en/akstiletto_prime_receiver.a88c0a1e43ba462af7cc44efd01a7044.png", + "thumb": "items/images/en/thumbs/akstiletto_prime_receiver.a88c0a1e43ba462af7cc44efd01a7044.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515628", + "slug": "physique", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerHealthAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Physique", + "icon": "items/images/en/physique.51690dd724964ede7510962e6419f809.png", + "thumb": "items/images/en/thumbs/physique.51690dd724964ede7510962e6419f809.128x128.png" + } + } + }, + { + "id": "5a311f83c2c9e90dfff475d4", + "slug": "akbolto_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkboltoPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akbolto Prime Receiver", + "icon": "items/images/en/akbolto_prime_receiver.fdb7b0be60ed776a1ba1d800d7cda22b.png", + "thumb": "items/images/en/thumbs/akbolto_prime_receiver.fdb7b0be60ed776a1ba1d800d7cda22b.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff57", + "slug": "paris_prime_upper_limb", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBowUpperLimb", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Paris Prime Upper Limb", + "icon": "items/images/en/paris_prime_upper_limb.971f957f8304ce10617836343d47b238.png", + "thumb": "items/images/en/thumbs/paris_prime_upper_limb.971f957f8304ce10617836343d47b238.128x128.png", + "subIcon": "sub_icons/weapon/prime_limb_128x128.png" + } + } + }, + { + "id": "5a311f83c2c9e90dfff475d5", + "slug": "akbolto_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AkboltoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Akbolto Prime Blueprint", + "icon": "items/images/en/akbolto_prime_blueprint.fdb7b0be60ed776a1ba1d800d7cda22b.png", + "thumb": "items/images/en/thumbs/akbolto_prime_blueprint.fdb7b0be60ed776a1ba1d800d7cda22b.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec87", + "slug": "silva_and_aegis_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/SilvaAegisPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Silva & Aegis Prime Blueprint", + "icon": "items/images/en/silva_and_aegis_prime_blueprint.d226bbe86d3eccd8c751958dba46a4f6.png", + "thumb": "items/images/en/thumbs/silva_and_aegis_prime_blueprint.d226bbe86d3eccd8c751958dba46a4f6.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff5b", + "slug": "scindo_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeScindoBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Scindo Prime Blade", + "icon": "items/images/en/scindo_prime_blade.ae70ac90b811a44f64263394b6410c28.png", + "thumb": "items/images/en/thumbs/scindo_prime_blade.ae70ac90b811a44f64263394b6410c28.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c3119210f", + "slug": "euphona_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/Prime1HShotgunBarrel", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Euphona Prime Barrel", + "icon": "items/images/en/euphona_prime_barrel.6a18cc50c57ac13c3203e872baf85a8d.png", + "thumb": "items/images/en/thumbs/euphona_prime_barrel.6a18cc50c57ac13c3203e872baf85a8d.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff82", + "slug": "mag_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MagPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Mag Prime Blueprint", + "icon": "items/images/en/mag_prime_blueprint.2afb45373319b966737bd91cf05a813c.png", + "thumb": "items/images/en/thumbs/mag_prime_blueprint.2afb45373319b966737bd91cf05a813c.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "59e91860f25be4e10d36571d", + "slug": "furax_wraith_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/FuraxWraithBlueprint", + "tags": [ + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Furax Wraith Blueprint", + "icon": "items/images/en/furax_wraith_blueprint.c460830e1437c5ab3cd37e2ea51b09a9.png", + "thumb": "items/images/en/thumbs/furax_wraith_blueprint.c460830e1437c5ab3cd37e2ea51b09a9.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff79", + "slug": "frost_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/FrostPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Frost Prime Systems Blueprint", + "icon": "items/images/en/frost_prime_systems.4f8ff8605be1afaab9a0e5cc3c67cb21.png", + "thumb": "items/images/en/thumbs/frost_prime_systems.4f8ff8605be1afaab9a0e5cc3c67cb21.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "55c153c5e779895d82cf1c4f", + "slug": "ice_spring", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/IceParkourTwoMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Ice Spring", + "icon": "items/images/en/ice_spring.3c7ea2ed708eb1f062c9e571c6183575.png", + "thumb": "items/images/en/thumbs/ice_spring.3c7ea2ed708eb1f062c9e571c6183575.128x128.png" + } + } + }, + { + "id": "5754a316e701ef5844257daa", + "slug": "shattering_impact", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeArmorShatterMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shattering Impact", + "icon": "items/images/en/shattering_impact.6212f037b178c3980d8c9584ad966e42.png", + "thumb": "items/images/en/thumbs/shattering_impact.6212f037b178c3980d8c9584ad966e42.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515611", + "slug": "morphic_transformer", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitAbilityStrengthMod", + "tags": [ + "mod", + "archwing", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Morphic Transformer", + "icon": "items/images/en/morphic_transformer.5c74af04d0d892f78d2822cd84cf215e.png", + "thumb": "items/images/en/thumbs/morphic_transformer.5c74af04d0d892f78d2822cd84cf215e.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192115", + "slug": "helios_prime_cerebrum", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeHeliosCerebrum", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Helios Prime Cerebrum", + "icon": "items/images/en/helios_prime_cerebrum.625b7c74ea5dd61b1840f8094df7648a.png", + "thumb": "items/images/en/thumbs/helios_prime_cerebrum.625b7c74ea5dd61b1840f8094df7648a.128x128.png", + "subIcon": "sub_icons/sentinel/prime_cerebrum_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff54", + "slug": "paris_prime_lower_limb", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBowLowerLimb", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Paris Prime Lower Limb", + "icon": "items/images/en/paris_prime_lower_limb.971f957f8304ce10617836343d47b238.png", + "thumb": "items/images/en/thumbs/paris_prime_lower_limb.971f957f8304ce10617836343d47b238.128x128.png", + "subIcon": "sub_icons/weapon/prime_limb_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a524", + "slug": "triple_tap", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/MoreDamageonMultiHitRifleMod", + "tags": [ + "primary", + "burston", + "pvp", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Triple Tap", + "icon": "items/images/en/triple_tap.76f19f65c3581449abc56f3d8d743b6e.png", + "thumb": "items/images/en/thumbs/triple_tap.76f19f65c3581449abc56f3d8d743b6e.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51567a", + "slug": "malicious_raptor", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/ClawCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Malicious Raptor", + "icon": "items/images/en/malicious_raptor.501a9e285cf7f788e2a9b4678a38c367.png", + "thumb": "items/images/en/thumbs/malicious_raptor.501a9e285cf7f788e2a9b4678a38c367.128x128.png" + } + } + }, + { + "id": "554d3d13e77989430b114cb1", + "slug": "shield_of_shadows", + "gameRef": "/Lotus/Powersuits/Necro/CloneTheDeadAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nekros" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shield Of Shadows", + "icon": "items/images/en/shield_of_shadows.877c5c3618e4f49db59674559c69f807.png", + "thumb": "items/images/en/thumbs/shield_of_shadows.877c5c3618e4f49db59674559c69f807.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51567b", + "slug": "hollow_point", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/CorruptedCritDamagePistol", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hollow Point", + "icon": "items/images/en/hollow_point.47649c316b258dc9581f82fdfd8e1843.png", + "thumb": "items/images/en/thumbs/hollow_point.47649c316b258dc9581f82fdfd8e1843.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f1", + "slug": "enduring_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Channel/ChannelStatusMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Enduring Strike", + "icon": "items/images/en/enduring_strike.93c48a0ddaea440dc1801facbec301a5.png", + "thumb": "items/images/en/thumbs/enduring_strike.93c48a0ddaea440dc1801facbec301a5.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515699", + "slug": "sequence_burn", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/SpectraMod", + "tags": [ + "syndicate", + "secondary", + "mod", + "rare", + "spectra" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sequence Burn", + "icon": "items/images/en/sequence_burn.e9651c33bc02879c407f18d391667aa9.png", + "thumb": "items/images/en/thumbs/sequence_burn.e9651c33bc02879c407f18d391667aa9.128x128.png" + } + } + }, + { + "id": "571955784445c3e28b80fc79", + "slug": "xiphos_fuselage_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/Gyroscope/GyroscopeFuselageBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Xiphos Fuselage Blueprint", + "icon": "items/images/en/xiphos_fuselage.452dba7ad34799a24d7d72d8f5e206eb.png", + "thumb": "items/images/en/thumbs/xiphos_fuselage.452dba7ad34799a24d7d72d8f5e206eb.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_fuselage_128x128.png" + } + } + }, + { + "id": "5719559c4445c3e28b80fc7c", + "slug": "mantis_fuselage_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/Mantys/MantysExoskeletonBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Mantis Fuselage Blueprint", + "icon": "items/images/en/mantis_fuselage.d4716b0defc2695308eb9b5a4b18d935.png", + "thumb": "items/images/en/thumbs/mantis_fuselage.d4716b0defc2695308eb9b5a4b18d935.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_exoskeleton_128x128.png" + } + } + }, + { + "id": "56a7b2851133f656cb085d8d", + "slug": "bladed_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/CritDamageWhileAimingRifleMod", + "tags": [ + "rifle", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bladed Rounds", + "icon": "items/images/en/bladed_rounds.ef8baaa32b793cfea6ede28f48ec2dd9.png", + "thumb": "items/images/en/thumbs/bladed_rounds.ef8baaa32b793cfea6ede28f48ec2dd9.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515594", + "slug": "shred", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/ShredMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shred", + "icon": "items/images/en/shred.268f7dec2759ea43457995ca16deae78.png", + "thumb": "items/images/en/thumbs/shred.268f7dec2759ea43457995ca16deae78.128x128.png" + } + } + }, + { + "id": "571955a64445c3e28b80fc7e", + "slug": "mantis_avionics_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/Mantys/MantysStarChartBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Mantis Avionics Blueprint", + "icon": "items/images/en/mantis_avionics.d4716b0defc2695308eb9b5a4b18d935.png", + "thumb": "items/images/en/thumbs/mantis_avionics.d4716b0defc2695308eb9b5a4b18d935.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_chart_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515596", + "slug": "serration", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponDamageAmountMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Serration", + "icon": "items/images/en/serration.711b19665b2acbac445c68c9e8f8b550.png", + "thumb": "items/images/en/thumbs/serration.711b19665b2acbac445c68c9e8f8b550.128x128.png" + } + } + }, + { + "id": "551085c3e7798972ae2819db", + "slug": "arcane_healing", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/RadiationProcResist", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Healing", + "icon": "items/images/en/arcane_healing.acadb2bf20e9dad0e620e8641110a928.png", + "thumb": "items/images/en/thumbs/arcane_healing.acadb2bf20e9dad0e620e8641110a928.128x128.png" + } + } + }, + { + "id": "571955b44445c3e28b80fc7f", + "slug": "scimitar_fuselage_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/BlueSky/BlueSkyFuselageBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Scimitar Fuselage Blueprint", + "icon": "items/images/en/scimitar_fuselage.c8644ada3c4381efbe9a11b55c58b0a7.png", + "thumb": "items/images/en/thumbs/scimitar_fuselage.c8644ada3c4381efbe9a11b55c58b0a7.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_fuselage_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515599", + "slug": "quick_return", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveReflectionDecreaseMod", + "tags": [ + "mod", + "common", + "melee", + "thrown_melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Quick Return", + "icon": "items/images/en/quick_return.e623729d7ed1421d74a8971e1e6090d2.png", + "thumb": "items/images/en/thumbs/quick_return.e623729d7ed1421d74a8971e1e6090d2.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51559b", + "slug": "lightning_rod", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageResistanceElectricity", + "tags": [ + "mod", + "warframe", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Lightning Rod", + "icon": "items/images/en/lightning_rod.d7cb1098d167e8d17cadf6065eb99d34.png", + "thumb": "items/images/en/thumbs/lightning_rod.d7cb1098d167e8d17cadf6065eb99d34.128x128.png" + } + } + }, + { + "id": "551085f4e7798972d0eaf1ad", + "slug": "arcane_warmth", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/FreezeProcResist", + "tags": [ + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Warmth", + "icon": "items/images/en/arcane_warmth.2cc54a97fdce903163669b1e57e998ad.png", + "thumb": "items/images/en/thumbs/arcane_warmth.2cc54a97fdce903163669b1e57e998ad.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51560f", + "slug": "steel_charge", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerMeleeAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Steel Charge", + "icon": "items/images/en/steel_charge.4cb70155e437953e8949adb7ff8d23ad.png", + "thumb": "items/images/en/thumbs/steel_charge.4cb70155e437953e8949adb7ff8d23ad.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51559d", + "slug": "rage", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarDamageToEnergyMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rage", + "icon": "items/images/en/rage.e63c2a75f7d14084b7a976c736cfcac8.png", + "thumb": "items/images/en/thumbs/rage.e63c2a75f7d14084b7a976c736cfcac8.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f7", + "slug": "lasting_sting", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponProcTimeMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Lasting Sting", + "icon": "items/images/en/lasting_sting.ab8009693f998998e6ba9c8d2f650ca6.png", + "thumb": "items/images/en/thumbs/lasting_sting.ab8009693f998998e6ba9c8d2f650ca6.128x128.png" + } + } + }, + { + "id": "57dbdc525e334907aa8edb5a", + "slug": "sancti_magistar", + "gameRef": "/Lotus/Weapons/Syndicates/NewLoka/Melee/NLMagistar", + "tags": [ + "syndicate", + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Sancti Magistar", + "icon": "items/images/en/sancti_magistar.65c32b4c5b64ff010486af11e6c127c2.png", + "thumb": "items/images/en/thumbs/sancti_magistar.65c32b4c5b64ff010486af11e6c127c2.128x128.png" + } + } + }, + { + "id": "5758ad3042ba8659dde2f56f", + "slug": "emp_aura", + "gameRef": "/Lotus/Upgrades/Mods/Aura/RobotPoorAimAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "EMP Aura", + "icon": "items/images/en/emp_aura.aa7efec658337661aafa36bb82d83ac4.png", + "thumb": "items/images/en/thumbs/emp_aura.aa7efec658337661aafa36bb82d83ac4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b4", + "slug": "pacifying_bolts", + "gameRef": "/Lotus/Powersuits/Jade/DaggerAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nyx" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pacifying Bolts", + "icon": "items/images/en/pacifying_bolts.32b252d058ca581b2d51bc487a6d1679.png", + "thumb": "items/images/en/thumbs/pacifying_bolts.32b252d058ca581b2d51bc487a6d1679.128x128.png" + } + } + }, + { + "id": "5758adff42ba8659dde2f570", + "slug": "metal_fiber", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelArmourMod", + "tags": [ + "mod", + "common", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Metal Fiber", + "icon": "items/images/en/metal_fiber.5463bc0943078b78366f0c696701549e.png", + "thumb": "items/images/en/thumbs/metal_fiber.5463bc0943078b78366f0c696701549e.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b6", + "slug": "energy_amplifier", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitAbilityRangeMod", + "tags": [ + "mod", + "archwing", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Energy Amplifier", + "icon": "items/images/en/energy_amplifier.0c629d8c3ce1edff377a8760c90741f1.png", + "thumb": "items/images/en/thumbs/energy_amplifier.0c629d8c3ce1edff377a8760c90741f1.128x128.png" + } + } + }, + { + "id": "5c3892672cc6ce00f238139e", + "slug": "venari_bodyguard", + "gameRef": "/Lotus/Powersuits/Khora/KhoraKavatAugmentCard", + "tags": [ + "mod", + "khora", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Venari Bodyguard", + "icon": "items/images/en/venari_bodyguard.0b9253da43ec63860754522efae171e9.png", + "thumb": "items/images/en/thumbs/venari_bodyguard.0b9253da43ec63860754522efae171e9.128x128.png" + } + } + }, + { + "id": "5c1bd9fd14a8e4006b1dad51", + "slug": "virtuos_trojan", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorAmps/VoidToViralDamage", + "tags": [ + "operator", + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Virtuos Trojan", + "icon": "items/images/en/virtuos_trojan.9273040f27641c3064a2ad5933bbfe75.png", + "thumb": "items/images/en/thumbs/virtuos_trojan.9273040f27641c3064a2ad5933bbfe75.128x128.png" + } + } + }, + { + "id": "5cb04868fc2db2068006980c", + "slug": "blinding_reave", + "gameRef": "/Lotus/Powersuits/Revenant/RevenantAfflictionAugmentCard", + "tags": [ + "mod", + "revenant", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blinding Reave", + "icon": "items/images/en/blinding_reave.bc2092c3e7d7e1a2e48e64bee12547cd.png", + "thumb": "items/images/en/thumbs/blinding_reave.bc2092c3e7d7e1a2e48e64bee12547cd.128x128.png" + } + } + }, + { + "id": "5cb04868fc2db2068006980d", + "slug": "dread_ward", + "gameRef": "/Lotus/Powersuits/Garuda/GarudaShieldAugmentCard", + "tags": [ + "garuda", + "mod", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Dread Ward", + "icon": "items/images/en/dread_ward.4b98492ea6c4f8665ffeab29f180e535.png", + "thumb": "items/images/en/thumbs/dread_ward.4b98492ea6c4f8665ffeab29f180e535.128x128.png" + } + } + }, + { + "id": "5c8693d22cc6ce0bbc095d9c", + "slug": "prisma_grinlok", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerLeverActionRifle/PrismaGrinlokWeapon", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Prisma Grinlok", + "icon": "items/images/en/prisma_grinlok.eebf106cbbb7b962f75b00ce34cb4d20.png", + "thumb": "items/images/en/thumbs/prisma_grinlok.eebf106cbbb7b962f75b00ce34cb4d20.128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a1", + "slug": "equinox_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/EquinoxPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Equinox Prime Chassis Blueprint", + "icon": "items/images/en/equinox_prime_chassis.1163c3dad7a8ffce02af7d475fc0ccd4.png", + "thumb": "items/images/en/thumbs/equinox_prime_chassis.1163c3dad7a8ffce02af7d475fc0ccd4.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a7", + "slug": "stradavar_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/StradavarPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Stradavar Prime Blueprint", + "icon": "items/images/en/stradavar_prime_blueprint.57c042a30996514288dfd70f2ce267ca.png", + "thumb": "items/images/en/thumbs/stradavar_prime_blueprint.57c042a30996514288dfd70f2ce267ca.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54aae25de7798968b372a4e1", + "slug": "vaykor_marelok", + "gameRef": "/Lotus/Weapons/Syndicates/SteelMeridian/Pistols/SMMarelok", + "tags": [ + "syndicate", + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Vaykor Marelok", + "icon": "items/images/en/vaykor_marelok.592a0473da4aaf70a4864b0ca864a17f.png", + "thumb": "items/images/en/thumbs/vaykor_marelok.592a0473da4aaf70a4864b0ca864a17f.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f2", + "slug": "serrated_rounds", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/DamageBiasSlashRifleMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "rifle", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Serrated Rounds", + "icon": "items/images/en/serrated_rounds.e2d6ee028dbe85ce258f142b8fc9b072.png", + "thumb": "items/images/en/thumbs/serrated_rounds.e2d6ee028dbe85ce258f142b8fc9b072.128x128.png" + } + } + }, + { + "id": "5719557e4445c3e28b80fc7a", + "slug": "xiphos_engines_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/Gyroscope/GyroscopeEnginesBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Xiphos Engines Blueprint", + "icon": "items/images/en/xiphos_engines.452dba7ad34799a24d7d72d8f5e206eb.png", + "thumb": "items/images/en/thumbs/xiphos_engines.452dba7ad34799a24d7d72d8f5e206eb.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_engines_128x128.png" + } + } + }, + { + "id": "5e839494267539077b0dd6b8", + "slug": "titania_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TitaniaPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Titania Prime Neuroptics Blueprint", + "icon": "items/images/en/titania_prime_neuroptics.d783da2b4926bc3760d50bba21eff7db.png", + "thumb": "items/images/en/thumbs/titania_prime_neuroptics.d783da2b4926bc3760d50bba21eff7db.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5e839494267539077b0dd6ba", + "slug": "pangolin_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PangolinPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Pangolin Prime Blade", + "icon": "items/images/en/pangolin_prime_blade.0b93ac58408417e3f8646ccf1fb5a77e.png", + "thumb": "items/images/en/thumbs/pangolin_prime_blade.0b93ac58408417e3f8646ccf1fb5a77e.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5e839495267539077b0dd6c9", + "slug": "pangolin_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimePangolinSword/PrimePangolinSword", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Pangolin Prime Set", + "icon": "items/images/en/pangolin_prime_set.0b93ac58408417e3f8646ccf1fb5a77e.png", + "thumb": "items/images/en/thumbs/pangolin_prime_set.0b93ac58408417e3f8646ccf1fb5a77e.128x128.png" + } + } + }, + { + "id": "5e839495267539077b0dd6cc", + "slug": "titania_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TitaniaPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Titania Prime Blueprint", + "icon": "items/images/en/titania_prime_blueprint.d783da2b4926bc3760d50bba21eff7db.png", + "thumb": "items/images/en/thumbs/titania_prime_blueprint.d783da2b4926bc3760d50bba21eff7db.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5e839495267539077b0dd6ce", + "slug": "revo_reducer", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Piloting/LavanMultiToolPower", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Revo Reducer", + "icon": "items/images/en/revo_reducer.1191aed6123fad0872cba7bed8d3916f.png", + "thumb": "items/images/en/thumbs/revo_reducer.1191aed6123fad0872cba7bed8d3916f.128x128.png" + } + } + }, + { + "id": "5e839495267539077b0dd6d1", + "slug": "sentient_scalpel", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarSentientKiller", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sentient Scalpel", + "icon": "items/images/en/sentient_scalpel.2a05327a670da6dbe3452a9d371ac016.png", + "thumb": "items/images/en/thumbs/sentient_scalpel.2a05327a670da6dbe3452a9d371ac016.128x128.png" + } + } + }, + { + "id": "5e839496267539077b0dd6d3", + "slug": "titania_prime_set", + "gameRef": "/Lotus/Powersuits/Fairy/TitaniaPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Titania Prime Set", + "icon": "items/images/en/titania_prime_set.d783da2b4926bc3760d50bba21eff7db.png", + "thumb": "items/images/en/thumbs/titania_prime_set.d783da2b4926bc3760d50bba21eff7db.128x128.png" + } + } + }, + { + "id": "5ea087d1c160d001303f9ed7", + "slug": "tribunal", + "gameRef": "/Lotus/Powersuits/Priest/PriestCondemnAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "harrow" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tribunal", + "icon": "items/images/en/tribunal.1449ca76eea7cb66e7d89d2d2b19b9ae.png", + "thumb": "items/images/en/thumbs/tribunal.1449ca76eea7cb66e7d89d2d2b19b9ae.128x128.png" + } + } + }, + { + "id": "5ea087d1c160d001303f9ed8", + "slug": "catapult", + "gameRef": "/Lotus/Powersuits/Devourer/DevourerBowlAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "grendel" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Catapult", + "icon": "items/images/en/catapult.8f97b9f8513251cfc346f1fc514da45c.png", + "thumb": "items/images/en/thumbs/catapult.8f97b9f8513251cfc346f1fc514da45c.128x128.png" + } + } + }, + { + "id": "5ea087d2c160d001303f9ed9", + "slug": "blazing_pillage", + "gameRef": "/Lotus/Powersuits/IronFrame/IronFrameStripAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "hildryn" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blazing Pillage", + "icon": "items/images/en/blazing_pillage.4896fadb52f2709ef2a7a308e33736da.png", + "thumb": "items/images/en/thumbs/blazing_pillage.4896fadb52f2709ef2a7a308e33736da.128x128.png" + } + } + }, + { + "id": "5ea087d3c160d001303f9eda", + "slug": "spellbound_harvest", + "gameRef": "/Lotus/Powersuits/Fairy/FairyDustAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "titania" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Spellbound Harvest", + "icon": "items/images/en/spellbound_harvest.1451464708364cbf010df03c6b0c5cde.png", + "thumb": "items/images/en/thumbs/spellbound_harvest.1451464708364cbf010df03c6b0c5cde.128x128.png" + } + } + }, + { + "id": "5eadc6bc04d55c027d23a6dd", + "slug": "cruising_speed", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Piloting/ZektiNonCombatSpeed", + "tags": [ + "railjack", + "uncommon", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Cruising Speed", + "icon": "items/images/en/cruising_speed.8567467878d56c61f49ec814271f4b4e.png", + "thumb": "items/images/en/thumbs/cruising_speed.8567467878d56c61f49ec814271f4b4e.128x128.png" + } + } + }, + { + "id": "5eadc6bf04d55c027d23a6de", + "slug": "artillery_cheap_shot", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/ZektiFreeSuperWeaponAmmo", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Artillery Cheap Shot", + "icon": "items/images/en/artillery_cheap_shot.f3bd4337b0f4d80f588fde1912aa9360.png", + "thumb": "items/images/en/thumbs/artillery_cheap_shot.f3bd4337b0f4d80f588fde1912aa9360.128x128.png" + } + } + }, + { + "id": "5eadc6bf04d55c027d23a6df", + "slug": "turret_velocity", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarTurretRangeAndSpeed", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Turret Velocity", + "icon": "items/images/en/turret_velocity.1cbc2123b1c3726a810cefc200b56bef.png", + "thumb": "items/images/en/thumbs/turret_velocity.1cbc2123b1c3726a810cefc200b56bef.128x128.png" + } + } + }, + { + "id": "5eadc6c004d55c027d23a6e0", + "slug": "ordnance_cheap_shot", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanFreeOrdnanceAmmo", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ordnance Cheap Shot", + "icon": "items/images/en/ordnance_cheap_shot.6c5251bcc013440c63e47dcb1f2887b6.png", + "thumb": "items/images/en/thumbs/ordnance_cheap_shot.6c5251bcc013440c63e47dcb1f2887b6.128x128.png" + } + } + }, + { + "id": "5eadc6c604d55c027d23a6e2", + "slug": "ballista_measure", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleRangeMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ballista Measure", + "icon": "items/images/en/ballista_measure.87c7898b527e48bb7df8ed0ed3a9925e.png", + "thumb": "items/images/en/thumbs/ballista_measure.87c7898b527e48bb7df8ed0ed3a9925e.128x128.png" + } + } + }, + { + "id": "5eadc6c604d55c027d23a6e3", + "slug": "quicklock", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanFastOrdnanceLock", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Quicklock", + "icon": "items/images/en/quicklock.6f7b830f3af18ed289b9507e709cef5c.png", + "thumb": "items/images/en/thumbs/quicklock.6f7b830f3af18ed289b9507e709cef5c.128x128.png" + } + } + }, + { + "id": "5eb5e49904d55c04e80d6a7f", + "slug": "ordnance_velocity", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanOrdnanceSpeed", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ordnance Velocity", + "icon": "items/images/en/ordnance_velocity.8ea7d91c7814f39f38d25782c75b00d3.png", + "thumb": "items/images/en/thumbs/ordnance_velocity.8ea7d91c7814f39f38d25782c75b00d3.128x128.png" + } + } + }, + { + "id": "5eb5e49a04d55c04e80d6a80", + "slug": "primed_cleanse_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponShotgunFactionDamageGrineerExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Cleanse Grineer", + "icon": "items/images/en/primed_cleanse_grineer.58b58698d52bfa948c0b10130787bd2b.png", + "thumb": "items/images/en/thumbs/primed_cleanse_grineer.58b58698d52bfa948c0b10130787bd2b.128x128.png" + } + } + }, + { + "id": "5eb5e49b04d55c04e80d6a81", + "slug": "primed_cleanse_infested", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponShotgunFactionDamageInfestedExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Cleanse Infested", + "icon": "items/images/en/primed_cleanse_infested.e08c5946ac81b9b21153eb675c9b30f0.png", + "thumb": "items/images/en/thumbs/primed_cleanse_infested.e08c5946ac81b9b21153eb675c9b30f0.128x128.png" + } + } + }, + { + "id": "5eb5e49c04d55c04e80d6a82", + "slug": "primed_cleanse_corpus", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponShotgunFactionDamageCorpusExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Cleanse Corpus", + "icon": "items/images/en/primed_cleanse_corpus.664f038307f6f3c9b8fedf14bc76896b.png", + "thumb": "items/images/en/thumbs/primed_cleanse_corpus.664f038307f6f3c9b8fedf14bc76896b.128x128.png" + } + } + }, + { + "id": "5eb5e49d04d55c04e80d6a83", + "slug": "primed_cleanse_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponShotgunFactionDamageCorruptedExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Cleanse Orokin", + "icon": "items/images/en/primed_cleanse_corrupted.d9801706fa8ef1720484d7b1c37107fe.png", + "thumb": "items/images/en/thumbs/primed_cleanse_corrupted.d9801706fa8ef1720484d7b1c37107fe.128x128.png" + } + } + }, + { + "id": "5ecd08d704d55c0806f85348", + "slug": "abundant_mutation", + "gameRef": "/Lotus/Powersuits/Infestation/InfestPassiveAugmentCard", + "tags": [ + "mod", + "nidus", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Abundant Mutation", + "icon": "items/images/en/abundant_mutation.a7d69a73522f536dedb348626a8efdfc.png", + "thumb": "items/images/en/thumbs/abundant_mutation.a7d69a73522f536dedb348626a8efdfc.128x128.png" + } + } + }, + { + "id": "5ecd08d704d55c0806f8534a", + "slug": "dizzying_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Nightwave/BroncoNightwaveMod", + "tags": [ + "mod", + "bronco", + "rare", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Dizzying Rounds", + "icon": "items/images/en/dizzying_rounds.0a2cc2262a8179f49ddd6073f51f5f42.png", + "thumb": "items/images/en/thumbs/dizzying_rounds.0a2cc2262a8179f49ddd6073f51f5f42.128x128.png" + } + } + }, + { + "id": "5ecd08d804d55c0806f8534c", + "slug": "revealing_spores", + "gameRef": "/Lotus/Powersuits/Saryn/PoisonAugmentTwoCard", + "tags": [ + "mod", + "saryn", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Revealing Spores", + "icon": "items/images/en/revealing_spores.255124e5a65762daa4ad1f9c3c1d2514.png", + "thumb": "items/images/en/thumbs/revealing_spores.255124e5a65762daa4ad1f9c3c1d2514.128x128.png" + } + } + }, + { + "id": "5ecd08d804d55c0806f8534f", + "slug": "enraged", + "gameRef": "/Lotus/Powersuits/Berserker/LastStandAugmentTwoCard", + "tags": [ + "mod", + "valkyr", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Enraged", + "icon": "items/images/en/enraged.8614727ce128359c57518c32c32ee170.png", + "thumb": "items/images/en/thumbs/enraged.8614727ce128359c57518c32c32ee170.128x128.png" + } + } + }, + { + "id": "5ecd08d804d55c0806f85350", + "slug": "rubble_heap", + "gameRef": "/Lotus/Powersuits/Brawler/BrawlerPassiveAugmentCard", + "tags": [ + "atlas", + "mod", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rubble Heap", + "icon": "items/images/en/rubble_heap.7f5b7428c97adf59f74b621da8543e7d.png", + "thumb": "items/images/en/thumbs/rubble_heap.7f5b7428c97adf59f74b621da8543e7d.128x128.png" + } + } + }, + { + "id": "5ecd08d804d55c0806f85351", + "slug": "precision_strike", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Arbitration/GrnGrenadeLauncherArbitrationMod", + "tags": [ + "tonkor", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Precision Strike", + "icon": "items/images/en/precision_strike.14f3667f16001c975dea86b16c7fe074.png", + "thumb": "items/images/en/thumbs/precision_strike.14f3667f16001c975dea86b16c7fe074.128x128.png" + } + } + }, + { + "id": "5ecd08d904d55c0806f85354", + "slug": "deadly_maneuvers", + "gameRef": "/Lotus/Upgrades/Mods/Nightwave/MagnusNightwaveMod", + "tags": [ + "mod", + "magnus", + "rare", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Deadly Maneuvers", + "icon": "items/images/en/deadly_maneuvers.3ac5a36b89de17b9197e735ebf255671.png", + "thumb": "items/images/en/thumbs/deadly_maneuvers.3ac5a36b89de17b9197e735ebf255671.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c3119210a", + "slug": "banshee_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BansheePrimeBlueprint", + "tags": [ + "warframe", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Banshee Prime Blueprint", + "icon": "items/images/en/banshee_prime_blueprint.a0956816beb733841bce57e69a568cd6.png", + "thumb": "items/images/en/thumbs/banshee_prime_blueprint.a0956816beb733841bce57e69a568cd6.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5814b1f2ca550948410af0ae", + "slug": "chilling_reload", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/ColdDmgReloadSpeedMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Chilling Reload", + "icon": "items/images/en/chilling_reload.92fc3f47e6bbe5bd696d4cdb7abf9f40.png", + "thumb": "items/images/en/thumbs/chilling_reload.92fc3f47e6bbe5bd696d4cdb7abf9f40.128x128.png" + } + } + }, + { + "id": "5814b1f2ca550948410af0ac", + "slug": "streamlined_form", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/HolsterSpeedSlideBoostMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Streamlined Form", + "icon": "items/images/en/streamlined_form.693b57cfee5a66e6e9fb2a2dd5621ff4.png", + "thumb": "items/images/en/thumbs/streamlined_form.693b57cfee5a66e6e9fb2a2dd5621ff4.128x128.png" + } + } + }, + { + "id": "5814b1f2ca550948410af0ad", + "slug": "drifting_contact", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/ComboTimeStatusChanceMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Drifting Contact", + "icon": "items/images/en/drifting_contact.6d7d0f454d97b9a7427eaa9c54e58a60.png", + "thumb": "items/images/en/thumbs/drifting_contact.6d7d0f454d97b9a7427eaa9c54e58a60.128x128.png" + } + } + }, + { + "id": "58358a092c2ada0047b386f8", + "slug": "valkyr_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ValkyrPrimeChassisBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Valkyr Prime Chassis Blueprint", + "icon": "items/images/en/valkyr_prime_chassis.a5c906d66a11ff70158f0ffad0c628e8.png", + "thumb": "items/images/en/thumbs/valkyr_prime_chassis.a5c906d66a11ff70158f0ffad0c628e8.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "581d0c4ed5f9e290fa2e959f", + "slug": "primed_cryo_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/WeaponFreezeDamageModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Cryo Rounds", + "icon": "items/images/en/primed_cryo_rounds.6f4f3f7dd369e80de462cac282f21d63.png", + "thumb": "items/images/en/thumbs/primed_cryo_rounds.6f4f3f7dd369e80de462cac282f21d63.128x128.png" + } + } + }, + { + "id": "582b0f870af25410b099f7fc", + "slug": "centaur_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/Archswordandshield/ArchSwordShield", + "tags": [ + "weapon", + "set", + "melee", + "archwing" + ], + "i18n": { + "en": { + "name": "Centaur Set", + "icon": "items/images/en/centaur_set.7365135b7b3831714b657721d6b1df22.png", + "thumb": "items/images/en/thumbs/centaur_set.7365135b7b3831714b657721d6b1df22.128x128.png" + } + } + }, + { + "id": "582b0f880af25410b099f7fd", + "slug": "onorix_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/Archaxe/ArchAxeWeapon", + "tags": [ + "weapon", + "set", + "melee", + "archwing" + ], + "i18n": { + "en": { + "name": "Onorix Set", + "icon": "items/images/en/onorix_set.04c7efcf7c6239c88c275d164d6a259a.png", + "thumb": "items/images/en/thumbs/onorix_set.04c7efcf7c6239c88c275d164d6a259a.128x128.png" + } + } + }, + { + "id": "582b0f890af25410b099f7fe", + "slug": "agkuza_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/ArchSwordHook/ArchHookSwordWeapon", + "tags": [ + "weapon", + "set", + "melee", + "archwing" + ], + "i18n": { + "en": { + "name": "Agkuza Set", + "icon": "items/images/en/agkuza_set.037f45c1777df3ce5657b0c40aac04b1.png", + "thumb": "items/images/en/thumbs/agkuza_set.037f45c1777df3ce5657b0c40aac04b1.128x128.png" + } + } + }, + { + "id": "58446fb92c2ada005dc7d047", + "slug": "healing_return", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponHealOnHitEnemyWithProc", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Healing Return", + "icon": "items/images/en/healing_return.13b2e24d7cb121e2b64c8b4eb7c71d7e.png", + "thumb": "items/images/en/thumbs/healing_return.13b2e24d7cb121e2b64c8b4eb7c71d7e.128x128.png" + } + } + }, + { + "id": "582b0f890af25410b099f7ff", + "slug": "corvas_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/LaunchGrenade/ArchCannon", + "tags": [ + "weapon", + "set", + "primary", + "archwing" + ], + "i18n": { + "en": { + "name": "Corvas Set", + "icon": "items/images/en/corvas_set.0248b2ad006d7ad6a460cc03eac4baa7.png", + "thumb": "items/images/en/thumbs/corvas_set.0248b2ad006d7ad6a460cc03eac4baa7.128x128.png" + } + } + }, + { + "id": "58446fd52c2ada006a40630c", + "slug": "reinforcing_stomp", + "gameRef": "/Lotus/Powersuits/Rhino/RhinoStompAugmentCard", + "tags": [ + "mod", + "warframe", + "rare", + "rhino" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Reinforcing Stomp", + "icon": "items/images/en/reinforcing_stomp.0437d19bb098f84f2f1b91bc00bae7f5.png", + "thumb": "items/images/en/thumbs/reinforcing_stomp.0437d19bb098f84f2f1b91bc00bae7f5.128x128.png" + } + } + }, + { + "id": "582b0f8a0af25410b099f800", + "slug": "rathbone_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/ArchHammer/ArchHammer", + "tags": [ + "weapon", + "set", + "melee", + "archwing" + ], + "i18n": { + "en": { + "name": "Rathbone Set", + "icon": "items/images/en/rathbone_set.7e6a0db9a09fae95a9f6a4e96b1f0979.png", + "thumb": "items/images/en/thumbs/rathbone_set.7e6a0db9a09fae95a9f6a4e96b1f0979.128x128.png" + } + } + }, + { + "id": "58446ffa2c2ada0071154b52", + "slug": "relentless_combination", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeComboChanceFromDot", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Relentless Combination", + "icon": "items/images/en/relentless_combination.1c8cacce7f4d841b2471013085cde633.png", + "thumb": "items/images/en/thumbs/relentless_combination.1c8cacce7f4d841b2471013085cde633.128x128.png" + } + } + }, + { + "id": "583580d52c2ada003badef85", + "slug": "cernos_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeCernosBlueprint", + "tags": [ + "primary", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cernos Prime Blueprint", + "icon": "items/images/en/cernos_prime_blueprint.b3ac02e80ee17cc0756348f1d04b69cc.png", + "thumb": "items/images/en/thumbs/cernos_prime_blueprint.b3ac02e80ee17cc0756348f1d04b69cc.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "583580e12c2ada003badef86", + "slug": "cernos_prime_lower_limb", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCernosLowerLimb", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Cernos Prime Lower Limb", + "icon": "items/images/en/cernos_prime_lower_limb.b3ac02e80ee17cc0756348f1d04b69cc.png", + "thumb": "items/images/en/thumbs/cernos_prime_lower_limb.b3ac02e80ee17cc0756348f1d04b69cc.128x128.png", + "subIcon": "sub_icons/weapon/prime_limb_128x128.png" + } + } + }, + { + "id": "583580f42c2ada003badef87", + "slug": "cernos_prime_upper_limb", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCernosUpperLimb", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Cernos Prime Upper Limb", + "icon": "items/images/en/cernos_prime_upper_limb.b3ac02e80ee17cc0756348f1d04b69cc.png", + "thumb": "items/images/en/thumbs/cernos_prime_upper_limb.b3ac02e80ee17cc0756348f1d04b69cc.128x128.png", + "subIcon": "sub_icons/weapon/prime_limb_128x128.png" + } + } + }, + { + "id": "583580fb2c2ada003badef88", + "slug": "cernos_prime_grip", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCernosGrip", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Cernos Prime Grip", + "icon": "items/images/en/cernos_prime_grip.b3ac02e80ee17cc0756348f1d04b69cc.png", + "thumb": "items/images/en/thumbs/cernos_prime_grip.b3ac02e80ee17cc0756348f1d04b69cc.128x128.png", + "subIcon": "sub_icons/weapon/prime_grip_128x128.png" + } + } + }, + { + "id": "58446f192c2ada003b4d4ffc", + "slug": "condition_overload", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponDamageIfVictimProcActive", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Condition Overload", + "icon": "items/images/en/condition_overload.fe7962221a25bc6305bbad0dc925e38b.png", + "thumb": "items/images/en/thumbs/condition_overload.fe7962221a25bc6305bbad0dc925e38b.128x128.png" + } + } + }, + { + "id": "58446f502c2ada0042b6fc3d", + "slug": "viral_tempest", + "gameRef": "/Lotus/Powersuits/Pirate/CannonBarrageAugmentCard", + "tags": [ + "mod", + "warframe", + "rare", + "hydroid" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Viral Tempest", + "icon": "items/images/en/corroding_barrage.98840ac4923a0115b6d43b24f745e34e.png", + "thumb": "items/images/en/thumbs/corroding_barrage.98840ac4923a0115b6d43b24f745e34e.128x128.png" + } + } + }, + { + "id": "58446f672c2ada00485f0fce", + "slug": "dispatch_overdrive", + "gameRef": "/Lotus/Upgrades/Mods/Melee/MoveSpeedOnChannelKillMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Dispatch Overdrive", + "icon": "items/images/en/dispatch_overdrive.26aea9b40f1e9d1ffec5f83a7bff5fad.png", + "thumb": "items/images/en/thumbs/dispatch_overdrive.26aea9b40f1e9d1ffec5f83a7bff5fad.128x128.png" + } + } + }, + { + "id": "58446f9e2c2ada004feb21c4", + "slug": "enduring_affliction", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Channel/ChannelProcTimeExtendOnHitMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Enduring Affliction", + "icon": "items/images/en/enduring_affliction.65de25321ebf94dc05833a8e57239202.png", + "thumb": "items/images/en/thumbs/enduring_affliction.65de25321ebf94dc05833a8e57239202.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51561c", + "slug": "pistol_scavenger", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerPistolAmmoAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pistol Scavenger", + "icon": "items/images/en/pistol_scavenger.361d33e42d0486d33b0806612f834758.png", + "thumb": "items/images/en/thumbs/pistol_scavenger.361d33e42d0486d33b0806612f834758.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89b3", + "slug": "wyrm_prime_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeWyrmPowerSuit", + "tags": [ + "sentinel", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Wyrm Prime Set", + "icon": "items/images/en/wyrm_prime_set.4da3da5cc8eeef554dc3208bbb5a8f26.png", + "thumb": "items/images/en/thumbs/wyrm_prime_set.4da3da5cc8eeef554dc3208bbb5a8f26.128x128.png" + } + } + }, + { + "id": "567872299906166591f69a9b", + "slug": "naramon_transmute_core", + "gameRef": "/Lotus/Upgrades/Mods/TransmuteCores/TacticTransmuteCore", + "tags": [ + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "Naramon Transmute Core", + "icon": "items/images/en/naramon_transmute_core.b0d18cc44f9794f22d441ca8aa499d4f.png", + "thumb": "items/images/en/thumbs/naramon_transmute_core.b0d18cc44f9794f22d441ca8aa499d4f.128x128.png" + } + } + }, + { + "id": "5678722e9906166591f69a9c", + "slug": "vazarin_transmute_core", + "gameRef": "/Lotus/Upgrades/Mods/TransmuteCores/DefenseTransmuteCore", + "tags": [ + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "Vazarin Transmute Core", + "icon": "items/images/en/vazarin_transmute_core.6ffe9f46821c5f74f31505452e02f314.png", + "thumb": "items/images/en/thumbs/vazarin_transmute_core.6ffe9f46821c5f74f31505452e02f314.128x128.png" + } + } + }, + { + "id": "567872749906166591f69a9d", + "slug": "vengeful_revenant", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/StalkerSwordMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "swords" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vengeful Revenant", + "icon": "items/images/en/vengeful_revenant.40b0e3ea102d10548b33641c310851c2.png", + "thumb": "items/images/en/thumbs/vengeful_revenant.40b0e3ea102d10548b33641c310851c2.128x128.png" + } + } + }, + { + "id": "588a789c3cf52c408a2f88dc", + "slug": "astral_autopsy", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingMeleeScanOnKillMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "i18n": { + "en": { + "name": "Astral Autopsy", + "icon": "items/images/en/astral_autopsy.82ebcf9eb4a7b94e04806f6fb9267f3f.png", + "thumb": "items/images/en/thumbs/astral_autopsy.82ebcf9eb4a7b94e04806f6fb9267f3f.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf06d", + "slug": "ergos_boardroom_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicatePerrin", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Ergo's Boardroom Scene", + "icon": "items/images/en/ergos_boardroom_scene.1414f03ad87608a82dd1569804e2c2b3.png", + "thumb": "items/images/en/thumbs/ergos_boardroom_scene.1414f03ad87608a82dd1569804e2c2b3.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4c7", + "slug": "agile_aim", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/FasterMovementWhileAimingRifleMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "rifle", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Agile Aim", + "icon": "items/images/en/agile_aim.2c304bc0bd60d75ec6a92325f71692fb.png", + "thumb": "items/images/en/thumbs/agile_aim.2c304bc0bd60d75ec6a92325f71692fb.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4c9", + "slug": "anticipation", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/StaggerImmunityMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Anticipation", + "icon": "items/images/en/anticipation.881bb001c85c0b9000f0f9171738053b.png", + "thumb": "items/images/en/thumbs/anticipation.881bb001c85c0b9000f0f9171738053b.128x128.png" + } + } + }, + { + "id": "59ecb5d7195d2301e654749c", + "slug": "plains_of_eidolon_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileEidolonLandscape", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Plains Of Eidolon Scene", + "icon": "items/images/en/plains_of_eidolon_scene.12c5743cf544e8d8ce1d8d147fdedbda.png", + "thumb": "items/images/en/thumbs/plains_of_eidolon_scene.12c5743cf544e8d8ce1d8d147fdedbda.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f4", + "slug": "shred_shot", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/DamageBiasPunctureShotgunMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shred Shot", + "icon": "items/images/en/shred_shot.6c54abde2f2a72ce7c5b88ac37500cc3.png", + "thumb": "items/images/en/thumbs/shred_shot.6c54abde2f2a72ce7c5b88ac37500cc3.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff39", + "slug": "burston_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BurstonPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Burston Prime Barrel", + "icon": "items/images/en/burston_prime_barrel.9fc6c6a6dca24113027828df669cd89e.png", + "thumb": "items/images/en/thumbs/burston_prime_barrel.9fc6c6a6dca24113027828df669cd89e.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178a6", + "slug": "ice_wave_impedance", + "gameRef": "/Lotus/Powersuits/Frost/IceSpikeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "frost" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ice Wave Impedance", + "icon": "items/images/en/ice_wave_impedance.7aad38b80dd0780a01a97db1f9f9668c.png", + "thumb": "items/images/en/thumbs/ice_wave_impedance.7aad38b80dd0780a01a97db1f9f9668c.128x128.png" + } + } + }, + { + "id": "55158ce0e7798915f4c95b78", + "slug": "volt_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VoltPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Volt Prime Systems Blueprint", + "icon": "items/images/en/volt_prime_systems.9481daa3eb02aaec1108cdbeeaeea159.png", + "thumb": "items/images/en/thumbs/volt_prime_systems.9481daa3eb02aaec1108cdbeeaeea159.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff3d", + "slug": "dakra_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCronusLongSwordBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dakra Prime Blade", + "icon": "items/images/en/dakra_prime_blade.785a613039ec892abc579c176f0b33da.png", + "thumb": "items/images/en/thumbs/dakra_prime_blade.785a613039ec892abc579c176f0b33da.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff45", + "slug": "glaive_prime_disc", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GlaivePrimeDisc", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Glaive Prime Disc", + "icon": "items/images/en/glaive_prime_disc.17767ab370f143a315df90177995ef92.png", + "thumb": "items/images/en/thumbs/glaive_prime_disc.17767ab370f143a315df90177995ef92.128x128.png", + "subIcon": "sub_icons/weapon/prime_disc_128x128.png" + } + } + }, + { + "id": "57e91e65c76eb74c087f492e", + "slug": "ayatan_ayr_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexB", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxCyanStars": 3, + "baseEndo": 325, + "endoMultiplier": 2, + "i18n": { + "en": { + "name": "Ayatan Ayr Sculpture", + "icon": "items/images/en/ayatan_ayr_sculpture.d5a5347b24a6ec864ce17552ba108ad7.png", + "thumb": "items/images/en/thumbs/ayatan_ayr_sculpture.d5a5347b24a6ec864ce17552ba108ad7.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515677", + "slug": "stretch", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarAbilityRangeMod", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Stretch", + "icon": "items/images/en/stretch.30c7eb47f785ff9f6b34e46af31d02d8.png", + "thumb": "items/images/en/thumbs/stretch.30c7eb47f785ff9f6b34e46af31d02d8.128x128.png" + } + } + }, + { + "id": "5783bf5ed9b6753790c89e99", + "slug": "agkuza_guard", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchHookSwordGuard", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Agkuza Guard", + "icon": "items/images/en/agkuza_guard.037f45c1777df3ce5657b0c40aac04b1.png", + "thumb": "items/images/en/thumbs/agkuza_guard.037f45c1777df3ce5657b0c40aac04b1.128x128.png", + "subIcon": "sub_icons/weapon/generic_guard_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155c6", + "slug": "intensify", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarAbilityStrengthMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Intensify", + "icon": "items/images/en/intensify.e4e6b7e4be58a58a571c1175ef4a634c.png", + "thumb": "items/images/en/thumbs/intensify.e4e6b7e4be58a58a571c1175ef4a634c.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a511", + "slug": "heavy_warhead", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/BiggerRadiusSlowerVelocityPistolMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Heavy Warhead", + "icon": "items/images/en/heavy_warhead.f6463d740768ab98091869aa34de1698.png", + "thumb": "items/images/en/thumbs/heavy_warhead.f6463d740768ab98091869aa34de1698.128x128.png" + } + } + }, + { + "id": "5667568ff9001cd2824a682b", + "slug": "karak_wraith_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KarakWraithStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Karak Wraith Stock", + "icon": "items/images/en/karak_wraith_stock.b26c71305a536b33e469bc4a8866adea.png", + "thumb": "items/images/en/thumbs/karak_wraith_stock.b26c71305a536b33e469bc4a8866adea.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "567872239906166591f69a9a", + "slug": "madurai_transmute_core", + "gameRef": "/Lotus/Upgrades/Mods/TransmuteCores/AttackTransmuteCore", + "tags": [ + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "Madurai Transmute Core", + "icon": "items/images/en/madurai_transmute_core.4550b0b0a7749bc7d89773b220b0c60d.png", + "thumb": "items/images/en/thumbs/madurai_transmute_core.4550b0b0a7749bc7d89773b220b0c60d.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e8", + "slug": "toxic_barrage", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/PoisonEventShotgunMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Toxic Barrage", + "icon": "items/images/en/toxic_barrage.47b3693994df124d36bc7525be30b374.png", + "thumb": "items/images/en/thumbs/toxic_barrage.47b3693994df124d36bc7525be30b374.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ca", + "slug": "apex_predator", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/MarkTargetRifleMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "rifle", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Apex Predator", + "icon": "items/images/en/apex_predator.2d037a2722b651e3cb5e86c1cc234a6e.png", + "thumb": "items/images/en/thumbs/apex_predator.2d037a2722b651e3cb5e86c1cc234a6e.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156e9", + "slug": "shotgun_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponShotgunConvertAmmoMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shotgun Ammo Mutation", + "icon": "items/images/en/shotgun_ammo_mutation.2a2c46f64e6533beab652081bde6b5b4.png", + "thumb": "items/images/en/thumbs/shotgun_ammo_mutation.2a2c46f64e6533beab652081bde6b5b4.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ce", + "slug": "calculated_victory", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/RestoreShieldsOnKillMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Calculated Victory", + "icon": "items/images/en/calculated_victory.81ed757051bacbeae81aab2e70e1a65a.png", + "thumb": "items/images/en/thumbs/calculated_victory.81ed757051bacbeae81aab2e70e1a65a.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ea", + "slug": "hyperion_thrusters", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitSprintSpeedMod", + "tags": [ + "mod", + "archwing", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Hyperion Thrusters", + "icon": "items/images/en/hyperion_thrusters.d180283d2297c661b4dda819da35006d.png", + "thumb": "items/images/en/thumbs/hyperion_thrusters.d180283d2297c661b4dda819da35006d.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156eb", + "slug": "infested_impedance", + "gameRef": "/Lotus/Upgrades/Mods/Aura/InfestationSpeedReductionAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Infested Impedance", + "icon": "items/images/en/infested_impedance.760d6dfe7d74cc9dbadfc17bc5654aaf.png", + "thumb": "items/images/en/thumbs/infested_impedance.760d6dfe7d74cc9dbadfc17bc5654aaf.128x128.png" + } + } + }, + { + "id": "59a48b625cd9938cfede703b", + "slug": "hydroid_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HydroidPrimeSystemsBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Hydroid Prime Systems Blueprint", + "icon": "items/images/en/hydroid_prime_systems.5f1abb4ef137bf0dd41565a913f5232a.png", + "thumb": "items/images/en/thumbs/hydroid_prime_systems.5f1abb4ef137bf0dd41565a913f5232a.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5ca7ae31fc2db20506557090", + "slug": "primed_animal_instinct", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelLootRadarEnemyRadarExpertMod", + "tags": [ + "mod", + "legendary", + "sentinel", + "companion" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Animal Instinct", + "icon": "items/images/en/primed_animal_instinct.5c821ee7a8d69aace0923cdafe5d2fbb.png", + "thumb": "items/images/en/thumbs/primed_animal_instinct.5c821ee7a8d69aace0923cdafe5d2fbb.128x128.png" + } + } + }, + { + "id": "5cb04868fc2db2068006980e", + "slug": "pilfering_strangledome", + "gameRef": "/Lotus/Powersuits/Khora/KhoraCageAugmentCard", + "tags": [ + "mod", + "khora", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pilfering Strangledome", + "icon": "items/images/en/pilfering_strangledome.f24a8dc7969c06d83b0bb0ecfaeebc7d.png", + "thumb": "items/images/en/thumbs/pilfering_strangledome.f24a8dc7969c06d83b0bb0ecfaeebc7d.128x128.png" + } + } + }, + { + "id": "5ce7fd85d23a3b00908c4204", + "slug": "proton_pulse", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Spider/SpiderModA", + "tags": [ + "common", + "mod", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Proton Pulse", + "icon": "items/images/en/proton_pulse.1421f759fe461d981591d55621cba142.png", + "thumb": "items/images/en/thumbs/proton_pulse.1421f759fe461d981591d55621cba142.128x128.png" + } + } + }, + { + "id": "5d322d1174bdad027da4d08d", + "slug": "gas_city_lifts_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityConVerticalA", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Lifts Scene", + "icon": "items/images/en/gas_city_lifts_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_lifts_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d4c4fcc74bdad0694ecca6c", + "slug": "dog_days_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileBeach", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Dog Days Scene", + "icon": "items/images/en/dog_days_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/dog_days_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5ce7fd88d23a3b00908c4211", + "slug": "shockwave_actuators", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPrecept/MoaShockwavePrecept", + "tags": [ + "mod", + "common", + "sentinel", + "moa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shockwave Actuators", + "icon": "items/images/en/shockwave_actuators.b1a57a13302d02566aa2d64cce77bb7b.png", + "thumb": "items/images/en/thumbs/shockwave_actuators.b1a57a13302d02566aa2d64cce77bb7b.128x128.png" + } + } + }, + { + "id": "57c20990022d3f62c0d81aa7", + "slug": "assimilate", + "gameRef": "/Lotus/Powersuits/Jade/SelfBulletAttractorAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nyx" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Assimilate", + "icon": "items/images/en/assimilate.042003ad4a45c28afa5e6e72d5761c54.png", + "thumb": "items/images/en/thumbs/assimilate.042003ad4a45c28afa5e6e72d5761c54.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd899d", + "slug": "glaive_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Glaives/PrimeGlaive/PrimeGlaiveWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Glaive Prime Set", + "icon": "items/images/en/glaive_prime_set.17767ab370f143a315df90177995ef92.png", + "thumb": "items/images/en/thumbs/glaive_prime_set.17767ab370f143a315df90177995ef92.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89ac", + "slug": "scindo_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Axe/PrimeScindo/PrimeScindoWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Scindo Prime Set", + "icon": "items/images/en/scindo_prime_set.ae70ac90b811a44f64263394b6410c28.png", + "thumb": "items/images/en/thumbs/scindo_prime_set.ae70ac90b811a44f64263394b6410c28.128x128.png" + } + } + }, + { + "id": "57dbdc525e334907aa8edb56", + "slug": "telos_boltace", + "gameRef": "/Lotus/Weapons/Syndicates/ArbitersOfHexis/Melee/AHBoltace", + "tags": [ + "syndicate", + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Telos Boltace", + "icon": "items/images/en/telos_boltace.9dc9593274da1116201b84905a53f506.png", + "thumb": "items/images/en/thumbs/telos_boltace.9dc9593274da1116201b84905a53f506.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff4b", + "slug": "latron_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatronPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Latron Prime Receiver", + "icon": "items/images/en/latron_prime_receiver.5c8b8009acbdb97fd49177ba155ecfbe.png", + "thumb": "items/images/en/thumbs/latron_prime_receiver.5c8b8009acbdb97fd49177ba155ecfbe.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff4c", + "slug": "latron_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatronPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Latron Prime Stock", + "icon": "items/images/en/latron_prime_stock.5c8b8009acbdb97fd49177ba155ecfbe.png", + "thumb": "items/images/en/thumbs/latron_prime_stock.5c8b8009acbdb97fd49177ba155ecfbe.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff4d", + "slug": "lex_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LexPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Lex Prime Barrel", + "icon": "items/images/en/lex_prime_barrel.13776cf63dfd68968067b517184a6ac0.png", + "thumb": "items/images/en/thumbs/lex_prime_barrel.13776cf63dfd68968067b517184a6ac0.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "59ecb5ea195d2301e654749d", + "slug": "grineer_forest_factory_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGrineerForestIntermediateA", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Forest Factory Scene", + "icon": "items/images/en/grineer_forest_factory_scene.c07de36b4524d5758e6fbb1f14f637c2.png", + "thumb": "items/images/en/thumbs/grineer_forest_factory_scene.c07de36b4524d5758e6fbb1f14f637c2.128x128.png" + } + } + }, + { + "id": "59eba86952f90ed715e1415a", + "slug": "heart_nyth", + "gameRef": "/Lotus/Types/Items/Gems/Eidolon/EidolonGemBCutAItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Heart Nyth", + "icon": "items/images/en/heart_nyth.c1c509b457c7fd0ecdb6e74f82c2be1e.png", + "thumb": "items/images/en/thumbs/heart_nyth.c1c509b457c7fd0ecdb6e74f82c2be1e.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4db", + "slug": "impenetrable_offense", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/BlockMoreAttackSlowerMeleeMod", + "tags": [ + "mod", + "rare", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Impenetrable Offense", + "icon": "items/images/en/impenetrable_offense.a43c0e997fb41dc6a6699a6e106ad66f.png", + "thumb": "items/images/en/thumbs/impenetrable_offense.a43c0e997fb41dc6a6699a6e106ad66f.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf06f", + "slug": "sudas_datascape_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateCephalon", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Suda's Datascape Scene", + "icon": "items/images/en/sudas_datascape_scene.b524e2355531edae21dfa2154e93bab1.png", + "thumb": "items/images/en/thumbs/sudas_datascape_scene.b524e2355531edae21dfa2154e93bab1.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec84", + "slug": "sybaris_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SybarisPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Sybaris Prime Receiver", + "icon": "items/images/en/sybaris_prime_receiver.39d7dc4a904f7db7e7c78901976aa5fa.png", + "thumb": "items/images/en/thumbs/sybaris_prime_receiver.39d7dc4a904f7db7e7c78901976aa5fa.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5615432bb66f8371035bfa2f", + "slug": "staggering_shield", + "gameRef": "/Lotus/Powersuits/Cowgirl/RicochetArmourAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mesa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Staggering Shield", + "icon": "items/images/en/staggering_shield.b0a7fcff3b0080dc20c52dfd3f4cd1f8.png", + "thumb": "items/images/en/thumbs/staggering_shield.b0a7fcff3b0080dc20c52dfd3f4cd1f8.128x128.png" + } + } + }, + { + "id": "573b805f0ec44a47787a6919", + "slug": "akstiletto_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeAkstiletto/PrimeAkstiletto", + "tags": [ + "weapon", + "prime", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Akstiletto Prime Set", + "icon": "items/images/en/akstiletto_prime_set.a88c0a1e43ba462af7cc44efd01a7044.png", + "thumb": "items/images/en/thumbs/akstiletto_prime_set.a88c0a1e43ba462af7cc44efd01a7044.128x128.png" + } + } + }, + { + "id": "5ee76f4b04d55c0a81972432", + "slug": "stropha_set", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Gunblade/CrpGunBlade/CrpGunbladeWeapon", + "tags": [ + "weapon", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Stropha Set", + "icon": "items/images/en/stropha_set.08c23ce01edf041f6204aa470f8f12c9.png", + "thumb": "items/images/en/thumbs/stropha_set.08c23ce01edf041f6204aa470f8f12c9.128x128.png" + } + } + }, + { + "id": "5ee76f4b04d55c0a81972433", + "slug": "velox_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnOdaliskSmg/TnOdaliskSmgPistol", + "tags": [ + "weapon", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Velox Set", + "icon": "items/images/en/velox_set.8d807d2b4f5eddf0d1b17e52adc717ac.png", + "thumb": "items/images/en/thumbs/velox_set.8d807d2b4f5eddf0d1b17e52adc717ac.128x128.png" + } + } + }, + { + "id": "5ee76f4b04d55c0a81972434", + "slug": "stahlta_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpRubanRifleBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Stahlta Barrel", + "icon": "items/images/en/stahlta_barrel.30d7537c3158976f86998e5b9fa05f96.png", + "thumb": "items/images/en/thumbs/stahlta_barrel.30d7537c3158976f86998e5b9fa05f96.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5ee76f4b04d55c0a81972435", + "slug": "stahlta_set", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpRubanRifle/CrpRubanRifle", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Stahlta Set", + "icon": "items/images/en/stahlta_set.30d7537c3158976f86998e5b9fa05f96.png", + "thumb": "items/images/en/thumbs/stahlta_set.30d7537c3158976f86998e5b9fa05f96.128x128.png" + } + } + }, + { + "id": "5ee76f4c04d55c0a81972436", + "slug": "velox_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ProteaSMGReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Velox Receiver", + "icon": "items/images/en/velox_receiver.8d807d2b4f5eddf0d1b17e52adc717ac.png", + "thumb": "items/images/en/thumbs/velox_receiver.8d807d2b4f5eddf0d1b17e52adc717ac.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5ee76f4c04d55c0a81972437", + "slug": "stropha_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpGunbladeBlade", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Stropha Blade", + "icon": "items/images/en/stropha_blade.08c23ce01edf041f6204aa470f8f12c9.png", + "thumb": "items/images/en/thumbs/stropha_blade.08c23ce01edf041f6204aa470f8f12c9.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "5ee76f4c04d55c0a81972438", + "slug": "stahlta_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpRubanRifleReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Stahlta Receiver", + "icon": "items/images/en/stahlta_receiver.30d7537c3158976f86998e5b9fa05f96.png", + "thumb": "items/images/en/thumbs/stahlta_receiver.30d7537c3158976f86998e5b9fa05f96.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5ee76f4c04d55c0a81972439", + "slug": "stropha_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpGunbladeReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Stropha Receiver", + "icon": "items/images/en/stropha_receiver.08c23ce01edf041f6204aa470f8f12c9.png", + "thumb": "items/images/en/thumbs/stropha_receiver.08c23ce01edf041f6204aa470f8f12c9.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5ee76f4c04d55c0a8197243a", + "slug": "stropha_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpGunbladeStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Stropha Stock", + "icon": "items/images/en/stropha_stock.08c23ce01edf041f6204aa470f8f12c9.png", + "thumb": "items/images/en/thumbs/stropha_stock.08c23ce01edf041f6204aa470f8f12c9.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "5ee76f4c04d55c0a8197243b", + "slug": "stropha_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpGunbladeBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Stropha Barrel", + "icon": "items/images/en/stropha_barrel.08c23ce01edf041f6204aa470f8f12c9.png", + "thumb": "items/images/en/thumbs/stropha_barrel.08c23ce01edf041f6204aa470f8f12c9.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5ee76f4d04d55c0a8197243c", + "slug": "stahlta_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpRubanRifleStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Stahlta Stock", + "icon": "items/images/en/stahlta_stock.30d7537c3158976f86998e5b9fa05f96.png", + "thumb": "items/images/en/thumbs/stahlta_stock.30d7537c3158976f86998e5b9fa05f96.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "5ee76f4d04d55c0a8197243d", + "slug": "velox_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ProteaSMGBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Velox Barrel", + "icon": "items/images/en/velox_barrel.8d807d2b4f5eddf0d1b17e52adc717ac.png", + "thumb": "items/images/en/thumbs/velox_barrel.8d807d2b4f5eddf0d1b17e52adc717ac.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5ee7de8a04d55c0b1052e4bb", + "slug": "corpus_ship_hangar_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileCorpusShipHangar", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Corpus Ship Hangar Scene", + "icon": "items/images/en/corpus_ship_hangar_scene.d26bef383671de26a0c2aa3bc8e0e522.png", + "thumb": "items/images/en/thumbs/corpus_ship_hangar_scene.d26bef383671de26a0c2aa3bc8e0e522.128x128.png" + } + } + }, + { + "id": "5ee7de8b04d55c0b1052e4ca", + "slug": "corpus_ship_bridge_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileCorpusShipBridge", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Corpus Ship Bridge Scene", + "icon": "items/images/en/corpus_ship_bridge_scene.d26bef383671de26a0c2aa3bc8e0e522.png", + "thumb": "items/images/en/thumbs/corpus_ship_bridge_scene.d26bef383671de26a0c2aa3bc8e0e522.128x128.png" + } + } + }, + { + "id": "5ee7de8c04d55c0b1052e4cd", + "slug": "corpus_ship_orbital_cannon_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileCorpusShipOrbitalStrike", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Corpus Ship Orbital Cannon Scene", + "icon": "items/images/en/corpus_ship_orbital_cannon_scene.d26bef383671de26a0c2aa3bc8e0e522.png", + "thumb": "items/images/en/thumbs/corpus_ship_orbital_cannon_scene.d26bef383671de26a0c2aa3bc8e0e522.128x128.png" + } + } + }, + { + "id": "5ef0a62004d55c0c40f06525", + "slug": "glaxion_vandal", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpFreezeRay/Vandal/CrpFreezeRayVandalRifle", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Glaxion Vandal", + "icon": "items/images/en/glaxion_vandal.6014173d9027f07df11bf4bd68f5eeb8.png", + "thumb": "items/images/en/thumbs/glaxion_vandal.6014173d9027f07df11bf4bd68f5eeb8.128x128.png" + } + } + }, + { + "id": "5ef0a62004d55c0c40f06526", + "slug": "primed_rubedo_lined_barrel", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/Expert/ArchwingRifleDamageAmountModExpert", + "tags": [ + "legendary", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Rubedo-Lined Barrel", + "icon": "items/images/en/primed_rubedo_lined_barrel.f907cff537d893315d623f87d3b700eb.png", + "thumb": "items/images/en/thumbs/primed_rubedo_lined_barrel.f907cff537d893315d623f87d3b700eb.128x128.png" + } + } + }, + { + "id": "5f0deab69f527b024d48f055", + "slug": "inaros_prime_set", + "gameRef": "/Lotus/Powersuits/Sandman/InarosPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Inaros Prime Set", + "icon": "items/images/en/inaros_prime_set.58fc170fbf04332e7d541a615c198b41.png", + "thumb": "items/images/en/thumbs/inaros_prime_set.58fc170fbf04332e7d541a615c198b41.128x128.png" + } + } + }, + { + "id": "5f0deab69f527b024d48f056", + "slug": "inaros_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/InarosPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Inaros Prime Chassis Blueprint", + "icon": "items/images/en/inaros_prime_chassis.58fc170fbf04332e7d541a615c198b41.png", + "thumb": "items/images/en/thumbs/inaros_prime_chassis.58fc170fbf04332e7d541a615c198b41.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5f0deab69f527b024d48f057", + "slug": "inaros_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/InarosPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Inaros Prime Neuroptics Blueprint", + "icon": "items/images/en/inaros_prime_neuroptics.58fc170fbf04332e7d541a615c198b41.png", + "thumb": "items/images/en/thumbs/inaros_prime_neuroptics.58fc170fbf04332e7d541a615c198b41.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5f0deab79f527b024d48f058", + "slug": "inaros_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/InarosPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Inaros Prime Blueprint", + "icon": "items/images/en/inaros_prime_blueprint.58fc170fbf04332e7d541a615c198b41.png", + "thumb": "items/images/en/thumbs/inaros_prime_blueprint.58fc170fbf04332e7d541a615c198b41.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5f0deab79f527b024d48f059", + "slug": "inaros_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/InarosPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Inaros Prime Systems Blueprint", + "icon": "items/images/en/inaros_prime_systems.58fc170fbf04332e7d541a615c198b41.png", + "thumb": "items/images/en/thumbs/inaros_prime_systems.58fc170fbf04332e7d541a615c198b41.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5f0e0fdc9f527b0285718f17", + "slug": "panthera_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PantheraPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Panthera Prime Stock", + "icon": "items/images/en/panthera_prime_stock.7a4ebdc3f85ef877a6ffce8790660e30.png", + "thumb": "items/images/en/thumbs/panthera_prime_stock.7a4ebdc3f85ef877a6ffce8790660e30.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "5f0e0fdc9f527b0285718f18", + "slug": "karyst_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KarystPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Karyst Prime Handle", + "icon": "items/images/en/karyst_prime_handle.4ac2616227b5e4e2e42e44473acf9a91.png", + "thumb": "items/images/en/thumbs/karyst_prime_handle.4ac2616227b5e4e2e42e44473acf9a91.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5f0e0fdc9f527b0285718f19", + "slug": "karyst_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeKaryst/PrimeKrisDagger", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Karyst Prime Set", + "icon": "items/images/en/karyst_prime_set.4ac2616227b5e4e2e42e44473acf9a91.png", + "thumb": "items/images/en/thumbs/karyst_prime_set.4ac2616227b5e4e2e42e44473acf9a91.128x128.png" + } + } + }, + { + "id": "5f0e0fdc9f527b0285718f1a", + "slug": "panthera_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimePanthera/PrimePanthera", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Panthera Prime Set", + "icon": "items/images/en/panthera_prime_set.7a4ebdc3f85ef877a6ffce8790660e30.png", + "thumb": "items/images/en/thumbs/panthera_prime_set.7a4ebdc3f85ef877a6ffce8790660e30.128x128.png" + } + } + }, + { + "id": "5f0e0fdd9f527b0285718f1b", + "slug": "panthera_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PantheraPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Panthera Prime Barrel", + "icon": "items/images/en/panthera_prime_barrel.7a4ebdc3f85ef877a6ffce8790660e30.png", + "thumb": "items/images/en/thumbs/panthera_prime_barrel.7a4ebdc3f85ef877a6ffce8790660e30.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5f0e0fdd9f527b0285718f1c", + "slug": "panthera_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PantheraPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Panthera Prime Receiver", + "icon": "items/images/en/panthera_prime_receiver.7a4ebdc3f85ef877a6ffce8790660e30.png", + "thumb": "items/images/en/thumbs/panthera_prime_receiver.7a4ebdc3f85ef877a6ffce8790660e30.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5f0e0fdd9f527b0285718f1d", + "slug": "panthera_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PantheraPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Panthera Prime Blueprint", + "icon": "items/images/en/panthera_prime_blueprint.7a4ebdc3f85ef877a6ffce8790660e30.png", + "thumb": "items/images/en/thumbs/panthera_prime_blueprint.7a4ebdc3f85ef877a6ffce8790660e30.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5f0e0fde9f527b0285718f1e", + "slug": "karyst_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/KarystPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Karyst Prime Blueprint", + "icon": "items/images/en/karyst_prime_blueprint.4ac2616227b5e4e2e42e44473acf9a91.png", + "thumb": "items/images/en/thumbs/karyst_prime_blueprint.4ac2616227b5e4e2e42e44473acf9a91.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5f0e0fde9f527b0285718f1f", + "slug": "karyst_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KarystPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Karyst Prime Blade", + "icon": "items/images/en/karyst_prime_blade.4ac2616227b5e4e2e42e44473acf9a91.png", + "thumb": "items/images/en/thumbs/karyst_prime_blade.4ac2616227b5e4e2e42e44473acf9a91.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "59dfeb63115f1d887cfd7abd", + "slug": "vigilante_supplies", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Vigilante/PrimaryVigilanteSuppliesMod", + "tags": [ + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vigilante Supplies", + "icon": "items/images/en/vigilante_supplies.fd5606254df447e665fbda4046b0ebc6.png", + "thumb": "items/images/en/thumbs/vigilante_supplies.fd5606254df447e665fbda4046b0ebc6.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ef", + "slug": "crushing_ruin", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/HammerCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "hammers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crushing Ruin", + "icon": "items/images/en/crushing_ruin.5c6f629a2ef6563aa8a1e8d0a8d4de14.png", + "thumb": "items/images/en/thumbs/crushing_ruin.5c6f629a2ef6563aa8a1e8d0a8d4de14.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff35", + "slug": "braton_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BratonPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Braton Prime Stock", + "icon": "items/images/en/braton_prime_stock.ae229642d6179ebfb1547ed7d976e749.png", + "thumb": "items/images/en/thumbs/braton_prime_stock.ae229642d6179ebfb1547ed7d976e749.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff3e", + "slug": "dakra_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeCronusLongSwordBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Dakra Prime Blueprint", + "icon": "items/images/en/dakra_prime_blueprint.785a613039ec892abc579c176f0b33da.png", + "thumb": "items/images/en/thumbs/dakra_prime_blueprint.785a613039ec892abc579c176f0b33da.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51559a", + "slug": "narrow_minded", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/CorruptedDurationRangeWarframe", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Narrow Minded", + "icon": "items/images/en/narrow_minded.7f5295adebe0b2e9fa1b71353924f6cb.png", + "thumb": "items/images/en/thumbs/narrow_minded.7f5295adebe0b2e9fa1b71353924f6cb.128x128.png" + } + } + }, + { + "id": "571955834445c3e28b80fc7b", + "slug": "xiphos_avionics_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/Gyroscope/GyroscopeAvionicsBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Xiphos Avionics Blueprint", + "icon": "items/images/en/xiphos_avionics.452dba7ad34799a24d7d72d8f5e206eb.png", + "thumb": "items/images/en/thumbs/xiphos_avionics.452dba7ad34799a24d7d72d8f5e206eb.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_avionics_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4f9", + "slug": "stand_ground", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/AbilityDamageBlockMod", + "tags": [ + "mod", + "rare", + "pvp", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Stand Ground", + "icon": "items/images/en/stand_ground.363d438b54e942781d9db3665d197a59.png", + "thumb": "items/images/en/thumbs/stand_ground.363d438b54e942781d9db3665d197a59.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff44", + "slug": "glaive_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/GlaivePrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Glaive Prime Blueprint", + "icon": "items/images/en/glaive_prime_blueprint.17767ab370f143a315df90177995ef92.png", + "thumb": "items/images/en/thumbs/glaive_prime_blueprint.17767ab370f143a315df90177995ef92.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "563893fcb66f83093e823472", + "slug": "primed_target_cracker", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/PrimedWeaponCritDamageMod", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Target Cracker", + "icon": "items/images/en/primed_target_cracker.dbdd7561e20eb9243d62a193a1d786aa.png", + "thumb": "items/images/en/thumbs/primed_target_cracker.dbdd7561e20eb9243d62a193a1d786aa.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4eb", + "slug": "reflex_draw", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/HolsterSpeedBonusMod", + "tags": [ + "secondary", + "pvp", + "uncommon", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Reflex Draw", + "icon": "items/images/en/reflex_draw.c8118e6a8c6396c0f9e8a2fda0ef93fe.png", + "thumb": "items/images/en/thumbs/reflex_draw.c8118e6a8c6396c0f9e8a2fda0ef93fe.128x128.png" + } + } + }, + { + "id": "573b80590ec44a47787a6918", + "slug": "akstiletto_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkstilettoPrimeLink", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akstiletto Prime Link", + "icon": "items/images/en/akstiletto_prime_link.a88c0a1e43ba462af7cc44efd01a7044.png", + "thumb": "items/images/en/thumbs/akstiletto_prime_link.a88c0a1e43ba462af7cc44efd01a7044.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "595567c18e34b5ed3cb3d9ba", + "slug": "bane_of_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFactionDamageCorrupted", + "tags": [ + "mod", + "rifle", + "primary", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bane Of Orokin", + "icon": "items/images/en/bane_of_corrupted.992c9a839a2ce0efe7bc1664fd6dff71.png", + "thumb": "items/images/en/thumbs/bane_of_corrupted.992c9a839a2ce0efe7bc1664fd6dff71.128x128.png" + } + } + }, + { + "id": "595be9628e34b5ed3cb3d9d0", + "slug": "hunhows_datascape_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileBardBossArena", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Hunhow's Datascape Scene", + "icon": "items/images/en/hunhows_datascape_scene.4b23ba3d5129d673b8becedead373398.png", + "thumb": "items/images/en/thumbs/hunhows_datascape_scene.4b23ba3d5129d673b8becedead373398.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515629", + "slug": "maim", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponEventSlashDamageMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Maim", + "icon": "items/images/en/maim.8db0d352edd0ef6219bfcfc766541c9f.png", + "thumb": "items/images/en/thumbs/maim.8db0d352edd0ef6219bfcfc766541c9f.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec7d", + "slug": "oberon_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OberonPrimeBlueprint", + "tags": [ + "warframe", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Oberon Prime Blueprint", + "icon": "items/images/en/oberon_prime_blueprint.d7f1623552bce11f166b715679e27022.png", + "thumb": "items/images/en/thumbs/oberon_prime_blueprint.d7f1623552bce11f166b715679e27022.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5740c1879d238d4a03d28518", + "slug": "looter", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Looter", + "tags": [ + "mod", + "rare", + "sentinel", + "carrier" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Looter", + "icon": "items/images/en/looter.eb87275b07df115d778c0b4540e62bca.png", + "thumb": "items/images/en/thumbs/looter.eb87275b07df115d778c0b4540e62bca.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51562c", + "slug": "pistol_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPistolConvertAmmoMod", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pistol Ammo Mutation", + "icon": "items/images/en/pistol_ammo_mutation.77fcd0211a18da164f465251884856a4.png", + "thumb": "items/images/en/thumbs/pistol_ammo_mutation.77fcd0211a18da164f465251884856a4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51562d", + "slug": "poisonous_sting", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingWeaponToxinDamageMod", + "tags": [ + "uncommon", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Poisonous Sting", + "icon": "items/images/en/poisonous_sting.a297e619a0c0f338e50a7613c6cad0fc.png", + "thumb": "items/images/en/thumbs/poisonous_sting.a297e619a0c0f338e50a7613c6cad0fc.128x128.png" + } + } + }, + { + "id": "595be1218e34b5ed3cb3d9bf", + "slug": "harrows_temple_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileHarrowRedVeilTemple", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Harrow's Temple Scene", + "icon": "items/images/en/harrows_temple_scene.2b054faa73333d48ab584495ae5cf953.png", + "thumb": "items/images/en/thumbs/harrows_temple_scene.2b054faa73333d48ab584495ae5cf953.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf069", + "slug": "amaryns_retreat_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateNewLoka", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Amaryn's Retreat Scene", + "icon": "items/images/en/amaryns_retreat_scene.e7226f12831caa4652319407d633897d.png", + "thumb": "items/images/en/thumbs/amaryns_retreat_scene.e7226f12831caa4652319407d633897d.128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf06b", + "slug": "color_key_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileWhiteBox", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Color Key Scene", + "icon": "items/images/en/color_key_scene.df44186af9a8fd041e62fe3c62e3332a.png", + "thumb": "items/images/en/thumbs/color_key_scene.df44186af9a8fd041e62fe3c62e3332a.128x128.png" + } + } + }, + { + "id": "582b0f870af25410b099f7fb", + "slug": "phaedra_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchLongRifle/ArchLongRifle", + "tags": [ + "weapon", + "set", + "primary", + "archwing" + ], + "i18n": { + "en": { + "name": "Phaedra Set", + "icon": "items/images/en/phaedra_set.93a06c74d5ecc242c76ea0ff91e3d9ca.png", + "thumb": "items/images/en/thumbs/phaedra_set.93a06c74d5ecc242c76ea0ff91e3d9ca.128x128.png" + } + } + }, + { + "id": "583580fd2c2ada003badef89", + "slug": "cernos_prime_string", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCernosString", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Cernos Prime String", + "icon": "items/images/en/cernos_prime_string.b3ac02e80ee17cc0756348f1d04b69cc.png", + "thumb": "items/images/en/thumbs/cernos_prime_string.b3ac02e80ee17cc0756348f1d04b69cc.128x128.png", + "subIcon": "sub_icons/weapon/prime_string_128x128.png" + } + } + }, + { + "id": "583580ff2c2ada003badef8a", + "slug": "cernos_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Bows/PrimeCernos/PrimeCernos", + "tags": [ + "primary", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Cernos Prime Set", + "icon": "items/images/en/cernos_prime_set.b3ac02e80ee17cc0756348f1d04b69cc.png", + "thumb": "items/images/en/thumbs/cernos_prime_set.b3ac02e80ee17cc0756348f1d04b69cc.128x128.png" + } + } + }, + { + "id": "583589fd2c2ada0047b386f6", + "slug": "valkyr_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ValkyrPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Valkyr Prime Blueprint", + "icon": "items/images/en/valkyr_prime_blueprint.a5c906d66a11ff70158f0ffad0c628e8.png", + "thumb": "items/images/en/thumbs/valkyr_prime_blueprint.a5c906d66a11ff70158f0ffad0c628e8.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "58358a0e2c2ada0047b386fa", + "slug": "valkyr_prime_set", + "gameRef": "/Lotus/Powersuits/Berserker/ValkyrPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Valkyr Prime Set", + "icon": "items/images/en/valkyr_prime_set.a5c906d66a11ff70158f0ffad0c628e8.png", + "thumb": "items/images/en/thumbs/valkyr_prime_set.a5c906d66a11ff70158f0ffad0c628e8.128x128.png" + } + } + }, + { + "id": "58358e1c2c2ada00655a4ef6", + "slug": "venka_prime_blades", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeVenkaClawsBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Venka Prime Blades", + "icon": "items/images/en/venka_prime_blades.123cb62ab1e8a4edd78997a256cf1e7f.png", + "thumb": "items/images/en/thumbs/venka_prime_blades.123cb62ab1e8a4edd78997a256cf1e7f.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4cb", + "slug": "bounty_hunter", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/MarkTargetShotgunMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bounty Hunter", + "icon": "items/images/en/bounty_hunter.748fa255fcfa70d0344501250c5e01e2.png", + "thumb": "items/images/en/thumbs/bounty_hunter.748fa255fcfa70d0344501250c5e01e2.128x128.png" + } + } + }, + { + "id": "59f38f558c202c007335ba65", + "slug": "target_acquired", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/SniperHeadshotMultiplierMod", + "tags": [ + "mod", + "rare", + "primary", + "sniper" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Target Acquired", + "icon": "items/images/en/target_acquired.8b1eb4ae05f10fefe7f70ef5ac76ac78.png", + "thumb": "items/images/en/thumbs/target_acquired.8b1eb4ae05f10fefe7f70ef5ac76ac78.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4d9", + "slug": "heartseeker", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/DaggerMeleeAutoTargetBonus", + "tags": [ + "pvp", + "melee", + "rare", + "daggers", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Heartseeker", + "icon": "items/images/en/heartseeker.925d2a752c6797169c36ee152a930bf4.png", + "thumb": "items/images/en/thumbs/heartseeker.925d2a752c6797169c36ee152a930bf4.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b8", + "slug": "loyal_companion", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowMasterBleedoutMod", + "tags": [ + "mod", + "common", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Loyal Companion", + "icon": "items/images/en/loyal_companion.c60238ddcfef90e39084b135197d2833.png", + "thumb": "items/images/en/thumbs/loyal_companion.c60238ddcfef90e39084b135197d2833.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4df", + "slug": "martial_fury", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/MeleeAutoTargetBonus", + "tags": [ + "mod", + "rare", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Martial Fury", + "icon": "items/images/en/martial_fury.64a61f03496f077ae930609b5834a53d.png", + "thumb": "items/images/en/thumbs/martial_fury.64a61f03496f077ae930609b5834a53d.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156c0", + "slug": "decisive_judgement", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/KatanaCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "nikanas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Decisive Judgement", + "icon": "items/images/en/decisive_judgement.1f59640c5a465330e0ebb0eb2c257ab5.png", + "thumb": "items/images/en/thumbs/decisive_judgement.1f59640c5a465330e0ebb0eb2c257ab5.128x128.png" + } + } + }, + { + "id": "59eb9b0952f90ed715e14143", + "slug": "twirling_spire", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/PolearmCmbThreeMeleeTree", + "tags": [ + "mod", + "polearms", + "stance", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Twirling Spire", + "icon": "items/images/en/twirling_spire.67fe342c880bda80d815f6eae1eec325.png", + "thumb": "items/images/en/thumbs/twirling_spire.67fe342c880bda80d815f6eae1eec325.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ae", + "slug": "auxiliary_power", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitPowerMaxMod", + "tags": [ + "mod", + "archwing", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Auxiliary Power", + "icon": "items/images/en/auxiliary_power.38f8aff6fccbc512d4f826810da35b46.png", + "thumb": "items/images/en/thumbs/auxiliary_power.38f8aff6fccbc512d4f826810da35b46.128x128.png" + } + } + }, + { + "id": "59e4532740c3ee1a65541c45", + "slug": "eidolon_lens_blueprint", + "gameRef": "/Lotus/Types/Recipes/Lens/GenericLensOstronBlueprint", + "tags": [ + "misc", + "blueprint" + ], + "i18n": { + "en": { + "name": "Eidolon Lens Blueprint", + "icon": "items/images/en/eidolon_lens_blueprint.26bc0ab4820bbfb6d633e479007807e3.png", + "thumb": "items/images/en/thumbs/eidolon_lens_blueprint.26bc0ab4820bbfb6d633e479007807e3.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51567c", + "slug": "gleaming_talon", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/GlaiveCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "glaives" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gleaming Talon", + "icon": "items/images/en/gleaming_talon.d891c21d066a48485059c35cf0d55214.png", + "thumb": "items/images/en/thumbs/gleaming_talon.d891c21d066a48485059c35cf0d55214.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b0", + "slug": "scavenge", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowThiefPrecept", + "tags": [ + "mod", + "common", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Scavenge", + "icon": "items/images/en/scavenge.e597b9b2f1fbef58407446ed6b39c68a.png", + "thumb": "items/images/en/thumbs/scavenge.e597b9b2f1fbef58407446ed6b39c68a.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b3", + "slug": "gunslinger", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponFireRateMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Gunslinger", + "icon": "items/images/en/gunslinger.946830b2595617de02b7572ac589db19.png", + "thumb": "items/images/en/thumbs/gunslinger.946830b2595617de02b7572ac589db19.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b5", + "slug": "sundering_weave", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/MacheteCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "machetes" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sundering Weave", + "icon": "items/images/en/sundering_weave.bbee29e4bef621557278830ca7186a6a.png", + "thumb": "items/images/en/thumbs/sundering_weave.bbee29e4bef621557278830ca7186a6a.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4da", + "slug": "impaler_munitions", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/DamageBiasPuncturePistolMod", + "tags": [ + "secondary", + "pvp", + "uncommon", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Impaler Munitions", + "icon": "items/images/en/impaler_munitions.5bbb1a625def945ac6d5ca590f947fd6.png", + "thumb": "items/images/en/thumbs/impaler_munitions.5bbb1a625def945ac6d5ca590f947fd6.128x128.png" + } + } + }, + { + "id": "5754a312e701ef5844257da9", + "slug": "phoenix_renewal", + "gameRef": "/Lotus/Powersuits/Paladin/RegenerationAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "oberon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Phoenix Renewal", + "icon": "items/images/en/phoenix_renewal.92f0ed82f9b6df3be53be221db2e15e6.png", + "thumb": "items/images/en/thumbs/phoenix_renewal.92f0ed82f9b6df3be53be221db2e15e6.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515638", + "slug": "shell_shock", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/ElectEventShotgunMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shell Shock", + "icon": "items/images/en/shell_shock.35bf2750cb8660baea04267adab60b34.png", + "thumb": "items/images/en/thumbs/shell_shock.35bf2750cb8660baea04267adab60b34.128x128.png" + } + } + }, + { + "id": "5a6b495c7f2bca025fde2b58", + "slug": "larva_burst", + "gameRef": "/Lotus/Powersuits/Infestation/InfestTendrilsAugmentCard", + "tags": [ + "mod", + "nidus", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Larva Burst", + "icon": "items/images/en/larva_burst.cc35be884ce7c5ef3c9913a9586a76aa.png", + "thumb": "items/images/en/thumbs/larva_burst.cc35be884ce7c5ef3c9913a9586a76aa.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51567e", + "slug": "cleaving_whirlwind", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/AxeCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "heavy_blade" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cleaving Whirlwind", + "icon": "items/images/en/cleaving_whirlwind.8a59807c69c368ffe0b459a4f3d0dc08.png", + "thumb": "items/images/en/thumbs/cleaving_whirlwind.8a59807c69c368ffe0b459a4f3d0dc08.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51567f", + "slug": "crowd_dispersion", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/CrowdDispersion", + "tags": [ + "mod", + "common", + "sentinel", + "wyrm" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Crowd Dispersion", + "icon": "items/images/en/crowd_dispersion.06d7388b16972ed277445c2e09873841.png", + "thumb": "items/images/en/thumbs/crowd_dispersion.06d7388b16972ed277445c2e09873841.128x128.png" + } + } + }, + { + "id": "5783bf6dd9b6753790c89e9c", + "slug": "cyngas_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchBurstGunReceiver", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Cyngas Receiver", + "icon": "items/images/en/cyngas_receiver.5b9891a467264b6048cd58b409911767.png", + "thumb": "items/images/en/thumbs/cyngas_receiver.5b9891a467264b6048cd58b409911767.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5527a26de77989205156b2b7", + "slug": "odonata_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/PrimeArchwing/PrimeArchwingBlueprint", + "tags": [ + "archwing", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Odonata Prime Blueprint", + "icon": "items/images/en/odonata_prime_blueprint.9087f5267b49dee37c38d36f57387753.png", + "thumb": "items/images/en/thumbs/odonata_prime_blueprint.9087f5267b49dee37c38d36f57387753.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515680", + "slug": "blind_justice", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/KatanaCmbThreeMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "nikanas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blind Justice", + "icon": "items/images/en/blind_justice.17a62caf922e646e19483c8cb3eeace8.png", + "thumb": "items/images/en/thumbs/blind_justice.17a62caf922e646e19483c8cb3eeace8.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f0", + "slug": "full_contact", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponEventShotgunImpactDamageMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Full Contact", + "icon": "items/images/en/full_contact.1cead3f23fdf3edb28589758f25d73d6.png", + "thumb": "items/images/en/thumbs/full_contact.1cead3f23fdf3edb28589758f25d73d6.128x128.png" + } + } + }, + { + "id": "5729bd06cb59ed5a9b484e8d", + "slug": "medi_ray", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Events/ProjectNightwatch/SentinelHealthRegenPreceptNightwatchMod", + "tags": [ + "mod", + "uncommon", + "sentinel", + "robotic" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Medi-Ray", + "icon": "items/images/en/medi_ray.0684b14a7998c2eeed558b6b544bd231.png", + "thumb": "items/images/en/thumbs/medi_ray.0684b14a7998c2eeed558b6b544bd231.128x128.png" + } + } + }, + { + "id": "5729bd0dcb59ed5a9b484e8f", + "slug": "electromagnetic_shielding", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/ProjectNightwatch/AckBruntNightwatchMod", + "tags": [ + "mod", + "uncommon", + "melee", + "ack_and_brunt" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Electromagnetic Shielding", + "icon": "items/images/en/electromagnetic_shielding.e28bfaee7d2685661a1ffd07e005c60d.png", + "thumb": "items/images/en/thumbs/electromagnetic_shielding.e28bfaee7d2685661a1ffd07e005c60d.128x128.png" + } + } + }, + { + "id": "5740c17f9d238d4a03d28517", + "slug": "imperator_vandal_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/FoldingMachineGun/ArchMachineGunVandal", + "tags": [ + "weapon", + "set", + "primary", + "archwing" + ], + "i18n": { + "en": { + "name": "Imperator Vandal Set", + "icon": "items/images/en/imperator_vandal_set.a7802d291f16f9dcd97afb2e69c879b6.png", + "thumb": "items/images/en/thumbs/imperator_vandal_set.a7802d291f16f9dcd97afb2e69c879b6.128x128.png" + } + } + }, + { + "id": "5783908fd9b6753790c89e80", + "slug": "afterburner", + "gameRef": "/Lotus/Powersuits/Archwing/DemolitionJetPack/ExhaustTrailAugmentCard", + "tags": [ + "mod", + "rare", + "archwing", + "elytron" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Afterburner", + "icon": "items/images/en/afterburner.755307558060af227fdb36ba72d805e9.png", + "thumb": "items/images/en/thumbs/afterburner.755307558060af227fdb36ba72d805e9.128x128.png" + } + } + }, + { + "id": "559dacd3e779897ba8819965", + "slug": "primed_pistol_gambit", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponCritChanceModBeginnerExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Pistol Gambit", + "icon": "items/images/en/primed_pistol_gambit.a4590d10e9f17bc15d1cdaae9507d4ad.png", + "thumb": "items/images/en/thumbs/primed_pistol_gambit.a4590d10e9f17bc15d1cdaae9507d4ad.128x128.png" + } + } + }, + { + "id": "55e797c8e779892474566543", + "slug": "vaykor_hek", + "gameRef": "/Lotus/Weapons/Syndicates/SteelMeridian/LongGuns/SMHek", + "tags": [ + "syndicate", + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Vaykor Hek", + "icon": "items/images/en/vaykor_hek.2276a61ab8713d1b35e651db67402ca9.png", + "thumb": "items/images/en/thumbs/vaykor_hek.2276a61ab8713d1b35e651db67402ca9.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a513", + "slug": "hydraulic_barrel", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/LessRecoilSmallerMagPistolMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hydraulic Barrel", + "icon": "items/images/en/hydraulic_barrel.da450e1b969a5753524bc821cf3709e8.png", + "thumb": "items/images/en/thumbs/hydraulic_barrel.da450e1b969a5753524bc821cf3709e8.128x128.png" + } + } + }, + { + "id": "56c3bbdb5d2f0202da32e93c", + "slug": "saryn_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SarynPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Saryn Prime Neuroptics Blueprint", + "icon": "items/images/en/saryn_prime_neuroptics.394094bef0383f954bd38d622bb075e5.png", + "thumb": "items/images/en/thumbs/saryn_prime_neuroptics.394094bef0383f954bd38d622bb075e5.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "59a5cd4d5cd9938cfede7041", + "slug": "nami_skyla_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeNamiSkylaBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Nami Skyla Prime Blade", + "icon": "items/images/en/nami_skyla_prime_blade.d83bcdd72463d5dd1f78faea07ff02a4.png", + "thumb": "items/images/en/thumbs/nami_skyla_prime_blade.d83bcdd72463d5dd1f78faea07ff02a4.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5ab167b7b2b6a80475780fb5", + "slug": "kronen_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KronenPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Kronen Prime Handle", + "icon": "items/images/en/kronen_prime_handle.09023145e06199878b94a9c664e95ce7.png", + "thumb": "items/images/en/thumbs/kronen_prime_handle.09023145e06199878b94a9c664e95ce7.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "59dfeb5c115f1d887cfd7ab4", + "slug": "gladiator_finesse", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Gladiator/WarframeGladiatorFinesseMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Gladiator Finesse", + "icon": "items/images/en/gladiator_finesse.0047663196522e3da072cc72c0eef3d3.png", + "thumb": "items/images/en/thumbs/gladiator_finesse.0047663196522e3da072cc72c0eef3d3.128x128.png" + } + } + }, + { + "id": "59dfeb6c115f1d887cfd7ac2", + "slug": "augur_reach", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Augur/WarframeAugurReachMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Augur Reach", + "icon": "items/images/en/augur_reach.f7ec6b1dd7f4636d502d4a463883e027.png", + "thumb": "items/images/en/thumbs/augur_reach.f7ec6b1dd7f4636d502d4a463883e027.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515682", + "slug": "sacrifice", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/RevivePlayer", + "tags": [ + "mod", + "sentinel", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sacrifice", + "icon": "items/images/en/sacrifice.402a3534f18c6f9b08731e003f85fc47.png", + "thumb": "items/images/en/thumbs/sacrifice.402a3534f18c6f9b08731e003f85fc47.128x128.png" + } + } + }, + { + "id": "5a0ef3fc10bc40007cce1c8c", + "slug": "hunter_track", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hunter/PrimaryHunterTrackMod", + "tags": [ + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunter Track", + "icon": "items/images/en/hunter_track.119d2bc410b81135e16f194286efb4fb.png", + "thumb": "items/images/en/thumbs/hunter_track.119d2bc410b81135e16f194286efb4fb.128x128.png" + } + } + }, + { + "id": "5a0ef3fc10bc40007cce1c8d", + "slug": "hunter_command", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hunter/CompanionHunterCommandMod", + "tags": [ + "mod", + "rare", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunter Command", + "icon": "items/images/en/hunter_command.cf8a8c9c68407be2be4c09089815569d.png", + "thumb": "items/images/en/thumbs/hunter_command.cf8a8c9c68407be2be4c09089815569d.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff2c", + "slug": "boar_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BoarPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Boar Prime Receiver", + "icon": "items/images/en/boar_prime_receiver.5e8a5ba1520169c7a99c738624328d26.png", + "thumb": "items/images/en/thumbs/boar_prime_receiver.5e8a5ba1520169c7a99c738624328d26.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "598b06b4ab6b61be6fec0fb5", + "slug": "omega_beacon", + "gameRef": "/Lotus/Types/Items/MiscItems/VayHekCoordinateFragmentD", + "tags": [ + "misc" + ], + "i18n": { + "en": { + "name": "Omega Beacon", + "icon": "items/images/en/omega_beacon.65e5468044d5119a49463ec60b3e24e7.png", + "thumb": "items/images/en/thumbs/omega_beacon.65e5468044d5119a49463ec60b3e24e7.128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68cb", + "slug": "regenerative_molt", + "gameRef": "/Lotus/Powersuits/Saryn/ShedAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "saryn" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Regenerative Molt", + "icon": "items/images/en/regenerative_molt.7ebf17142decc24b7b754dd49af560c5.png", + "thumb": "items/images/en/thumbs/regenerative_molt.7ebf17142decc24b7b754dd49af560c5.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff2d", + "slug": "boar_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BoarPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Boar Prime Stock", + "icon": "items/images/en/boar_prime_stock.5e8a5ba1520169c7a99c738624328d26.png", + "thumb": "items/images/en/thumbs/boar_prime_stock.5e8a5ba1520169c7a99c738624328d26.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "591844575c170664fbd37eb4", + "slug": "gorgon_wraith_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GorgonWraithBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Gorgon Wraith Barrel", + "icon": "items/images/en/gorgon_wraith_barrel.2fe2c6cae89adbecbba049aafcd664d7.png", + "thumb": "items/images/en/thumbs/gorgon_wraith_barrel.2fe2c6cae89adbecbba049aafcd664d7.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5a311f84c2c9e90dfff475e4", + "slug": "kogake_prime_boot", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KogakePrimeBoot", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Kogake Prime Boot", + "icon": "items/images/en/kogake_prime_boot.456b865463108d6f6ff51da978f839cd.png", + "thumb": "items/images/en/thumbs/kogake_prime_boot.456b865463108d6f6ff51da978f839cd.128x128.png", + "subIcon": "sub_icons/weapon/prime_boot_128x128.png" + } + } + }, + { + "id": "5a311f84c2c9e90dfff475f1", + "slug": "akbolto_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeAkbolto/PrimeAkBoltoWeapon", + "tags": [ + "weapon", + "prime", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Akbolto Prime Set", + "icon": "items/images/en/akbolto_prime_set.fdb7b0be60ed776a1ba1d800d7cda22b.png", + "thumb": "items/images/en/thumbs/akbolto_prime_set.fdb7b0be60ed776a1ba1d800d7cda22b.128x128.png" + } + } + }, + { + "id": "5a311f84c2c9e90dfff475f3", + "slug": "akbolto_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkboltoPrimeLink", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akbolto Prime Link", + "icon": "items/images/en/akbolto_prime_link.fdb7b0be60ed776a1ba1d800d7cda22b.png", + "thumb": "items/images/en/thumbs/akbolto_prime_link.fdb7b0be60ed776a1ba1d800d7cda22b.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "5a311f85c2c9e90dfff475f7", + "slug": "akbolto_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkboltoPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akbolto Prime Barrel", + "icon": "items/images/en/akbolto_prime_barrel.fdb7b0be60ed776a1ba1d800d7cda22b.png", + "thumb": "items/images/en/thumbs/akbolto_prime_barrel.fdb7b0be60ed776a1ba1d800d7cda22b.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5adf872b931bcf00574adc17", + "slug": "braton_vandal_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BratonVandalBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Braton Vandal Blueprint", + "icon": "items/images/en/braton_vandal_blueprint.91c532bcac702702bf7d259bd5d4d553.png", + "thumb": "items/images/en/thumbs/braton_vandal_blueprint.91c532bcac702702bf7d259bd5d4d553.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5b2987abeb069f0536234278", + "slug": "limbo_prime_set", + "gameRef": "/Lotus/Powersuits/Magician/LimboPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Limbo Prime Set", + "icon": "items/images/en/limbo_prime_set.7bfbc70bd8438594d45a47fba260b174.png", + "thumb": "items/images/en/thumbs/limbo_prime_set.7bfbc70bd8438594d45a47fba260b174.128x128.png" + } + } + }, + { + "id": "5b50a3b23a84fd02a7823252", + "slug": "partitioned_mallet", + "gameRef": "/Lotus/Powersuits/Bard/BardMusicAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "octavia" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Partitioned Mallet", + "icon": "items/images/en/partitioned_mallet.e43558fc4eae736abf25f156f62cf517.png", + "thumb": "items/images/en/thumbs/partitioned_mallet.e43558fc4eae736abf25f156f62cf517.128x128.png" + } + } + }, + { + "id": "5f498a1e9426ed00443bd08f", + "slug": "trapezium_xenorhast", + "gameRef": "/Lotus/Types/Items/Gems/Deimos/DeimosEidolonGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Trapezium Xenorhast", + "icon": "items/images/en/trapezium_xenorhast.508e87eac283a323559a101479d634ad.png", + "thumb": "items/images/en/thumbs/trapezium_xenorhast.508e87eac283a323559a101479d634ad.128x128.png" + } + } + }, + { + "id": "5f498a1e9426ed00443bd090", + "slug": "juice", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBEnergyTricksMod", + "tags": [ + "mod", + "common", + "k_drive" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Juice", + "icon": "items/images/en/juice.16042cae982a8a6828097c3403d48775.png", + "thumb": "items/images/en/thumbs/juice.16042cae982a8a6828097c3403d48775.128x128.png" + } + } + }, + { + "id": "5f498a1e9426ed00443bd092", + "slug": "saxum_thorax", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Femur/FemurThoraxMod", + "tags": [ + "mod", + "common", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Saxum Thorax", + "icon": "items/images/en/saxum_thorax.de51f81c238742fa68f02341888bce31.png", + "thumb": "items/images/en/thumbs/saxum_thorax.de51f81c238742fa68f02341888bce31.128x128.png" + } + } + }, + { + "id": "5f498a1e9426ed00443bd096", + "slug": "necramech_pressure_point", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechMeleeDamageMod", + "tags": [ + "mod", + "rare", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Pressure Point", + "icon": "items/images/en/necramech_pressure_point.92f76735970bd8b57836f4db026f367c.png", + "thumb": "items/images/en/thumbs/necramech_pressure_point.92f76735970bd8b57836f4db026f367c.128x128.png" + } + } + }, + { + "id": "5f498a1f9426ed00443bd097", + "slug": "necramech_vitality", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechHealthMaxMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Vitality", + "icon": "items/images/en/necramech_vitality.ed1a2158133a660eba51d903adfa2355.png", + "thumb": "items/images/en/thumbs/necramech_vitality.ed1a2158133a660eba51d903adfa2355.128x128.png" + } + } + }, + { + "id": "5f498a1f9426ed00443bd098", + "slug": "draining_bite", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowVampireBitePrecept", + "tags": [ + "mod", + "rare", + "kavat", + "vasca_kavat" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Draining Bite", + "icon": "items/images/en/draining_bite.4b56d382edcac59da94f7163bbf4efd4.png", + "thumb": "items/images/en/thumbs/draining_bite.4b56d382edcac59da94f7163bbf4efd4.128x128.png" + } + } + }, + { + "id": "5f498a1f9426ed00443bd099", + "slug": "necramech_slipstream", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechSlideSpeedMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Slipstream", + "icon": "items/images/en/necramech_slipstream.b5c850017828708c1576b860b787eeb6.png", + "thumb": "items/images/en/thumbs/necramech_slipstream.b5c850017828708c1576b860b787eeb6.128x128.png" + } + } + }, + { + "id": "5f498a1f9426ed00443bd09c", + "slug": "acidic_spittle", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedPredatorSpitAcidPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "vizier_predasite" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Acidic Spittle", + "icon": "items/images/en/acidic_spittle.65e03dd651fa5e263fa011a352c12f7e.png", + "thumb": "items/images/en/thumbs/acidic_spittle.65e03dd651fa5e263fa011a352c12f7e.128x128.png" + } + } + }, + { + "id": "5f498a1f9426ed00443bd09d", + "slug": "endoparasitic_vector", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedPredatorSpitParasitePrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "pharaoh_predasite" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Endoparasitic Vector", + "icon": "items/images/en/endoparasitic_vector.859783a4c5f3b7251771d56121f34ca5.png", + "thumb": "items/images/en/thumbs/endoparasitic_vector.859783a4c5f3b7251771d56121f34ca5.128x128.png" + } + } + }, + { + "id": "5f498a1f9426ed00443bd09e", + "slug": "necramech_thrusters", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechBoostMaxMod", + "tags": [ + "mod", + "rare", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Thrusters", + "icon": "items/images/en/necramech_thrusters.3b81fa35b2c3386ac45b4c06c543d608.png", + "thumb": "items/images/en/thumbs/necramech_thrusters.3b81fa35b2c3386ac45b4c06c543d608.128x128.png" + } + } + }, + { + "id": "5f498a1f9426ed00443bd0a0", + "slug": "damaged_necramech_weapon_pod", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/DamagedMechPartWeaponPodItem", + "tags": [ + "necramech", + "component", + "damaged" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Weapon Pod", + "icon": "items/images/en/damaged_necramech_weapon_pod.e008174ff300af7f99fd100df35b7652.png", + "thumb": "items/images/en/thumbs/damaged_necramech_weapon_pod.e008174ff300af7f99fd100df35b7652.128x128.png" + } + } + }, + { + "id": "5f498a209426ed00443bd0a3", + "slug": "faceted_tiametrite", + "gameRef": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Faceted Tiametrite", + "icon": "items/images/en/faceted_tiametrite.aa463bcd1c7e977a29a8cd586a8d3e9f.png", + "thumb": "items/images/en/thumbs/faceted_tiametrite.aa463bcd1c7e977a29a8cd586a8d3e9f.128x128.png" + } + } + }, + { + "id": "5f498a209426ed00443bd0a4", + "slug": "damaged_necramech_engine", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/DamagedMechPartEngineItem", + "tags": [ + "necramech", + "component", + "damaged" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Engine", + "icon": "items/images/en/damaged_necramech_engine.f3362d44d24c273f8799f229983e53d6.png", + "thumb": "items/images/en/thumbs/damaged_necramech_engine.f3362d44d24c273f8799f229983e53d6.128x128.png" + } + } + }, + { + "id": "5f498a209426ed00443bd0a5", + "slug": "bomb_the_landin", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBGrindSlamMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Bomb The Landin'", + "icon": "items/images/en/bomb_the_landin.76b97b09964cf235756634c86322d66d.png", + "thumb": "items/images/en/thumbs/bomb_the_landin.76b97b09964cf235756634c86322d66d.128x128.png" + } + } + }, + { + "id": "57e91e65c76eb74c087f4931", + "slug": "ayatan_sah_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexA", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 2, + "baseEndo": 300, + "endoMultiplier": 2, + "i18n": { + "en": { + "name": "Ayatan Sah Sculpture", + "icon": "items/images/en/ayatan_sah_sculpture.29dc05cf1143890b000ce67f6af4660c.png", + "thumb": "items/images/en/thumbs/ayatan_sah_sculpture.29dc05cf1143890b000ce67f6af4660c.128x128.png" + } + } + }, + { + "id": "5800c6c9c021d9dc0a9f8917", + "slug": "red_veil_augment_mod", + "gameRef": "", + "tags": [ + "syndicate", + "mod", + "rare" + ], + "i18n": { + "en": { + "name": "Red Veil Augment Mod", + "icon": "items/images/en/red_veil_augment_mod.716a6ecba2be791e9960cdd5ae73927c.webp", + "thumb": "items/images/en/thumbs/red_veil_augment_mod.716a6ecba2be791e9960cdd5ae73927c.128x128.webp" + } + } + }, + { + "id": "5800c901c021d9dc0a9f891b", + "slug": "cunning_aspect", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPRapierStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "rapiers", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cunning Aspect", + "icon": "items/images/en/cunning_aspect.e96626645e49485235fb748ede495988.png", + "thumb": "items/images/en/thumbs/cunning_aspect.e96626645e49485235fb748ede495988.128x128.png" + } + } + }, + { + "id": "5788fadc4fff472f131a1362", + "slug": "reflect", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowReflectPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "adarza_kavat" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Reflect", + "icon": "items/images/en/reflect.425845045b282ef7487fc8f5566cc6d5.png", + "thumb": "items/images/en/thumbs/reflect.425845045b282ef7487fc8f5566cc6d5.128x128.png" + } + } + }, + { + "id": "5800c901c021d9dc0a9f891d", + "slug": "rending_wind", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPMacheteStanceOne", + "tags": [ + "pvp", + "uncommon", + "machetes", + "stance", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rending Wind", + "icon": "items/images/en/rending_wind.a5712d17ddc13c130600bd4aace80eb5.png", + "thumb": "items/images/en/thumbs/rending_wind.a5712d17ddc13c130600bd4aace80eb5.128x128.png" + } + } + }, + { + "id": "578d33bf34003bbbb9e20922", + "slug": "corvas_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchCannonReceiver", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Corvas Receiver", + "icon": "items/images/en/corvas_receiver.0248b2ad006d7ad6a460cc03eac4baa7.png", + "thumb": "items/images/en/thumbs/corvas_receiver.0248b2ad006d7ad6a460cc03eac4baa7.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5800c901c021d9dc0a9f891e", + "slug": "noble_cadence", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPHeavyBladeStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "mod", + "heavy_blade" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Noble Cadence", + "icon": "items/images/en/noble_cadence.181a81c57ee312bbd781192b6369efb2.png", + "thumb": "items/images/en/thumbs/noble_cadence.181a81c57ee312bbd781192b6369efb2.128x128.png" + } + } + }, + { + "id": "580e38faca550948410af0a4", + "slug": "thermagnetic_shells", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/CorpusArena/SupraCorpusArenaMod", + "tags": [ + "mod", + "detron", + "rare", + "secondary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Thermagnetic Shells", + "icon": "items/images/en/thermagnetic_shells.7e23022e67e879991e92e22ac7ce2727.png", + "thumb": "items/images/en/thumbs/thermagnetic_shells.7e23022e67e879991e92e22ac7ce2727.128x128.png" + } + } + }, + { + "id": "578d33bf34003bbbb9e20923", + "slug": "corvas_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchCannonStock", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Corvas Stock", + "icon": "items/images/en/corvas_stock.0248b2ad006d7ad6a460cc03eac4baa7.png", + "thumb": "items/images/en/thumbs/corvas_stock.0248b2ad006d7ad6a460cc03eac4baa7.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "580e38faca550948410af0a5", + "slug": "kinetic_ricochet", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/CorpusArena/TetraCorpusArenaMod", + "tags": [ + "mod", + "rare", + "primary", + "tetra" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Kinetic Ricochet", + "icon": "items/images/en/kinetic_ricochet.423f655d2eba5b3a75aeb653cde307bb.png", + "thumb": "items/images/en/thumbs/kinetic_ricochet.423f655d2eba5b3a75aeb653cde307bb.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a51e", + "slug": "mortal_conduct", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Melee/ChannelingEfficiencyOnLowHealth", + "tags": [ + "mod", + "rare", + "pvp", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mortal Conduct", + "icon": "items/images/en/mortal_conduct.1891d5e6d5e0cb468f6d0947d91bf260.png", + "thumb": "items/images/en/thumbs/mortal_conduct.1891d5e6d5e0cb468f6d0947d91bf260.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156ec", + "slug": "parry", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarParryMeleeMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Parry", + "icon": "items/images/en/parry.4b54740be3c6ad73ed79e1406345762e.png", + "thumb": "items/images/en/thumbs/parry.4b54740be3c6ad73ed79e1406345762e.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff5f", + "slug": "sicarus_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/SicarusPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sicarus Prime Blueprint", + "icon": "items/images/en/sicarus_prime_blueprint.e7c07172e6d63d49ae349d508c56fc85.png", + "thumb": "items/images/en/thumbs/sicarus_prime_blueprint.e7c07172e6d63d49ae349d508c56fc85.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "591844575c170664fbd37eb2", + "slug": "gorgon_wraith_set", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/WraithGorgon/WraithGorgon", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Gorgon Wraith Set", + "icon": "items/images/en/gorgon_wraith_set.2fe2c6cae89adbecbba049aafcd664d7.png", + "thumb": "items/images/en/thumbs/gorgon_wraith_set.2fe2c6cae89adbecbba049aafcd664d7.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ef", + "slug": "rising_skill", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/MoreBulletJumpLessShieldMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rising Skill", + "icon": "items/images/en/rising_skill.949f1c9112ed0168fc73027fae5449c7.png", + "thumb": "items/images/en/thumbs/rising_skill.949f1c9112ed0168fc73027fae5449c7.128x128.png" + } + } + }, + { + "id": "5526aec0e779896af9418259", + "slug": "fracturing_crush", + "gameRef": "/Lotus/Powersuits/Mag/CrushAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mag" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fracturing Crush", + "icon": "items/images/en/fracturing_crush.c5cfd74639913a1d6e95631afdbcb475.png", + "thumb": "items/images/en/thumbs/fracturing_crush.c5cfd74639913a1d6e95631afdbcb475.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff41", + "slug": "fang_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/FangPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Fang Prime Blueprint", + "icon": "items/images/en/fang_prime_blueprint.13b0c690a76382d0fbdebe84e4c509db.png", + "thumb": "items/images/en/thumbs/fang_prime_blueprint.13b0c690a76382d0fbdebe84e4c509db.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "554d3af4e77989420d3de2a6", + "slug": "radiant_finish", + "gameRef": "/Lotus/Powersuits/Excalibur/RadialBlindAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "excalibur" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Radiant Finish", + "icon": "items/images/en/radiant_finish.e4571603960bba734886efc1e0a0968b.png", + "thumb": "items/images/en/thumbs/radiant_finish.e4571603960bba734886efc1e0a0968b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155a9", + "slug": "ferocity", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/KubrowFinisherMod", + "tags": [ + "mod", + "rare", + "kubrow", + "sahasa_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ferocity", + "icon": "items/images/en/ferocity.e496448d2a03f2483e844e84edf17d3a.png", + "thumb": "items/images/en/thumbs/ferocity.e496448d2a03f2483e844e84edf17d3a.128x128.png" + } + } + }, + { + "id": "57222f1692cc365777a61c0e", + "slug": "xiphos_set", + "gameRef": "/Lotus/Types/Items/Ships/GyroscopeShip", + "tags": [ + "set" + ], + "i18n": { + "en": { + "name": "Xiphos Set", + "icon": "items/images/en/xiphos_set.452dba7ad34799a24d7d72d8f5e206eb.png", + "thumb": "items/images/en/thumbs/xiphos_set.452dba7ad34799a24d7d72d8f5e206eb.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515616", + "slug": "high_voltage", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/ElectEventRifleMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "High Voltage", + "icon": "items/images/en/high_voltage.7cbb2f64f8466287ca44afd08e952311.png", + "thumb": "items/images/en/thumbs/high_voltage.7cbb2f64f8466287ca44afd08e952311.128x128.png" + } + } + }, + { + "id": "573b7fc20ec44a47787a690e", + "slug": "vauban_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VaubanPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Vauban Prime Chassis Blueprint", + "icon": "items/images/en/vauban_prime_chassis.9c15bb47d3ed4ed8e960c2502fac82f2.png", + "thumb": "items/images/en/thumbs/vauban_prime_chassis.9c15bb47d3ed4ed8e960c2502fac82f2.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848f4", + "slug": "recharge_barrier", + "gameRef": "/Lotus/Powersuits/Volt/ShieldPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "volt" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Recharge Barrier", + "icon": "items/images/en/recharge_barrier.80e4da5d8308bf138ef9f78e5c19cd70.png", + "thumb": "items/images/en/thumbs/recharge_barrier.80e4da5d8308bf138ef9f78e5c19cd70.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ff", + "slug": "tempered_bound", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/MoreShieldLessBulletJumpMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tempered Bound", + "icon": "items/images/en/tempered_bound.cdc7368fa20d61eaecae92f5527dfb18.png", + "thumb": "items/images/en/thumbs/tempered_bound.cdc7368fa20d61eaecae92f5527dfb18.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a50c", + "slug": "focused_acceleration", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/TetraFasterProjAiming", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "tetra" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Focused Acceleration", + "icon": "items/images/en/focused_acceleration.57d5093216cb556eaa9275e6f8b69eb7.png", + "thumb": "items/images/en/thumbs/focused_acceleration.57d5093216cb556eaa9275e6f8b69eb7.128x128.png" + } + } + }, + { + "id": "554d3f0ce779894445a848ff", + "slug": "collision_force", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponEventMeleeImpactDamageMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Collision Force", + "icon": "items/images/en/collision_force.2f14bb6f9c6d9e152d5e836124c8c4b0.png", + "thumb": "items/images/en/thumbs/collision_force.2f14bb6f9c6d9e152d5e836124c8c4b0.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff4a", + "slug": "latron_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/LatronPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Latron Prime Blueprint", + "icon": "items/images/en/latron_prime_blueprint.5c8b8009acbdb97fd49177ba155ecfbe.png", + "thumb": "items/images/en/thumbs/latron_prime_blueprint.5c8b8009acbdb97fd49177ba155ecfbe.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff33", + "slug": "braton_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/BratonPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Braton Prime Blueprint", + "icon": "items/images/en/braton_prime_blueprint.ae229642d6179ebfb1547ed7d976e749.png", + "thumb": "items/images/en/thumbs/braton_prime_blueprint.ae229642d6179ebfb1547ed7d976e749.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5655c48eb66f832e0427152e", + "slug": "defiled_snapdragon", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/SwordWhipCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "blade_and_whip" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Defiled Snapdragon", + "icon": "items/images/en/defiled_snapdragon.9fd00844944ef39ab71bf98118a56a55.png", + "thumb": "items/images/en/thumbs/defiled_snapdragon.9fd00844944ef39ab71bf98118a56a55.128x128.png" + } + } + }, + { + "id": "56c3bbf85d2f0202da32e942", + "slug": "nikana_prime_hilt", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeNikanaHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Nikana Prime Hilt", + "icon": "items/images/en/nikana_prime_hilt.2daac0807a52385bfcf62f71075f2221.png", + "thumb": "items/images/en/thumbs/nikana_prime_hilt.2daac0807a52385bfcf62f71075f2221.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4ea", + "slug": "recuperate", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/RestoreHealthOnKillMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Recuperate", + "icon": "items/images/en/recuperate.2ea103ce905a7fe31472049be189dbdb.png", + "thumb": "items/images/en/thumbs/recuperate.2ea103ce905a7fe31472049be189dbdb.128x128.png" + } + } + }, + { + "id": "56c3bbfc5d2f0202da32e943", + "slug": "nikana_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeKatana/PrimeNikana", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Nikana Prime Set", + "icon": "items/images/en/nikana_prime_set.2daac0807a52385bfcf62f71075f2221.png", + "thumb": "items/images/en/thumbs/nikana_prime_set.2daac0807a52385bfcf62f71075f2221.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515674", + "slug": "vital_sense", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponCritDamageMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vital Sense", + "icon": "items/images/en/vital_sense.bae6419bd652a53a3bdb0a8f1e75abd1.png", + "thumb": "items/images/en/thumbs/vital_sense.bae6419bd652a53a3bdb0a8f1e75abd1.128x128.png" + } + } + }, + { + "id": "58358a0c2c2ada0047b386f9", + "slug": "valkyr_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ValkyrPrimeSystemsBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Valkyr Prime Systems Blueprint", + "icon": "items/images/en/valkyr_prime_systems.a5c906d66a11ff70158f0ffad0c628e8.png", + "thumb": "items/images/en/thumbs/valkyr_prime_systems.a5c906d66a11ff70158f0ffad0c628e8.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "58284d9f0af2540aa8de3495", + "slug": "cyngas_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchBurstGun/ArchBurstGun", + "tags": [ + "weapon", + "set", + "primary", + "archwing" + ], + "i18n": { + "en": { + "name": "Cyngas Set", + "icon": "items/images/en/cyngas_set.5b9891a467264b6048cd58b409911767.png", + "thumb": "items/images/en/thumbs/cyngas_set.5b9891a467264b6048cd58b409911767.128x128.png" + } + } + }, + { + "id": "582b0eb80af25410a4931616", + "slug": "broken_war_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoSmallSword", + "tags": [ + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Broken War Set", + "icon": "items/images/en/broken_war_set.a42d7af24d80abea602d631293f89b13.png", + "thumb": "items/images/en/thumbs/broken_war_set.a42d7af24d80abea602d631293f89b13.128x128.png" + } + } + }, + { + "id": "58358e1b2c2ada00655a4ef5", + "slug": "venka_prime_gauntlet", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeVenkaClawsGauntlet", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Venka Prime Gauntlet", + "icon": "items/images/en/venka_prime_gauntlet.123cb62ab1e8a4edd78997a256cf1e7f.png", + "thumb": "items/images/en/thumbs/venka_prime_gauntlet.123cb62ab1e8a4edd78997a256cf1e7f.128x128.png", + "subIcon": "sub_icons/weapon/prime_gauntlet_128x128.png" + } + } + }, + { + "id": "582b0f630af25410b099f7f7", + "slug": "kaszas_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/ArchScythe/ArchScythe", + "tags": [ + "weapon", + "set", + "melee", + "archwing" + ], + "i18n": { + "en": { + "name": "Kaszas Set", + "icon": "items/images/en/kaszas_set.11baea8229af2d3500c79b829f9dfcee.png", + "thumb": "items/images/en/thumbs/kaszas_set.11baea8229af2d3500c79b829f9dfcee.128x128.png" + } + } + }, + { + "id": "582b0f850af25410b099f7f8", + "slug": "velocitus_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/Railgun/ArchRailgun", + "tags": [ + "weapon", + "set", + "primary", + "archwing" + ], + "i18n": { + "en": { + "name": "Velocitus Set", + "icon": "items/images/en/velocitus_set.0e2289bd3cc8bba9a0393d1fad061ab6.png", + "thumb": "items/images/en/thumbs/velocitus_set.0e2289bd3cc8bba9a0393d1fad061ab6.128x128.png" + } + } + }, + { + "id": "582b0f850af25410b099f7f9", + "slug": "fluctus_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/RocketArtillery/ArchRocketCrossbow", + "tags": [ + "weapon", + "set", + "primary", + "archwing" + ], + "i18n": { + "en": { + "name": "Fluctus Set", + "icon": "items/images/en/fluctus_set.764b2148dde0c8969f748d6e0b80f957.png", + "thumb": "items/images/en/thumbs/fluctus_set.764b2148dde0c8969f748d6e0b80f957.128x128.png" + } + } + }, + { + "id": "582b0f860af25410b099f7fa", + "slug": "dual_decurion_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchwingHeavyPistols/ArchHeavyPistols", + "tags": [ + "weapon", + "set", + "primary", + "archwing" + ], + "i18n": { + "en": { + "name": "Dual Decurion Set", + "icon": "items/images/en/dual_decurion_set.5682bc698e5481541faba69246a2c248.png", + "thumb": "items/images/en/thumbs/dual_decurion_set.5682bc698e5481541faba69246a2c248.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4cc", + "slug": "broad_eye", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/HigherAirAimFoVShotgunMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Broad Eye", + "icon": "items/images/en/broad_eye.fa3689964ba1794a59a3c0acbcf53747.png", + "thumb": "items/images/en/thumbs/broad_eye.fa3689964ba1794a59a3c0acbcf53747.128x128.png" + } + } + }, + { + "id": "5911f11d97a0add8e9d5da4e", + "slug": "voltage_sequence", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/LankaMod", + "tags": [ + "syndicate", + "mod", + "rare", + "primary", + "lanka" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Voltage Sequence", + "icon": "items/images/en/voltage_sequence.65e42495eb08f41e8bbeb35b041e981a.png", + "thumb": "items/images/en/thumbs/voltage_sequence.65e42495eb08f41e8bbeb35b041e981a.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff22", + "slug": "akbronco_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AkbroncoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Akbronco Prime Blueprint", + "icon": "items/images/en/akbronco_prime_blueprint.34b5a7f99e5f8c15cc2039a76c725069.png", + "thumb": "items/images/en/thumbs/akbronco_prime_blueprint.34b5a7f99e5f8c15cc2039a76c725069.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155ab", + "slug": "cryo_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFreezeDamageMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cryo Rounds", + "icon": "items/images/en/cryo_rounds.9bacdbefd01ad43bd260e7d4eff4979c.png", + "thumb": "items/images/en/thumbs/cryo_rounds.9bacdbefd01ad43bd260e7d4eff4979c.128x128.png" + } + } + }, + { + "id": "577010aec79e68a7a8038fba", + "slug": "silent_battery", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/ProjectNightwatch/WeaponNoiseReductionMod", + "tags": [ + "shotgun", + "mod", + "uncommon", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Silent Battery", + "icon": "items/images/en/silent_battery.ada38cfce270e47d0cb77789c016bf97.png", + "thumb": "items/images/en/thumbs/silent_battery.ada38cfce270e47d0cb77789c016bf97.128x128.png" + } + } + }, + { + "id": "5783bf37d9b6753790c89e91", + "slug": "phaedra_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchLongRifleReceiver", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Phaedra Receiver", + "icon": "items/images/en/phaedra_receiver.93a06c74d5ecc242c76ea0ff91e3d9ca.png", + "thumb": "items/images/en/thumbs/phaedra_receiver.93a06c74d5ecc242c76ea0ff91e3d9ca.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192111", + "slug": "euphona_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/Prime1HShotgunReceiver", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Euphona Prime Receiver", + "icon": "items/images/en/euphona_prime_receiver.6a18cc50c57ac13c3203e872baf85a8d.png", + "thumb": "items/images/en/thumbs/euphona_prime_receiver.6a18cc50c57ac13c3203e872baf85a8d.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e5155b7", + "slug": "transient_fortitude", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/CorruptedPowerStrengthPowerDurationWarframe", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Transient Fortitude", + "icon": "items/images/en/transient_fortitude.9faec0880e8bf9b85e7282b3df213b69.png", + "thumb": "items/images/en/thumbs/transient_fortitude.9faec0880e8bf9b85e7282b3df213b69.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51565d", + "slug": "concussion_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponImpactDamageMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Concussion Rounds", + "icon": "items/images/en/concussion_rounds.70734249af78588ef7b828fcaea629aa.png", + "thumb": "items/images/en/thumbs/concussion_rounds.70734249af78588ef7b828fcaea629aa.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51565e", + "slug": "howl", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowFearPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "raksa_kubrow" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Howl", + "icon": "items/images/en/howl.2ee2ca32433b9f7f46f6c7162f8465a9.png", + "thumb": "items/images/en/thumbs/howl.2ee2ca32433b9f7f46f6c7162f8465a9.128x128.png" + } + } + }, + { + "id": "5783bf62d9b6753790c89e9a", + "slug": "agkuza_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchHookSwordHandle", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Agkuza Handle", + "icon": "items/images/en/agkuza_handle.037f45c1777df3ce5657b0c40aac04b1.png", + "thumb": "items/images/en/thumbs/agkuza_handle.037f45c1777df3ce5657b0c40aac04b1.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "559daad8e779897b4f59525f", + "slug": "carrier_prime_systems", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCarrierSystems", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Carrier Prime Systems", + "icon": "items/images/en/carrier_prime_systems.1f39e6e9ecef0225b0755dd5c89f3cc8.png", + "thumb": "items/images/en/thumbs/carrier_prime_systems.1f39e6e9ecef0225b0755dd5c89f3cc8.128x128.png", + "subIcon": "sub_icons/sentinel/prime_systems_128x128.png" + } + } + }, + { + "id": "55c15459e779895dd6f10f59", + "slug": "covert_lethality", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeStealthLethalMod", + "tags": [ + "mod", + "daggers", + "rare", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Covert Lethality", + "icon": "items/images/en/covert_lethality.bdddef2fb5c4e8f763467ee054206363.png", + "thumb": "items/images/en/thumbs/covert_lethality.bdddef2fb5c4e8f763467ee054206363.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a509", + "slug": "feathered_arrows", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/HigherVelocityLessDamageBowMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "bow", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Feathered Arrows", + "icon": "items/images/en/feathered_arrows.c024ea4e02bfe81e74a987d71e60c886.png", + "thumb": "items/images/en/thumbs/feathered_arrows.c024ea4e02bfe81e74a987d71e60c886.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a517", + "slug": "loaded_capacity", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/LargerMagLongerReloadShotgunMod", + "tags": [ + "common", + "primary", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Loaded Capacity", + "icon": "items/images/en/loaded_capacity.9a437854153a40b04909bd36b19dc036.png", + "thumb": "items/images/en/thumbs/loaded_capacity.9a437854153a40b04909bd36b19dc036.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a518", + "slug": "loose_chamber", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/FasterReloadMoreRecoilShotgunMod", + "tags": [ + "common", + "primary", + "pvp", + "shotgun", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Loose Chamber", + "icon": "items/images/en/loose_chamber.f9ed43a1b642506e5a9851aff8c04614.png", + "thumb": "items/images/en/thumbs/loose_chamber.f9ed43a1b642506e5a9851aff8c04614.128x128.png" + } + } + }, + { + "id": "568c177fc221c673bc088845", + "slug": "armored_evade", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/DamageResistanceLessSlide", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Armored Evade", + "icon": "items/images/en/armored_evade.726f03c9e8f010cb3074d216fc1a68f2.png", + "thumb": "items/images/en/thumbs/armored_evade.726f03c9e8f010cb3074d216fc1a68f2.128x128.png" + } + } + }, + { + "id": "56a7b2a91133f656cb085d94", + "slug": "nano_applicator", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/StatusProcWhileAimingShotgunMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Nano-Applicator", + "icon": "items/images/en/nano_applicator.ec520af73a56f8c1db97dafface96ddc.png", + "thumb": "items/images/en/thumbs/nano_applicator.ec520af73a56f8c1db97dafface96ddc.128x128.png" + } + } + }, + { + "id": "56a7b2b21133f656cb085d96", + "slug": "focused_defense", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Channel/ChannelArmourMod", + "tags": [ + "common", + "mod", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Focused Defense", + "icon": "items/images/en/focused_defense.1afc7dee960645e6988770142ddf3cdd.png", + "thumb": "items/images/en/thumbs/focused_defense.1afc7dee960645e6988770142ddf3cdd.128x128.png" + } + } + }, + { + "id": "56a7b2b71133f656cb085d97", + "slug": "guided_ordnance", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/AccuracyWhileAimingRifleMod", + "tags": [ + "mod", + "uncommon", + "primary", + "assault_rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Guided Ordnance", + "icon": "items/images/en/guided_ordnance.8c6d41220c28637b737a2b8a001d4b56.png", + "thumb": "items/images/en/thumbs/guided_ordnance.8c6d41220c28637b737a2b8a001d4b56.128x128.png" + } + } + }, + { + "id": "56aba2e88d6d183da42403be", + "slug": "strun_wraith_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/StrunWraithBlueprint", + "tags": [ + "weapon", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Strun Wraith Blueprint", + "icon": "items/images/en/strun_wraith_blueprint.0ef693321b08beb361c5a654663ecf32.png", + "thumb": "items/images/en/thumbs/strun_wraith_blueprint.0ef693321b08beb361c5a654663ecf32.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "56b656d9ef0390c7e4006382", + "slug": "titanic_rumbler", + "gameRef": "/Lotus/Powersuits/Brawler/BrawlerSummonAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "atlas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Titanic Rumbler", + "icon": "items/images/en/titanic_rumbler.6a8bbd8149ae32220e27a4d5f95d1958.png", + "thumb": "items/images/en/thumbs/titanic_rumbler.6a8bbd8149ae32220e27a4d5f95d1958.128x128.png" + } + } + }, + { + "id": "56c3bc025d2f0202da32e944", + "slug": "spira_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeLiDaggerBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Spira Prime Blueprint", + "icon": "items/images/en/spira_prime_blueprint.1a495b1cb31bba268dc7a50f2a4f7134.png", + "thumb": "items/images/en/thumbs/spira_prime_blueprint.1a495b1cb31bba268dc7a50f2a4f7134.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "56c3bc1c5d2f0202da32e947", + "slug": "spira_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/PrimeLiDagger/PrimeLiDagger", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Spira Prime Set", + "icon": "items/images/en/spira_prime_set.1a495b1cb31bba268dc7a50f2a4f7134.png", + "thumb": "items/images/en/thumbs/spira_prime_set.1a495b1cb31bba268dc7a50f2a4f7134.128x128.png" + } + } + }, + { + "id": "56dac54b5cc639de0a45c516", + "slug": "sheev_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GrineerCombatKnifeBlade", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sheev Blade", + "icon": "items/images/en/sheev_blade.96c63b432f3d71f2bf5918e9f8d721fa.png", + "thumb": "items/images/en/thumbs/sheev_blade.96c63b432f3d71f2bf5918e9f8d721fa.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "56dac55b5cc639de0a45c518", + "slug": "sheev_heatsink", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GrineerCombatKnifeHeatsink", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sheev Heatsink", + "icon": "items/images/en/sheev_heatsink.96c63b432f3d71f2bf5918e9f8d721fa.png", + "thumb": "items/images/en/thumbs/sheev_heatsink.96c63b432f3d71f2bf5918e9f8d721fa.128x128.png", + "subIcon": "sub_icons/weapon/generic_heatsink_128x128.png" + } + } + }, + { + "id": "56dac5645cc639de0a45c51a", + "slug": "sheev_set", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerCombatKnife/GrineerCombatKnife", + "tags": [ + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Sheev Set", + "icon": "items/images/en/sheev_set.96c63b432f3d71f2bf5918e9f8d721fa.png", + "thumb": "items/images/en/thumbs/sheev_set.96c63b432f3d71f2bf5918e9f8d721fa.128x128.png" + } + } + }, + { + "id": "56dac5705cc639de0a45c51c", + "slug": "rumbled", + "gameRef": "/Lotus/Powersuits/Brawler/BrawlerSummonPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "atlas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Rumbled", + "icon": "items/images/en/rumbled.d74e43fab8d802bc1fa379104817a302.png", + "thumb": "items/images/en/thumbs/rumbled.d74e43fab8d802bc1fa379104817a302.128x128.png" + } + } + }, + { + "id": "5707cc0da820909ab922558f", + "slug": "snipetron_vandal_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/SnipetronVandalBlueprint", + "tags": [ + "weapon", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Snipetron Vandal Blueprint", + "icon": "items/images/en/snipetron_vandal_blueprint.d820059db951ba5a4ac7c1d7ec8515f1.png", + "thumb": "items/images/en/thumbs/snipetron_vandal_blueprint.d820059db951ba5a4ac7c1d7ec8515f1.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5729bcfecb59ed5a9b484e8b", + "slug": "hunters_bonesaw", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/ProjectNightwatch/RipkasNightwatchMod", + "tags": [ + "mod", + "uncommon", + "melee", + "ripkas" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunter's Bonesaw", + "icon": "items/images/en/hunters_bonesaw.1147f425657d68c8ebf0e0b8a15aaf00.png", + "thumb": "items/images/en/thumbs/hunters_bonesaw.1147f425657d68c8ebf0e0b8a15aaf00.128x128.png" + } + } + }, + { + "id": "5783beebd9b6753790c89e88", + "slug": "velocitus_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchRailgunBarrel", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Velocitus Barrel", + "icon": "items/images/en/velocitus_barrel.0e2289bd3cc8bba9a0393d1fad061ab6.png", + "thumb": "items/images/en/thumbs/velocitus_barrel.0e2289bd3cc8bba9a0393d1fad061ab6.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "595567c18e34b5ed3cb3d9be", + "slug": "toxin_resistance", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerPoisonImmunityAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Toxin Resistance", + "icon": "items/images/en/toxin_resistance.d7d61c40b26bb9842aa608479c9ca8a1.png", + "thumb": "items/images/en/thumbs/toxin_resistance.d7d61c40b26bb9842aa608479c9ca8a1.128x128.png" + } + } + }, + { + "id": "59a5c2565cd9938cfede7040", + "slug": "nami_skyla_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeNamiSkyla/PrimeNamiSkyla", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Nami Skyla Prime Set", + "icon": "items/images/en/nami_skyla_prime_set.d83bcdd72463d5dd1f78faea07ff02a4.png", + "thumb": "items/images/en/thumbs/nami_skyla_prime_set.d83bcdd72463d5dd1f78faea07ff02a4.128x128.png" + } + } + }, + { + "id": "5ab167b7b2b6a80475780fb3", + "slug": "kronen_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Tonfa/TonfaContestWinnerPrime/TonfaContestWinnerPrimeWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Kronen Prime Set", + "icon": "items/images/en/kronen_prime_set.09023145e06199878b94a9c664e95ce7.png", + "thumb": "items/images/en/thumbs/kronen_prime_set.09023145e06199878b94a9c664e95ce7.128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c31192117", + "slug": "helios_prime_systems", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeHeliosSystems", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Helios Prime Systems", + "icon": "items/images/en/helios_prime_systems.625b7c74ea5dd61b1840f8094df7648a.png", + "thumb": "items/images/en/thumbs/helios_prime_systems.625b7c74ea5dd61b1840f8094df7648a.128x128.png", + "subIcon": "sub_icons/sentinel/prime_systems_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515683", + "slug": "extend", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingMeleeRangeIncMod", + "tags": [ + "common", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Extend", + "icon": "items/images/en/extend.12e6d7c851dc98d1acee4856d59efa51.png", + "thumb": "items/images/en/thumbs/extend.12e6d7c851dc98d1acee4856d59efa51.128x128.png" + } + } + }, + { + "id": "5a0ef77010bc4000b8a7c12a", + "slug": "primed_fever_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponToxinDamageModExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Fever Strike", + "icon": "items/images/en/primed_fever_strike.a0dc6eb9fbb4c6648aed7793ca40286b.png", + "thumb": "items/images/en/thumbs/primed_fever_strike.a0dc6eb9fbb4c6648aed7793ca40286b.128x128.png" + } + } + }, + { + "id": "5a26c31dc2c9e903a8381330", + "slug": "exodia_contagion", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/MeleeArcaneProjectileOnJump", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Contagion", + "icon": "items/images/en/exodia_contagion.f1cb19151ee32fa1ee23a778cba612a2.png", + "thumb": "items/images/en/thumbs/exodia_contagion.f1cb19151ee32fa1ee23a778cba612a2.128x128.png" + } + } + }, + { + "id": "5ab167b8b2b6a80475780fc0", + "slug": "tiberon_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeTiberon/PrimeTiberonRifle", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Tiberon Prime Set", + "icon": "items/images/en/tiberon_prime_set.53f3cf1c68314c0555fbb7020d01f001.png", + "thumb": "items/images/en/thumbs/tiberon_prime_set.53f3cf1c68314c0555fbb7020d01f001.128x128.png" + } + } + }, + { + "id": "5a26c320c2c9e903a8381331", + "slug": "exodia_epidemic", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/MeleeArcaneShockwaveOnJump", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Epidemic", + "icon": "items/images/en/exodia_epidemic.3807403ba71019a6186468b251bc1d3a.png", + "thumb": "items/images/en/thumbs/exodia_epidemic.3807403ba71019a6186468b251bc1d3a.128x128.png" + } + } + }, + { + "id": "5a2feeb1c2c9e90cbdaa23d2", + "slug": "mirage_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MiragePrimeSystemsBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Mirage Prime Systems Blueprint", + "icon": "items/images/en/mirage_prime_systems.e7f8f484dd6ae6c35f0767fff35a5109.png", + "thumb": "items/images/en/thumbs/mirage_prime_systems.e7f8f484dd6ae6c35f0767fff35a5109.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5a2feeb2c2c9e90cbdaa23d4", + "slug": "mirage_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MiragePrimeBlueprint", + "tags": [ + "warframe", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Mirage Prime Blueprint", + "icon": "items/images/en/mirage_prime_blueprint.e7f8f484dd6ae6c35f0767fff35a5109.png", + "thumb": "items/images/en/thumbs/mirage_prime_blueprint.e7f8f484dd6ae6c35f0767fff35a5109.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5b6b4850b6de79023813f39e", + "slug": "primed_quickdraw", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/WeaponReloadSpeedModExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Quickdraw", + "icon": "items/images/en/primed_quickdraw.1768ebb4f9758fa903319e3979fa2239.png", + "thumb": "items/images/en/thumbs/primed_quickdraw.1768ebb4f9758fa903319e3979fa2239.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b2", + "slug": "mecha_recharge", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Mecha/KubrowMechaRechargeMod", + "tags": [ + "mod", + "kubrow", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Mecha Recharge", + "icon": "items/images/en/mecha_recharge.ad2ed0653bd34e4023b9d91f3d06adbe.png", + "thumb": "items/images/en/thumbs/mecha_recharge.ad2ed0653bd34e4023b9d91f3d06adbe.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b6", + "slug": "synth_fiber", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Synth/SentinelSynthFibersMod", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Synth Fiber", + "icon": "items/images/en/synth_fiber.f1546bfa7427c3f2395d74e23a2a3329.png", + "thumb": "items/images/en/thumbs/synth_fiber.f1546bfa7427c3f2395d74e23a2a3329.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515621", + "slug": "hush", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponNoiseReductionMod", + "tags": [ + "common", + "mod", + "rifle", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hush", + "icon": "items/images/en/hush.59b2133ac35cd53a445a9fe50fd7b164.png", + "thumb": "items/images/en/thumbs/hush.59b2133ac35cd53a445a9fe50fd7b164.128x128.png" + } + } + }, + { + "id": "573b80280ec44a47787a6913", + "slug": "fragor_prime_head", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/FragorPrimeHead", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Fragor Prime Head", + "icon": "items/images/en/fragor_prime_head.2b917b8a12f0981ff0a9a48c6c24edb1.png", + "thumb": "items/images/en/thumbs/fragor_prime_head.2b917b8a12f0981ff0a9a48c6c24edb1.128x128.png", + "subIcon": "sub_icons/weapon/prime_head_128x128.png" + } + } + }, + { + "id": "58dbcc9e70b42255d6321e8f", + "slug": "trample", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/ChargerChargePrecept", + "tags": [ + "mod", + "rare", + "helminth charger", + "helminth_charger" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Trample", + "icon": "items/images/en/trample.c4c4b3a1b2570c07b06a3ffd9186a958.png", + "thumb": "items/images/en/thumbs/trample.c4c4b3a1b2570c07b06a3ffd9186a958.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515632", + "slug": "metal_auger", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponPunctureDepthMod", + "tags": [ + "mod", + "rare", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Metal Auger", + "icon": "items/images/en/metal_auger.7bf25eea245e421353f314be233d46c0.png", + "thumb": "items/images/en/thumbs/metal_auger.7bf25eea245e421353f314be233d46c0.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515634", + "slug": "master_thief", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarChanceToLoot", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Master Thief", + "icon": "items/images/en/master_thief.5baf4d4ff0f669f514245a4b30f9b867.png", + "thumb": "items/images/en/thumbs/master_thief.5baf4d4ff0f669f514245a4b30f9b867.128x128.png" + } + } + }, + { + "id": "5c4050e32cc6ce023b79c0f2", + "slug": "cryo_coating", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingEventColdStatusMeleeMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cryo Coating", + "icon": "items/images/en/cryo_coating.2eb91e16628c1ab1711fc7e2ef2ab701.png", + "thumb": "items/images/en/thumbs/cryo_coating.2eb91e16628c1ab1711fc7e2ef2ab701.128x128.png" + } + } + }, + { + "id": "5c93e3b9fc2db20121591321", + "slug": "bursting_mass", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Arbitration/InfCrpShockSwarmRifleArbitrationMod", + "tags": [ + "mod", + "mutalist_quanta", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bursting Mass", + "icon": "items/images/en/bursting_mass.bc9acd34c247247b7618f62148882b41.png", + "thumb": "items/images/en/thumbs/bursting_mass.bc9acd34c247247b7618f62148882b41.128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a2", + "slug": "tipedo_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Staff/TipedoPrime/TipedoPrimeWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Tipedo Prime Set", + "icon": "items/images/en/tipedo_prime_set.fd4fdcee6ab035eddce9a802ff091cfd.png", + "thumb": "items/images/en/thumbs/tipedo_prime_set.fd4fdcee6ab035eddce9a802ff091cfd.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515673", + "slug": "true_steel", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponCritChanceMod", + "tags": [ + "mod", + "melee", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "True Steel", + "icon": "items/images/en/true_steel.56d021e0c096dadd750bdb11955f5ee7.png", + "thumb": "items/images/en/thumbs/true_steel.56d021e0c096dadd750bdb11955f5ee7.128x128.png" + } + } + }, + { + "id": "554d3af4e77989420d3de2a3", + "slug": "four_riders", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/ClawCmbThreeMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Four Riders", + "icon": "items/images/en/four_riders.c73064ac1f7811538e099dcfb9f8a6e1.png", + "thumb": "items/images/en/thumbs/four_riders.c73064ac1f7811538e099dcfb9f8a6e1.128x128.png" + } + } + }, + { + "id": "559daae8e779897b56bee133", + "slug": "vectis_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/VectisPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Vectis Prime Blueprint", + "icon": "items/images/en/vectis_prime_blueprint.028e001af4469482df80bff29542e043.png", + "thumb": "items/images/en/thumbs/vectis_prime_blueprint.028e001af4469482df80bff29542e043.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "559dacd3e779897ba8819969", + "slug": "animal_instinct", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelLootRadarEnemyRadarMod", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Animal Instinct", + "icon": "items/images/en/animal_instinct.934c4722d6e4f4013aa14bc75a2d84b0.png", + "thumb": "items/images/en/thumbs/animal_instinct.934c4722d6e4f4013aa14bc75a2d84b0.128x128.png" + } + } + }, + { + "id": "55c1548fe779895df57fd05d", + "slug": "combustion_beam", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponBeamExplodeOnDeath", + "tags": [ + "mod", + "primary", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Combustion Beam", + "icon": "items/images/en/combustion_beam.6f4d35d6c09aa716e3e7b44c2f2d5e81.png", + "thumb": "items/images/en/thumbs/combustion_beam.6f4d35d6c09aa716e3e7b44c2f2d5e81.128x128.png" + } + } + }, + { + "id": "5729bcf9cb59ed5a9b484e8a", + "slug": "harkonar_scope", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/ProjectNightwatch/VulkarNightwatchMod", + "tags": [ + "sniper", + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Harkonar Scope", + "icon": "items/images/en/harkonar_scope.b28d2b70ffd7bdba26aad0e28c85d955.png", + "thumb": "items/images/en/thumbs/harkonar_scope.b28d2b70ffd7bdba26aad0e28c85d955.128x128.png" + } + } + }, + { + "id": "5d322d1274bdad027da4d09e", + "slug": "gas_city_walkway_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityConStraightEOpen", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Walkway Scene", + "icon": "items/images/en/gas_city_walkway_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_walkway_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d322d1274bdad027da4d0a2", + "slug": "gas_city_dead_exit_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityConCornerEOpen", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Dead Exit Scene", + "icon": "items/images/en/gas_city_dead_exit_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_dead_exit_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d8765de7ea27b08950c13c5", + "slug": "aerodynamic", + "gameRef": "/Lotus/Upgrades/Mods/Aura/WarframeAuraVerticalityMod", + "tags": [ + "mod", + "rare", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Aerodynamic", + "icon": "items/images/en/aerodynamic.bfc306bc0e3d8fad358b3bf416fd23e0.png", + "thumb": "items/images/en/thumbs/aerodynamic.bfc306bc0e3d8fad358b3bf416fd23e0.128x128.png" + } + } + }, + { + "id": "5d9385b17ea27b0a28fd75b9", + "slug": "atlas_prime_set", + "gameRef": "/Lotus/Powersuits/Brawler/AtlasPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Atlas Prime Set", + "icon": "items/images/en/atlas_prime_set.91fb26397de19c27bfece550a8315a14.png", + "thumb": "items/images/en/thumbs/atlas_prime_set.91fb26397de19c27bfece550a8315a14.128x128.png" + } + } + }, + { + "id": "5d93ca117ea27b0a87566f79", + "slug": "tekko_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TekkoPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tekko Prime Blade", + "icon": "items/images/en/tekko_prime_blade.ace5f3ef4976ceae04ed01d8fcc695c7.png", + "thumb": "items/images/en/thumbs/tekko_prime_blade.ace5f3ef4976ceae04ed01d8fcc695c7.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5d93ca127ea27b0a87566f7b", + "slug": "tekko_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeTekko/PrimeTekko", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Tekko Prime Set", + "icon": "items/images/en/tekko_prime_set.ace5f3ef4976ceae04ed01d8fcc695c7.png", + "thumb": "items/images/en/thumbs/tekko_prime_set.ace5f3ef4976ceae04ed01d8fcc695c7.128x128.png" + } + } + }, + { + "id": "5d93ca127ea27b0a87566f7c", + "slug": "tekko_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TekkoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Tekko Prime Blueprint", + "icon": "items/images/en/tekko_prime_blueprint.ace5f3ef4976ceae04ed01d8fcc695c7.png", + "thumb": "items/images/en/thumbs/tekko_prime_blueprint.ace5f3ef4976ceae04ed01d8fcc695c7.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5f498a209426ed00443bd0a6", + "slug": "necramech_redirection", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechShieldMaxMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Necramech Redirection", + "icon": "items/images/en/necramech_redirection.2b8d7d243fd2af120ab54fa8f123691e.png", + "thumb": "items/images/en/thumbs/necramech_redirection.2b8d7d243fd2af120ab54fa8f123691e.128x128.png" + } + } + }, + { + "id": "5f498a219426ed00443bd0a7", + "slug": "damaged_necramech_weapon_barrel", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/DamagedMechWeaponBarrelItem", + "tags": [ + "component", + "necramech" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Weapon Barrel", + "icon": "items/images/en/damaged_necramech_weapon_barrel.bc4d1be97ed16f93c03d525288680192.png", + "thumb": "items/images/en/thumbs/damaged_necramech_weapon_barrel.bc4d1be97ed16f93c03d525288680192.128x128.png" + } + } + }, + { + "id": "5f498a219426ed00443bd0a8", + "slug": "damaged_necramech_weapon_set", + "gameRef": "", + "tags": [ + "necramech", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Weapon Set", + "icon": "items/images/en/damaged_necramech_weapon_set.b273d89779e4f681c8323227ce22052f.webp", + "thumb": "items/images/en/thumbs/damaged_necramech_weapon_set.b273d89779e4f681c8323227ce22052f.128x128.webp" + } + } + }, + { + "id": "5f498a219426ed00443bd0a9", + "slug": "damaged_necramech_weapon_receiver", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/DamagedMechWeaponReceiverItem", + "tags": [ + "component", + "necramech" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Weapon Receiver", + "icon": "items/images/en/damaged_necramech_weapon_receiver.a383d3f75da87bb584c269e61783cea3.png", + "thumb": "items/images/en/thumbs/damaged_necramech_weapon_receiver.a383d3f75da87bb584c269e61783cea3.128x128.png" + } + } + }, + { + "id": "5f498a219426ed00443bd0aa", + "slug": "infectious_bite", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedPredatorInfectiousBitePrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "medjay_predasite" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Infectious Bite", + "icon": "items/images/en/infectious_bite.ac34b12fe1e906cab5394254ddb5ee46.png", + "thumb": "items/images/en/thumbs/infectious_bite.ac34b12fe1e906cab5394254ddb5ee46.128x128.png" + } + } + }, + { + "id": "5f498a229426ed00443bd0ac", + "slug": "paralytic_spores", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedPredatorFinisherSporesPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "medjay_predasite" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Paralytic Spores", + "icon": "items/images/en/paralytic_spores.88c33c45bb8fbd3affcec4318215722b.png", + "thumb": "items/images/en/thumbs/paralytic_spores.88c33c45bb8fbd3affcec4318215722b.128x128.png" + } + } + }, + { + "id": "5f498a229426ed00443bd0ae", + "slug": "crescent_devolution", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/HornedInfestedCatbrowRespawn", + "tags": [ + "mod", + "rare", + "kavat", + "crescent_vulpaphyla" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crescent Devolution", + "icon": "items/images/en/crescent_devolution.7815e5bb44be625ef6e9fd787408045b.png", + "thumb": "items/images/en/thumbs/crescent_devolution.7815e5bb44be625ef6e9fd787408045b.128x128.png" + } + } + }, + { + "id": "5f498a229426ed00443bd0af", + "slug": "panzer_devolution", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/ArmoredInfestedCatbrowRespawn", + "tags": [ + "mod", + "rare", + "kavat", + "panzer_vulpaphyla" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Panzer Devolution", + "icon": "items/images/en/panzer_devolution.385beb2af22639cca19541091841393a.png", + "thumb": "items/images/en/thumbs/panzer_devolution.385beb2af22639cca19541091841393a.128x128.png" + } + } + }, + { + "id": "5f498a229426ed00443bd0b0", + "slug": "anabolic_pollination", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedPredatorBuffSporesPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "pharaoh_predasite" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Anabolic Pollination", + "icon": "items/images/en/anabolic_pollination.3aec2d415b1f9ec2e342cc6b3898f639.png", + "thumb": "items/images/en/thumbs/anabolic_pollination.3aec2d415b1f9ec2e342cc6b3898f639.128x128.png" + } + } + }, + { + "id": "5f498a229426ed00443bd0b2", + "slug": "primo_flair", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBEliteTricksterMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Primo Flair", + "icon": "items/images/en/primo_flair.0657de208ab98f39a8a9fc03300137f9.png", + "thumb": "items/images/en/thumbs/primo_flair.0657de208ab98f39a8a9fc03300137f9.128x128.png" + } + } + }, + { + "id": "5f498a239426ed00443bd0b6", + "slug": "jugulus_barbs", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Boneblade/BonebladeBarbsMod", + "tags": [ + "mod", + "common", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Jugulus Barbs", + "icon": "items/images/en/jugulus_barbs.5b1762fe494c16eaf1017025f2b4aaec.png", + "thumb": "items/images/en/thumbs/jugulus_barbs.5b1762fe494c16eaf1017025f2b4aaec.128x128.png" + } + } + }, + { + "id": "5f498a239426ed00443bd0b9", + "slug": "saxum_carapace", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Femur/FemurCarapaceMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Saxum Carapace", + "icon": "items/images/en/saxum_carapace.8c25bce0a8d5654fc874e7f72cc50a54.png", + "thumb": "items/images/en/thumbs/saxum_carapace.8c25bce0a8d5654fc874e7f72cc50a54.128x128.png" + } + } + }, + { + "id": "5f498a239426ed00443bd0ba", + "slug": "hard_engage", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Moa/MoaMeleeMod", + "tags": [ + "mod", + "rare", + "sentinel", + "moa" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hard Engage", + "icon": "items/images/en/hard_engage.d7fe88b2f84043d5c691b9d6531c4087.png", + "thumb": "items/images/en/thumbs/hard_engage.d7fe88b2f84043d5c691b9d6531c4087.128x128.png" + } + } + }, + { + "id": "5f498a239426ed00443bd0bc", + "slug": "vapor_trail", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBEnergyInjectionMod", + "tags": [ + "mod", + "common", + "k_drive" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Vapor Trail", + "icon": "items/images/en/vapor_trail.ebe940eeaf0b853890baa1a7b981d72c.png", + "thumb": "items/images/en/thumbs/vapor_trail.ebe940eeaf0b853890baa1a7b981d72c.128x128.png" + } + } + }, + { + "id": "5f498a239426ed00443bd0bd", + "slug": "saxum_spittle", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Femur/FemurSpittleMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Saxum Spittle", + "icon": "items/images/en/saxum_spittle.28415ab0b1a4b17929f2daaa691f9aae.png", + "thumb": "items/images/en/thumbs/saxum_spittle.28415ab0b1a4b17929f2daaa691f9aae.128x128.png" + } + } + }, + { + "id": "5f498a249426ed00443bd0be", + "slug": "damaged_necramech_weapon_stock", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/DamagedMechWeaponStockItem", + "tags": [ + "component", + "necramech" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Weapon Stock", + "icon": "items/images/en/damaged_necramech_weapon_stock.9ad561633d99ef217f13b8cb9af1d283.png", + "thumb": "items/images/en/thumbs/damaged_necramech_weapon_stock.9ad561633d99ef217f13b8cb9af1d283.128x128.png" + } + } + }, + { + "id": "5f498a249426ed00443bd0bf", + "slug": "necramech_reach", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechMeleeRangeMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Reach", + "icon": "items/images/en/necramech_reach.e2fc011d7aa0f6537ba1c3e8b8c856f1.png", + "thumb": "items/images/en/thumbs/necramech_reach.e2fc011d7aa0f6537ba1c3e8b8c856f1.128x128.png" + } + } + }, + { + "id": "5f498a249426ed00443bd0c0", + "slug": "necramech_continuity", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAbilityDurationMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Continuity", + "icon": "items/images/en/necramech_continuity.9d2574a325182ce7a355a1cf652e8b22.png", + "thumb": "items/images/en/thumbs/necramech_continuity.9d2574a325182ce7a355a1cf652e8b22.128x128.png" + } + } + }, + { + "id": "5f498a249426ed00443bd0c1", + "slug": "cabochon_embolos", + "gameRef": "/Lotus/Types/Items/Gems/Deimos/DeimosEidolonGemBCutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Cabochon Embolos", + "icon": "items/images/en/cabochon_embolos.99c4f8c7fcecf7492ac6fecb684b9ea9.png", + "thumb": "items/images/en/thumbs/cabochon_embolos.99c4f8c7fcecf7492ac6fecb684b9ea9.128x128.png" + } + } + }, + { + "id": "5f498a249426ed00443bd0c2", + "slug": "necramech_steel_fiber", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechArmourMaxMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Steel Fiber", + "icon": "items/images/en/necramech_steel_fiber.cea2484759912454cb19f189d3e9b861.png", + "thumb": "items/images/en/thumbs/necramech_steel_fiber.cea2484759912454cb19f189d3e9b861.128x128.png" + } + } + }, + { + "id": "5f498a249426ed00443bd0c5", + "slug": "jugulus_spines", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Boneblade/BonebladeSpinesMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Jugulus Spines", + "icon": "items/images/en/jugulus_spines.af0d243b82f0a72f86ebdf824aa6c737.png", + "thumb": "items/images/en/thumbs/jugulus_spines.af0d243b82f0a72f86ebdf824aa6c737.128x128.png" + } + } + }, + { + "id": "5f498a259426ed00443bd0c6", + "slug": "damaged_necramech_set", + "gameRef": "", + "tags": [ + "necramech", + "set", + "mech" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Set", + "icon": "items/images/en/damaged_necramech_set.e17864dfe78acafe6bec06c085f80edf.webp", + "thumb": "items/images/en/thumbs/damaged_necramech_set.e17864dfe78acafe6bec06c085f80edf.128x128.webp" + } + } + }, + { + "id": "5f498a259426ed00443bd0c8", + "slug": "purified_heciphron", + "gameRef": "/Lotus/Types/Items/Gems/Deimos/DeimosUncommonGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Purified Heciphron", + "icon": "items/images/en/purified_heciphron.b86f49088c5712738121505bfd8282f8.png", + "thumb": "items/images/en/thumbs/purified_heciphron.b86f49088c5712738121505bfd8282f8.128x128.png" + } + } + }, + { + "id": "5f498a259426ed00443bd0c9", + "slug": "viral_quills", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedKavatViralQuillsPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "panzer_vulpaphyla" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Viral Quills", + "icon": "items/images/en/viral_quills.7c3d803df0d4955872187242adbfda57.png", + "thumb": "items/images/en/thumbs/viral_quills.7c3d803df0d4955872187242adbfda57.128x128.png" + } + } + }, + { + "id": "5f498a259426ed00443bd0ca", + "slug": "carnis_mandible", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Ashen/AshenMandibleMod", + "tags": [ + "mod", + "common", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Carnis Mandible", + "icon": "items/images/en/carnis_mandible.411da10adc3141838623bb81ca1d7a1d.png", + "thumb": "items/images/en/thumbs/carnis_mandible.411da10adc3141838623bb81ca1d7a1d.128x128.png" + } + } + }, + { + "id": "5f498a259426ed00443bd0cd", + "slug": "damaged_necramech_pod", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/DamagedMechPartSystemsItem", + "tags": [ + "necramech", + "component", + "damaged" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Pod", + "icon": "items/images/en/damaged_necramech_pod.2d84326db74bb9cc5c9a8e60e43c037e.png", + "thumb": "items/images/en/thumbs/damaged_necramech_pod.2d84326db74bb9cc5c9a8e60e43c037e.128x128.png" + } + } + }, + { + "id": "5f498a269426ed00443bd0cf", + "slug": "necramech_refuel", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechBoostRechargeMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Refuel", + "icon": "items/images/en/necramech_refuel.3064dd67344c9dad1449a60a896e66e7.png", + "thumb": "items/images/en/thumbs/necramech_refuel.3064dd67344c9dad1449a60a896e66e7.128x128.png" + } + } + }, + { + "id": "5f498a269426ed00443bd0d1", + "slug": "carnis_stinger", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Ashen/AshenStingerMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Carnis Stinger", + "icon": "items/images/en/carnis_stinger.578ad02e46d5159361f728610bfade88.png", + "thumb": "items/images/en/thumbs/carnis_stinger.578ad02e46d5159361f728610bfade88.128x128.png" + } + } + }, + { + "id": "5f498a269426ed00443bd0d9", + "slug": "crescent_charge", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedCatbrowGoreTossPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "crescent_vulpaphyla" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crescent Charge", + "icon": "items/images/en/crescent_charge.02500a57b52395eb60b85825b0b93b06.png", + "thumb": "items/images/en/thumbs/crescent_charge.02500a57b52395eb60b85825b0b93b06.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0e0", + "slug": "survival_instinct", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedCatbrowEvasionBuffPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "sly_vulpaphyla" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Survival Instinct", + "icon": "items/images/en/survival_instinct.2251742c1764b52671e1f5622b2b34ff.png", + "thumb": "items/images/en/thumbs/survival_instinct.2251742c1764b52671e1f5622b2b34ff.128x128.png" + } + } + }, + { + "id": "5f4ed3ecd5c36d0086f55af5", + "slug": "deimos_underground_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosObsession", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Underground Scene", + "icon": "items/images/en/deimos_underground_scene.c3802c3ec4d99659b2add7db1c413ca8.png", + "thumb": "items/images/en/thumbs/deimos_underground_scene.c3802c3ec4d99659b2add7db1c413ca8.128x128.png" + } + } + }, + { + "id": "5f4ed3f2d5c36d0086f55aff", + "slug": "deimos_cambion_drift_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosLandscape", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Cambion Drift Scene", + "icon": "items/images/en/deimos_cambion_drift_scene.52f01e72621a0ad5034e4261a513e2dd.png", + "thumb": "items/images/en/thumbs/deimos_cambion_drift_scene.52f01e72621a0ad5034e4261a513e2dd.128x128.png" + } + } + }, + { + "id": "5f986cf99dbdce024971b0b7", + "slug": "nezha_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NezhaPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Nezha Prime Blueprint", + "icon": "items/images/en/nezha_prime_blueprint.462f17d4752cca5cea3988ecb9786467.png", + "thumb": "items/images/en/thumbs/nezha_prime_blueprint.462f17d4752cca5cea3988ecb9786467.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5f986cf99dbdce024971b0bb", + "slug": "guandao_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/GuandaoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Guandao Prime Blueprint", + "icon": "items/images/en/guandao_prime_blueprint.cded3d77be7d60eef1d3eb82f189e70f.png", + "thumb": "items/images/en/thumbs/guandao_prime_blueprint.cded3d77be7d60eef1d3eb82f189e70f.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5fa5698e9dbdce0625d562a8", + "slug": "combo_killer", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveSecondaryHeadshotKillMod", + "tags": [ + "mod", + "uncommon", + "melee", + "thrown_melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Combo Killer", + "icon": "items/images/en/combo_killer.ef8b83e5e66815da4fc1615ff4e30b29.png", + "thumb": "items/images/en/thumbs/combo_killer.ef8b83e5e66815da4fc1615ff4e30b29.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d539", + "slug": "thrall_pact", + "gameRef": "/Lotus/Powersuits/Revenant/RevenantMarkAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "revenant" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Thrall Pact", + "icon": "items/images/en/thrall_pact.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/thrall_pact.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d53a", + "slug": "critical_surge", + "gameRef": "/Lotus/Powersuits/Wisp/WispHarnessAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "wisp" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Critical Surge", + "icon": "items/images/en/critical_surge.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/critical_surge.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d53b", + "slug": "theorem_demulcent", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/WeaponDamageOnResidualContact", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Theorem Demulcent", + "icon": "items/images/en/theorem_demulcent.463239df295fca00049643a7b4b0ff8b.png", + "thumb": "items/images/en/thumbs/theorem_demulcent.463239df295fca00049643a7b4b0ff8b.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d53c", + "slug": "sporothrix_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/InfSniperRifleBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sporothrix Blueprint", + "icon": "items/images/en/sporothrix_blueprint.d9a3fe663f9fee156958a698e597a6bb.png", + "thumb": "items/images/en/thumbs/sporothrix_blueprint.d9a3fe663f9fee156958a698e597a6bb.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d53f", + "slug": "necramech_efficiency", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechBoostEfficiencyMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Efficiency", + "icon": "items/images/en/necramech_efficiency.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/necramech_efficiency.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d540", + "slug": "theorem_infection", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/CompanionDamageOnResidualContact", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Theorem Infection", + "icon": "items/images/en/theorem_infection.1b72a86a16929c0a3c0848ca448e8783.png", + "thumb": "items/images/en/thumbs/theorem_infection.1b72a86a16929c0a3c0848ca448e8783.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d541", + "slug": "arum_spinosa_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/InfWarFanBlueprint", + "tags": [ + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Arum Spinosa Blueprint", + "icon": "items/images/en/arum_spinosa_blueprint.a676e9febc397c744ba0f3d4f13b891f.png", + "thumb": "items/images/en/thumbs/arum_spinosa_blueprint.a676e9febc397c744ba0f3d4f13b891f.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d542", + "slug": "volatile_quick_return", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveExplodingReflectionDecreaseMod", + "tags": [ + "mod", + "uncommon", + "melee", + "thrown_melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Volatile Quick Return", + "icon": "items/images/en/volatile_quick_return.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/volatile_quick_return.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d543", + "slug": "blending_talons", + "gameRef": "/Lotus/Powersuits/Garuda/GarudaUnstoppableAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "garuda" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blending Talons", + "icon": "items/images/en/blending_talons.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/blending_talons.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d544", + "slug": "arum_spinosa_guard", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfWarFanGuard", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Arum Spinosa Guard", + "icon": "items/images/en/arum_spinosa_guard.a676e9febc397c744ba0f3d4f13b891f.png", + "thumb": "items/images/en/thumbs/arum_spinosa_guard.a676e9febc397c744ba0f3d4f13b891f.128x128.png", + "subIcon": "sub_icons/weapon/generic_guard_128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d545", + "slug": "arum_spinosa_set", + "gameRef": "/Lotus/Weapons/Infested/Melee/InfWarfan/InfWarfanWeapon", + "tags": [ + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Arum Spinosa Set", + "icon": "items/images/en/arum_spinosa_set.a676e9febc397c744ba0f3d4f13b891f.png", + "thumb": "items/images/en/thumbs/arum_spinosa_set.a676e9febc397c744ba0f3d4f13b891f.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d546", + "slug": "sporothrix_set", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/InfSniperRifle/InfSniperRifle", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Sporothrix Set", + "icon": "items/images/en/sporothrix_set.d9a3fe663f9fee156958a698e597a6bb.png", + "thumb": "items/images/en/thumbs/sporothrix_set.d9a3fe663f9fee156958a698e597a6bb.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d54b", + "slug": "residual_shock", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/LightningStrikeOnKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Residual Shock", + "icon": "items/images/en/residual_shock.931038e226263ca655a8e3e4eeb76cf6.png", + "thumb": "items/images/en/thumbs/residual_shock.931038e226263ca655a8e3e4eeb76cf6.128x128.png" + } + } + }, + { + "id": "5fca4b457bfda40043597ee8", + "slug": "primed_firestorm", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/WeaponIncreaseRadialExplosionModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Firestorm", + "icon": "items/images/en/primed_firestorm.37a27c8080456fbe614ced671beed66b.png", + "thumb": "items/images/en/thumbs/primed_firestorm.37a27c8080456fbe614ced671beed66b.128x128.png" + } + } + }, + { + "id": "5fca4b457bfda40043597ee9", + "slug": "primed_fulmination", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/AmbulasEvent/Expert/SecondaryExplosionRadiusModExpert", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Fulmination", + "icon": "items/images/en/primed_fulmination.fc3edbbe1b507a08c07859846921d94e.png", + "thumb": "items/images/en/thumbs/primed_fulmination.fc3edbbe1b507a08c07859846921d94e.128x128.png" + } + } + }, + { + "id": "5fde10c16db57b0185b3906e", + "slug": "bonewidow_set", + "gameRef": "/Lotus/Powersuits/EntratiMech/ThanoTech", + "tags": [ + "necramech", + "set" + ], + "i18n": { + "en": { + "name": "Bonewidow Set", + "icon": "items/images/en/bonewidow_set.7858543d86d523cc11593591599b92a2.png", + "thumb": "items/images/en/thumbs/bonewidow_set.7858543d86d523cc11593591599b92a2.128x128.png" + } + } + }, + { + "id": "5fde10c26db57b0185b3906f", + "slug": "bonewidow_weapon_pod", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanomechPartWeaponPodItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Bonewidow Weapon Pod", + "icon": "items/images/en/bonewidow_weapon_pod.c041e9d28d729aa9bdefa255ef272fa1.png", + "thumb": "items/images/en/thumbs/bonewidow_weapon_pod.c041e9d28d729aa9bdefa255ef272fa1.128x128.png" + } + } + }, + { + "id": "5fde10c26db57b0185b39070", + "slug": "bonewidow_casing", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanomechPartChassisItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Bonewidow Casing", + "icon": "items/images/en/bonewidow_casing.d8acf865db09a10d93fdac2cdd1e8211.png", + "thumb": "items/images/en/thumbs/bonewidow_casing.d8acf865db09a10d93fdac2cdd1e8211.128x128.png" + } + } + }, + { + "id": "5fde10c26db57b0185b39071", + "slug": "morgha_stock", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanotechGrenadeLauncherStockItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Morgha Stock", + "icon": "items/images/en/morgha_stock.91f0b5fabbeeebd690890cd4e16ebf71.png", + "thumb": "items/images/en/thumbs/morgha_stock.91f0b5fabbeeebd690890cd4e16ebf71.128x128.png" + } + } + }, + { + "id": "5fde10c26db57b0185b39073", + "slug": "cortege_barrel", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanotechArchGunBarrelItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Cortege Barrel", + "icon": "items/images/en/cortege_barrel.d33f9cd234690f5b7be1daaaa236a64f.png", + "thumb": "items/images/en/thumbs/cortege_barrel.d33f9cd234690f5b7be1daaaa236a64f.128x128.png" + } + } + }, + { + "id": "5fde10c36db57b0185b39076", + "slug": "necramech_enemy_sense", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAvatarEnemyRadarMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Enemy Sense", + "icon": "items/images/en/necramech_enemy_sense.de301a61767696956074a51cbfc03dd7.png", + "thumb": "items/images/en/thumbs/necramech_enemy_sense.de301a61767696956074a51cbfc03dd7.128x128.png" + } + } + }, + { + "id": "5fde10c56db57b0185b3907e", + "slug": "cortege_stock", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanotechArchGunStockItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Cortege Stock", + "icon": "items/images/en/cortege_stock.91f0b5fabbeeebd690890cd4e16ebf71.png", + "thumb": "items/images/en/thumbs/cortege_stock.91f0b5fabbeeebd690890cd4e16ebf71.128x128.png" + } + } + }, + { + "id": "5fde10c56db57b0185b39081", + "slug": "necramech_rebuke", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechReflectOnShieldBreakMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Rebuke", + "icon": "items/images/en/necramech_rebuke.6105120ceb59b64e1ca296efee5c550e.png", + "thumb": "items/images/en/thumbs/necramech_rebuke.6105120ceb59b64e1ca296efee5c550e.128x128.png" + } + } + }, + { + "id": "5fde10c66db57b0185b39084", + "slug": "cortege_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechArchGun/ThanoTechArchGun", + "tags": [ + "primary", + "archwing", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Cortege Set", + "icon": "items/images/en/cortege_set.5ceaf430bceccb606feb14dd9cf7316d.png", + "thumb": "items/images/en/thumbs/cortege_set.5ceaf430bceccb606feb14dd9cf7316d.128x128.png" + } + } + }, + { + "id": "5fde10c66db57b0185b39085", + "slug": "bonewidow_capsule", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanomechPartSystemsItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Bonewidow Capsule", + "icon": "items/images/en/bonewidow_capsule.75bd55fc8ff8512e1667272e4bc4e567.png", + "thumb": "items/images/en/thumbs/bonewidow_capsule.75bd55fc8ff8512e1667272e4bc4e567.128x128.png" + } + } + }, + { + "id": "5fde10c66db57b0185b39086", + "slug": "voidrig_set", + "gameRef": "/Lotus/Powersuits/EntratiMech/NechroTech", + "tags": [ + "necramech", + "set" + ], + "i18n": { + "en": { + "name": "Voidrig Set", + "icon": "items/images/en/voidrig_set.7174a72013c8dc2d0464cb6454f9c161.png", + "thumb": "items/images/en/thumbs/voidrig_set.7174a72013c8dc2d0464cb6454f9c161.128x128.png" + } + } + }, + { + "id": "5fde10c66db57b0185b39087", + "slug": "necramech_aviator", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAvatarDamageReductionInAir", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Aviator", + "icon": "items/images/en/necramech_aviator.4d0d2675352961f8c71459c57c7f5267.png", + "thumb": "items/images/en/thumbs/necramech_aviator.4d0d2675352961f8c71459c57c7f5267.128x128.png" + } + } + }, + { + "id": "5fe0ea826db57b0225115012", + "slug": "ayatan_hemakara_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexJ", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 2, + "baseEndo": 450, + "endoMultiplier": 3, + "i18n": { + "en": { + "name": "Ayatan Hemakara Sculpture", + "icon": "items/images/en/ayatan_hemakara_sculpture.fa1b98919aaef4e74dcdc8175526cc5f.png", + "thumb": "items/images/en/thumbs/ayatan_hemakara_sculpture.fa1b98919aaef4e74dcdc8175526cc5f.128x128.png" + } + } + }, + { + "id": "5fe0ea836db57b0225115013", + "slug": "prisma_dual_decurions", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchwingHeavyPistols/Prisma/PrismaArchHeavyPistols", + "tags": [ + "archwing", + "weapon", + "primary" + ], + "i18n": { + "en": { + "name": "Prisma Dual Decurions", + "icon": "items/images/en/prisma_dual_decurion.4ee7041a38ef9ad13e0b56829098d536.png", + "thumb": "items/images/en/thumbs/prisma_dual_decurion.4ee7041a38ef9ad13e0b56829098d536.128x128.png" + } + } + }, + { + "id": "5fe0ea836db57b0225115016", + "slug": "cedo_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnAlchemistShotgunBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Cedo Barrel", + "icon": "items/images/en/cedo_barrel.beb0319f93c38fe11119204a3ed47614.png", + "thumb": "items/images/en/thumbs/cedo_barrel.beb0319f93c38fe11119204a3ed47614.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5fe0ea836db57b0225115017", + "slug": "cedo_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnAlchemistShotgunReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Cedo Receiver", + "icon": "items/images/en/cedo_receiver.beb0319f93c38fe11119204a3ed47614.png", + "thumb": "items/images/en/thumbs/cedo_receiver.beb0319f93c38fe11119204a3ed47614.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5fe0ea836db57b0225115018", + "slug": "cedo_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnAlchemistShotgun/TnAlchemistShotgun", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Cedo Set", + "icon": "items/images/en/cedo_set.beb0319f93c38fe11119204a3ed47614.png", + "thumb": "items/images/en/thumbs/cedo_set.beb0319f93c38fe11119204a3ed47614.128x128.png" + } + } + }, + { + "id": "5a2feeb2c2c9e90cbdaa23d5", + "slug": "mirage_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MiragePrimeChassisBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Mirage Prime Chassis Blueprint", + "icon": "items/images/en/mirage_prime_chassis.e7f8f484dd6ae6c35f0767fff35a5109.png", + "thumb": "items/images/en/thumbs/mirage_prime_chassis.e7f8f484dd6ae6c35f0767fff35a5109.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5a311f84c2c9e90dfff475e5", + "slug": "kogake_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/KogakePrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Kogake Prime Blueprint", + "icon": "items/images/en/kogake_prime_blueprint.456b865463108d6f6ff51da978f839cd.png", + "thumb": "items/images/en/thumbs/kogake_prime_blueprint.456b865463108d6f6ff51da978f839cd.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156d9", + "slug": "hornet_strike", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponDamageAmountMod", + "tags": [ + "mod", + "uncommon", + "pistol", + "secondary" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Hornet Strike", + "icon": "items/images/en/hornet_strike.32575979b8a9bf623daba85ca07c3d54.png", + "thumb": "items/images/en/thumbs/hornet_strike.32575979b8a9bf623daba85ca07c3d54.128x128.png" + } + } + }, + { + "id": "592dd262011e88f094afec83", + "slug": "sybaris_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SybarisPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Sybaris Prime Stock", + "icon": "items/images/en/sybaris_prime_stock.39d7dc4a904f7db7e7c78901976aa5fa.png", + "thumb": "items/images/en/thumbs/sybaris_prime_stock.39d7dc4a904f7db7e7c78901976aa5fa.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "56b656cbef0390c7e4006380", + "slug": "ore_gaze", + "gameRef": "/Lotus/Powersuits/Brawler/BrawlerGazeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "atlas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ore Gaze", + "icon": "items/images/en/ore_gaze.b00450a6b07791dcdbace16e888159c6.png", + "thumb": "items/images/en/thumbs/ore_gaze.b00450a6b07791dcdbace16e888159c6.128x128.png" + } + } + }, + { + "id": "59dfeb63115f1d887cfd7abb", + "slug": "vigilante_offense", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Vigilante/PrimaryVigilanteOffenseMod", + "tags": [ + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vigilante Offense", + "icon": "items/images/en/vigilante_offense.9590e517098a0e441da79bfa0f1be18f.png", + "thumb": "items/images/en/thumbs/vigilante_offense.9590e517098a0e441da79bfa0f1be18f.128x128.png" + } + } + }, + { + "id": "5a04750d6c4655012038ddcc", + "slug": "magus_replenish", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HealOnVoidDash", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Replenish", + "icon": "items/images/en/magus_replenish.b65658da1b4a7e7090c6439e28476d39.png", + "thumb": "items/images/en/thumbs/magus_replenish.b65658da1b4a7e7090c6439e28476d39.128x128.png" + } + } + }, + { + "id": "5a0ef3fb10bc40007cce1c8a", + "slug": "hunter_synergy", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hunter/CompanionHunterSynergyMod", + "tags": [ + "mod", + "uncommon", + "melee", + "claws" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunter Synergy", + "icon": "items/images/en/hunter_synergy.e81bc36b78ed133f43f6923c04cc136f.png", + "thumb": "items/images/en/thumbs/hunter_synergy.e81bc36b78ed133f43f6923c04cc136f.128x128.png" + } + } + }, + { + "id": "5a3e4a52c2c9e91beabdae8f", + "slug": "slicing_feathers", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/WarfanCmbOneMeleeTree", + "tags": [ + "mod", + "stance", + "warfans", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Slicing Feathers", + "icon": "items/images/en/slicing_feathers.7c036b7747007c3c17ba20d3cfa61a18.png", + "thumb": "items/images/en/thumbs/slicing_feathers.7c036b7747007c3c17ba20d3cfa61a18.128x128.png" + } + } + }, + { + "id": "5adf8729931bcf00574adc10", + "slug": "braton_vandal_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BratonVandalReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Braton Vandal Receiver", + "icon": "items/images/en/braton_vandal_receiver.91c532bcac702702bf7d259bd5d4d553.png", + "thumb": "items/images/en/thumbs/braton_vandal_receiver.91c532bcac702702bf7d259bd5d4d553.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5adf872a931bcf00574adc12", + "slug": "braton_vandal_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BratonVandalStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Braton Vandal Stock", + "icon": "items/images/en/braton_vandal_stock.91c532bcac702702bf7d259bd5d4d553.png", + "thumb": "items/images/en/thumbs/braton_vandal_stock.91c532bcac702702bf7d259bd5d4d553.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "5adf872a931bcf00574adc14", + "slug": "peculiar_bloom", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Peculiars/FlowerPowerMod", + "tags": [ + "mod", + "peculiar", + "arcane_enhancement", + "warframe" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Peculiar Bloom", + "icon": "items/images/en/peculiar_bloom.835675287908be4212f4765014b2f6bd.png", + "thumb": "items/images/en/thumbs/peculiar_bloom.835675287908be4212f4765014b2f6bd.128x128.png" + } + } + }, + { + "id": "5ba9f2034567de01415f638b", + "slug": "chroma_prime_set", + "gameRef": "/Lotus/Powersuits/Dragon/ChromaPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Chroma Prime Set", + "icon": "items/images/en/chroma_prime_set.746ea1c1556aa60f94f0c2399946baaf.png", + "thumb": "items/images/en/thumbs/chroma_prime_set.746ea1c1556aa60f94f0c2399946baaf.128x128.png" + } + } + }, + { + "id": "5ba9f2044567de01415f638f", + "slug": "raksa_kubrow_imprint", + "gameRef": "/Lotus/Types/Game/KubrowPet/GuardKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Raksa Kubrow Imprint", + "icon": "items/images/en/raksa_kubrow_imprint.e64d6ce9309296cba5a4ad71a1dde192.png", + "thumb": "items/images/en/thumbs/raksa_kubrow_imprint.e64d6ce9309296cba5a4ad71a1dde192.128x128.png" + } + } + }, + { + "id": "5baa8bbe4567de01ac283491", + "slug": "rubico_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/RubicoPrime/RubicoPrimeWeapon", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Rubico Prime Set", + "icon": "items/images/en/rubico_prime_set.2071211bc2436d4e768dbb61f98f6efd.png", + "thumb": "items/images/en/thumbs/rubico_prime_set.2071211bc2436d4e768dbb61f98f6efd.128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283495", + "slug": "gram_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/GramPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gram Prime Blueprint", + "icon": "items/images/en/gram_prime_blueprint.678c245a88b54368ae895b73b6987231.png", + "thumb": "items/images/en/thumbs/gram_prime_blueprint.678c245a88b54368ae895b73b6987231.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5bc24accb919f2010f7d579a", + "slug": "ambush", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/GhostAugmentCard", + "tags": [ + "mod", + "rare", + "sentinel", + "shade" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ambush", + "icon": "items/images/en/ambush.bd6ac0ce71315652d5a7bdd9a80d0218.png", + "thumb": "items/images/en/thumbs/ambush.bd6ac0ce71315652d5a7bdd9a80d0218.128x128.png" + } + } + }, + { + "id": "5bd05acf3ffcc700eb7cfcfc", + "slug": "hunhows_chamber_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateRedVeilHunhow", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Hunhow's Chamber Scene", + "icon": "items/images/en/hunhows_chamber_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/hunhows_chamber_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5bd05ad03ffcc700eb7cfcff", + "slug": "lua_containment_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateArbitersContainment", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Lua Containment Scene", + "icon": "items/images/en/lua_containment_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/lua_containment_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5bd05ad13ffcc700eb7cfd00", + "slug": "silver_grove_shrine_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateNewLokaSilverGrove", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Silver Grove Shrine Scene", + "icon": "items/images/en/silver_grove_shrine_scene.1b33e9f5c3bef41ae49ac347639bbd30.png", + "thumb": "items/images/en/thumbs/silver_grove_shrine_scene.1b33e9f5c3bef41ae49ac347639bbd30.128x128.png" + } + } + }, + { + "id": "5be4b0a43ffcc703294e76ae", + "slug": "synth_reflex", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Synth/WarframeSynthReflexMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Synth Reflex", + "icon": "items/images/en/synth_reflex.72b529bc038f95a3c119c4817fcaa7be.png", + "thumb": "items/images/en/thumbs/synth_reflex.72b529bc038f95a3c119c4817fcaa7be.128x128.png" + } + } + }, + { + "id": "5be4b0a43ffcc703294e76af", + "slug": "synth_deconstruct", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Synth/SentinelSynthDeconstructMod", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Synth Deconstruct", + "icon": "items/images/en/synth_deconstruct.3491a192eb4347689d3ba93fe03d429c.png", + "thumb": "items/images/en/thumbs/synth_deconstruct.3491a192eb4347689d3ba93fe03d429c.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b0", + "slug": "fetch", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/BeastUniversalVacuum", + "tags": [ + "mod", + "beast", + "sentinel", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fetch", + "icon": "items/images/en/fetch.3029b53e4b6e53493e836cd5cd980146.png", + "thumb": "items/images/en/thumbs/fetch.3029b53e4b6e53493e836cd5cd980146.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b4", + "slug": "tek_enhance", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Tek/KavatTekEnhanceMod", + "tags": [ + "mod", + "kavat", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tek Enhance", + "icon": "items/images/en/tek_enhance.f817cce36b12300067e82981dc56eeb1.png", + "thumb": "items/images/en/thumbs/tek_enhance.f817cce36b12300067e82981dc56eeb1.128x128.png" + } + } + }, + { + "id": "5be5f5a33ffcc7038857f124", + "slug": "crashing_havoc", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPHammerStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "hammers", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Crashing Havoc", + "icon": "items/images/en/crashing_havoc.ca855ed1b2e26b6f75e117338ab90dbb.png", + "thumb": "items/images/en/thumbs/crashing_havoc.ca855ed1b2e26b6f75e117338ab90dbb.128x128.png" + } + } + }, + { + "id": "56c3bc115d2f0202da32e946", + "slug": "spira_prime_pouch", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeLiDaggerHolster", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Spira Prime Pouch", + "icon": "items/images/en/spira_prime_pouch.1a495b1cb31bba268dc7a50f2a4f7134.png", + "thumb": "items/images/en/thumbs/spira_prime_pouch.1a495b1cb31bba268dc7a50f2a4f7134.128x128.png", + "subIcon": "sub_icons/weapon/prime_holster_128x128.png" + } + } + }, + { + "id": "59385f6716efa3a742b15f62", + "slug": "transistor_shield", + "gameRef": "/Lotus/Powersuits/Volt/ShieldAugmentCard", + "tags": [ + "mod", + "volt", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Transistor Shield", + "icon": "items/images/en/transistor_shield.1a661aae669816c05a1e4e34cdcf8c2b.png", + "thumb": "items/images/en/thumbs/transistor_shield.1a661aae669816c05a1e4e34cdcf8c2b.128x128.png" + } + } + }, + { + "id": "56d6b7f483240e1f3aab2907", + "slug": "shell_rush", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleChargeSpeedMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shell Rush", + "icon": "items/images/en/shell_rush.184b1b2a564ccb241e3f3956ede39cb6.png", + "thumb": "items/images/en/thumbs/shell_rush.184b1b2a564ccb241e3f3956ede39cb6.128x128.png" + } + } + }, + { + "id": "56dac5565cc639de0a45c517", + "slug": "sheev_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/GrineerCombatKnifeSortieBlueprint", + "tags": [ + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sheev Blueprint", + "icon": "items/images/en/sheev_blueprint.96c63b432f3d71f2bf5918e9f8d721fa.png", + "thumb": "items/images/en/thumbs/sheev_blueprint.96c63b432f3d71f2bf5918e9f8d721fa.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "56dac55f5cc639de0a45c519", + "slug": "sheev_hilt", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GrineerCombatKnifeHilt", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sheev Hilt", + "icon": "items/images/en/sheev_hilt.96c63b432f3d71f2bf5918e9f8d721fa.png", + "thumb": "items/images/en/thumbs/sheev_hilt.96c63b432f3d71f2bf5918e9f8d721fa.128x128.png", + "subIcon": "sub_icons/weapon/generic_hilt_128x128.png" + } + } + }, + { + "id": "58b57068eb26db5c3119210e", + "slug": "banshee_prime_set", + "gameRef": "/Lotus/Powersuits/Banshee/BansheePrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Banshee Prime Set", + "icon": "items/images/en/banshee_prime_set.a0956816beb733841bce57e69a568cd6.png", + "thumb": "items/images/en/thumbs/banshee_prime_set.a0956816beb733841bce57e69a568cd6.128x128.png" + } + } + }, + { + "id": "573b7fcc0ec44a47787a6910", + "slug": "vauban_prime_set", + "gameRef": "/Lotus/Powersuits/Trapper/TrapperPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Vauban Prime Set", + "icon": "items/images/en/vauban_prime_set.9c15bb47d3ed4ed8e960c2502fac82f2.png", + "thumb": "items/images/en/thumbs/vauban_prime_set.9c15bb47d3ed4ed8e960c2502fac82f2.128x128.png" + } + } + }, + { + "id": "56dac56a5cc639de0a45c51b", + "slug": "mesas_waltz", + "gameRef": "/Lotus/Powersuits/Cowgirl/GunFuPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mesa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mesa's Waltz", + "icon": "items/images/en/mesas_waltz.d6c93034e5a61cb41cf18a64466e3eec.png", + "thumb": "items/images/en/thumbs/mesas_waltz.d6c93034e5a61cb41cf18a64466e3eec.128x128.png" + } + } + }, + { + "id": "573b801c0ec44a47787a6911", + "slug": "fragor_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/FragorPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Fragor Prime Blueprint", + "icon": "items/images/en/fragor_prime_blueprint.2b917b8a12f0981ff0a9a48c6c24edb1.png", + "thumb": "items/images/en/thumbs/fragor_prime_blueprint.2b917b8a12f0981ff0a9a48c6c24edb1.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "57222fbf92cc365777a61c10", + "slug": "sands_of_inaros", + "gameRef": "/Lotus/Types/Keys/MummyQuest/MummyQuestKeyChain", + "tags": [ + "key" + ], + "i18n": { + "en": { + "name": "Sands Of Inaros", + "icon": "items/images/en/sands_of_inaros.1673d171ddb1a58800c1742a184d2af2.png", + "thumb": "items/images/en/thumbs/sands_of_inaros.1673d171ddb1a58800c1742a184d2af2.128x128.png" + } + } + }, + { + "id": "573b80230ec44a47787a6912", + "slug": "fragor_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/FragorPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Fragor Prime Handle", + "icon": "items/images/en/fragor_prime_handle.2b917b8a12f0981ff0a9a48c6c24edb1.png", + "thumb": "items/images/en/thumbs/fragor_prime_handle.2b917b8a12f0981ff0a9a48c6c24edb1.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "573d0efa336297b2dfca2909", + "slug": "vauban_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/VaubanPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Vauban Prime Systems Blueprint", + "icon": "items/images/en/vauban_prime_systems.9c15bb47d3ed4ed8e960c2502fac82f2.png", + "thumb": "items/images/en/thumbs/vauban_prime_systems.9c15bb47d3ed4ed8e960c2502fac82f2.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515623", + "slug": "scattering_inferno", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/FireEventShotgunMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Scattering Inferno", + "icon": "items/images/en/scattering_inferno.0d2bd26b4df8e46933575d5f9e3ebb3f.png", + "thumb": "items/images/en/thumbs/scattering_inferno.0d2bd26b4df8e46933575d5f9e3ebb3f.128x128.png" + } + } + }, + { + "id": "5783bea1d9b6753790c89e86", + "slug": "kaszas_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchScytheHandle", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Kaszas Handle", + "icon": "items/images/en/kaszas_handle.11baea8229af2d3500c79b829f9dfcee.png", + "thumb": "items/images/en/thumbs/kaszas_handle.11baea8229af2d3500c79b829f9dfcee.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51562b", + "slug": "tesla_bank", + "gameRef": "/Lotus/Powersuits/Trapper/ZapTrapAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "vauban" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tesla Bank", + "icon": "items/images/en/tesla_bank.f55d9eb6180c649e83758017866cac43.png", + "thumb": "items/images/en/thumbs/tesla_bank.f55d9eb6180c649e83758017866cac43.128x128.png" + } + } + }, + { + "id": "59385f6716efa3a742b15f61", + "slug": "guided_effigy", + "gameRef": "/Lotus/Powersuits/Dragon/DragonPeltAugmentCard", + "tags": [ + "mod", + "chroma", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Guided Effigy", + "icon": "items/images/en/guided_effigy.c19b00b3672ac4678a87d7d3494ed55a.png", + "thumb": "items/images/en/thumbs/guided_effigy.c19b00b3672ac4678a87d7d3494ed55a.128x128.png" + } + } + }, + { + "id": "5a6b495b7f2bca025fde2b57", + "slug": "lasting_covenant", + "gameRef": "/Lotus/Powersuits/Priest/PriestPactAugmentCard", + "tags": [ + "mod", + "rare", + "harrow", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lasting Covenant", + "icon": "items/images/en/lasting_covenant.15073ed337d4a150e884ba7526f2cfab.png", + "thumb": "items/images/en/thumbs/lasting_covenant.15073ed337d4a150e884ba7526f2cfab.128x128.png" + } + } + }, + { + "id": "5a6b495c7f2bca025fde2b59", + "slug": "razorwing_blitz", + "gameRef": "/Lotus/Powersuits/Fairy/FairyFlightAugmentCard", + "tags": [ + "mod", + "rare", + "titania", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Razorwing Blitz", + "icon": "items/images/en/razorwing_blitz.5ff2769d2bec1fe4f7e77ce8181b538a.png", + "thumb": "items/images/en/thumbs/razorwing_blitz.5ff2769d2bec1fe4f7e77ce8181b538a.128x128.png" + } + } + }, + { + "id": "5a04750e6c4655012038ddcf", + "slug": "magus_cloud", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/ImmunityFallDamageOnVoidDash", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Cloud", + "icon": "items/images/en/magus_cloud.911f21546c5c95ceb5e23bb5127fd9e4.png", + "thumb": "items/images/en/thumbs/magus_cloud.911f21546c5c95ceb5e23bb5127fd9e4.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515637", + "slug": "revenge", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Revenge", + "tags": [ + "mod", + "common", + "sentinel", + "shade" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Revenge", + "icon": "items/images/en/revenge.977345a06289639bd2e192201008134b.png", + "thumb": "items/images/en/thumbs/revenge.977345a06289639bd2e192201008134b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515657", + "slug": "corrupt_charge", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/CorruptedHeavyDamageChargeSpeedMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Corrupt Charge", + "icon": "items/images/en/corrupt_charge.aff49b69438f76756ed274c3e350f018.png", + "thumb": "items/images/en/thumbs/corrupt_charge.aff49b69438f76756ed274c3e350f018.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a2", + "slug": "equilibrium", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarPickupBonusMod", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Equilibrium", + "icon": "items/images/en/equilibrium.2bbbfd93da9ed5a3676a8eee1c5af479.png", + "thumb": "items/images/en/thumbs/equilibrium.2bbbfd93da9ed5a3676a8eee1c5af479.128x128.png" + } + } + }, + { + "id": "559daacae779897b47b74c13", + "slug": "carrier_prime_cerebrum", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeCarrierCerebrum", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Carrier Prime Cerebrum", + "icon": "items/images/en/carrier_prime_cerebrum.1f39e6e9ecef0225b0755dd5c89f3cc8.png", + "thumb": "items/images/en/thumbs/carrier_prime_cerebrum.1f39e6e9ecef0225b0755dd5c89f3cc8.128x128.png", + "subIcon": "sub_icons/sentinel/prime_cerebrum_128x128.png" + } + } + }, + { + "id": "55c15374e779895d4f633bca", + "slug": "final_harbinger", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/RegorSwordShieldMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "sword_and_shield" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Final Harbinger", + "icon": "items/images/en/final_harbinger.eca5ce98036f65d3581d0b860755db27.png", + "thumb": "items/images/en/thumbs/final_harbinger.eca5ce98036f65d3581d0b860755db27.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8995", + "slug": "burston_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeBurston/PrimeBurston", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Burston Prime Set", + "icon": "items/images/en/burston_prime_set.9fc6c6a6dca24113027828df669cd89e.png", + "thumb": "items/images/en/thumbs/burston_prime_set.9fc6c6a6dca24113027828df669cd89e.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a3", + "slug": "loki_prime_set", + "gameRef": "/Lotus/Powersuits/Loki/LokiPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Loki Prime Set", + "icon": "items/images/en/loki_prime_set.abc05c280f92196bcb688643873fbf95.png", + "thumb": "items/images/en/thumbs/loki_prime_set.abc05c280f92196bcb688643873fbf95.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a5", + "slug": "nova_prime_set", + "gameRef": "/Lotus/Powersuits/AntiMatter/NovaPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Nova Prime Set", + "icon": "items/images/en/nova_prime_set.639a9222e1cb351cd6dd09ef28155ef0.png", + "thumb": "items/images/en/thumbs/nova_prime_set.639a9222e1cb351cd6dd09ef28155ef0.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89a6", + "slug": "nyx_prime_set", + "gameRef": "/Lotus/Powersuits/Jade/NyxPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Nyx Prime Set", + "icon": "items/images/en/nyx_prime_set.fd41c04c9e9bcc7e0e6963914f68f880.png", + "thumb": "items/images/en/thumbs/nyx_prime_set.fd41c04c9e9bcc7e0e6963914f68f880.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd89ae", + "slug": "soma_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeSoma/PrimeSomaRifle", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Soma Prime Set", + "icon": "items/images/en/soma_prime_set.1bf4937a6c2106c373cffeb93b1c87e0.png", + "thumb": "items/images/en/thumbs/soma_prime_set.1bf4937a6c2106c373cffeb93b1c87e0.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a500", + "slug": "twitch", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/HolsterSpeedBonusMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "rifle", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Twitch", + "icon": "items/images/en/twitch.68504ad3e5c72b7885dbdb4f0a99ee0c.png", + "thumb": "items/images/en/thumbs/twitch.68504ad3e5c72b7885dbdb4f0a99ee0c.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a502", + "slug": "venomous_rise", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/PoisonParkourPvPMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "i18n": { + "en": { + "name": "Venomous Rise", + "icon": "items/images/en/venomous_rise.d3013361047ec06da09edb2f83cdb0d7.png", + "thumb": "items/images/en/thumbs/venomous_rise.d3013361047ec06da09edb2f83cdb0d7.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a504", + "slug": "adrenaline_boost", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/MoreEnergyLessHealthMod", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Adrenaline Boost", + "icon": "items/images/en/adrenaline_boost.d0b54aa1b828e5d35467055a35d357e2.png", + "thumb": "items/images/en/thumbs/adrenaline_boost.d0b54aa1b828e5d35467055a35d357e2.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a505", + "slug": "blind_shot", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/HigherVelocityLessAccuratePistolMod", + "tags": [ + "secondary", + "pvp", + "rare", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Blind Shot", + "icon": "items/images/en/blind_shot.5d5b866f41a1395ae506007edefbd5d8.png", + "thumb": "items/images/en/thumbs/blind_shot.5d5b866f41a1395ae506007edefbd5d8.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a516", + "slug": "kill_switch", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/FasterReloadOnKillShotgunMod", + "tags": [ + "primary", + "pvp", + "shotgun", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Kill Switch", + "icon": "items/images/en/kill_switch.96ca67221bbb27cb0da2566ac276b735.png", + "thumb": "items/images/en/thumbs/kill_switch.96ca67221bbb27cb0da2566ac276b735.128x128.png" + } + } + }, + { + "id": "56c3bbe45d2f0202da32e93e", + "slug": "saryn_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SarynPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Saryn Prime Chassis Blueprint", + "icon": "items/images/en/saryn_prime_chassis.394094bef0383f954bd38d622bb075e5.png", + "thumb": "items/images/en/thumbs/saryn_prime_chassis.394094bef0383f954bd38d622bb075e5.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5a0ef3fc10bc40007cce1c8e", + "slug": "hunter_munitions", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hunter/PrimaryHunterMunitionsMod", + "tags": [ + "mod", + "uncommon", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunter Munitions", + "icon": "items/images/en/hunter_munitions.1c7942f9b55cb2f49605aa4037d98dfd.png", + "thumb": "items/images/en/thumbs/hunter_munitions.1c7942f9b55cb2f49605aa4037d98dfd.128x128.png" + } + } + }, + { + "id": "5ab167b8b2b6a80475780fc6", + "slug": "tiberon_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TiberonPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tiberon Prime Receiver", + "icon": "items/images/en/tiberon_prime_receiver.53f3cf1c68314c0555fbb7020d01f001.png", + "thumb": "items/images/en/thumbs/tiberon_prime_receiver.53f3cf1c68314c0555fbb7020d01f001.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e0", + "slug": "meteor_munitions", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/DamageBiasImpactPistolMod", + "tags": [ + "secondary", + "pvp", + "uncommon", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Meteor Munitions", + "icon": "items/images/en/meteor_munitions.93034601ec766a5946560ad0f4822653.png", + "thumb": "items/images/en/thumbs/meteor_munitions.93034601ec766a5946560ad0f4822653.128x128.png" + } + } + }, + { + "id": "5510858ae779897288827a4b", + "slug": "arcane_acceleration", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/LongGunSpeedOnCrit", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Acceleration", + "icon": "items/images/en/arcane_acceleration.452ae9fb49a9a6f7a1207133be620b42.png", + "thumb": "items/images/en/thumbs/arcane_acceleration.452ae9fb49a9a6f7a1207133be620b42.128x128.png" + } + } + }, + { + "id": "59dfeb6c115f1d887cfd7ac4", + "slug": "augur_seeker", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Augur/SecondaryAugurSeekerMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Augur Seeker", + "icon": "items/images/en/augur_seeker.9cc7cb7ec4aed2ca892a94166260f6da.png", + "thumb": "items/images/en/thumbs/augur_seeker.9cc7cb7ec4aed2ca892a94166260f6da.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e1", + "slug": "momentary_pause", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/RestoreHealthOnKillMod", + "tags": [ + "primary", + "pvp", + "shotgun", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Momentary Pause", + "icon": "items/images/en/momentary_pause.cfa0810112f6ea7122d776e57552bbaf.png", + "thumb": "items/images/en/thumbs/momentary_pause.cfa0810112f6ea7122d776e57552bbaf.128x128.png" + } + } + }, + { + "id": "5526aec1e779896af9418263", + "slug": "eternal_war", + "gameRef": "/Lotus/Powersuits/Berserker/IntimidateAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "valkyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Eternal War", + "icon": "items/images/en/eternal_war.2cfe9dbe6185e422d6789a4c9c69811b.png", + "thumb": "items/images/en/thumbs/eternal_war.2cfe9dbe6185e422d6789a4c9c69811b.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff2e", + "slug": "boltor_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BoltorPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Boltor Prime Barrel", + "icon": "items/images/en/boltor_prime_barrel.a26157003dea5b1e1fe6660f46f3ea11.png", + "thumb": "items/images/en/thumbs/boltor_prime_barrel.a26157003dea5b1e1fe6660f46f3ea11.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "59dfeb5c115f1d887cfd7ab7", + "slug": "gladiator_rush", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Gladiator/MeleeGladiatorRushMod", + "tags": [ + "mod", + "common", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Gladiator Rush", + "icon": "items/images/en/gladiator_rush.dedd45e24ad306ac310bffaa5944c216.png", + "thumb": "items/images/en/thumbs/gladiator_rush.dedd45e24ad306ac310bffaa5944c216.128x128.png" + } + } + }, + { + "id": "59dfeb63115f1d887cfd7abe", + "slug": "vigilante_vigor", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Vigilante/WarframeVigilanteVigorMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vigilante Vigor", + "icon": "items/images/en/vigilante_vigor.f74b61489f4f32ad34416ffb9297f1ed.png", + "thumb": "items/images/en/thumbs/vigilante_vigor.f74b61489f4f32ad34416ffb9297f1ed.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff34", + "slug": "braton_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BratonPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Braton Prime Receiver", + "icon": "items/images/en/braton_prime_receiver.ae229642d6179ebfb1547ed7d976e749.png", + "thumb": "items/images/en/thumbs/braton_prime_receiver.ae229642d6179ebfb1547ed7d976e749.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e4", + "slug": "overcharge_detectors", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/EffectOnFullEnergyMod", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Overcharge Detectors", + "icon": "items/images/en/overcharge_detectors.b9a371b79d26b7eb4a755729147a8ca7.png", + "thumb": "items/images/en/thumbs/overcharge_detectors.b9a371b79d26b7eb4a755729147a8ca7.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e5", + "slug": "overview", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/HigherAirAimFoVRifleMod", + "tags": [ + "primary", + "uncommon", + "pvp", + "mod", + "assault_rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Overview", + "icon": "items/images/en/overview.2d89486e7020c045703b6c3624c845ee.png", + "thumb": "items/images/en/thumbs/overview.2d89486e7020c045703b6c3624c845ee.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e6", + "slug": "prize_kill", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Shotgun/RestoreShieldsOnKillMod", + "tags": [ + "primary", + "pvp", + "shotgun", + "rare", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Prize Kill", + "icon": "items/images/en/prize_kill.c5cb3aebb3242b81dcc1231bb461ec92.png", + "thumb": "items/images/en/thumbs/prize_kill.c5cb3aebb3242b81dcc1231bb461ec92.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e7", + "slug": "quick_charge", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/ReduceShieldRechargeDelayWarframe", + "tags": [ + "mod", + "rare", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Quick Charge", + "icon": "items/images/en/quick_charge.428d4d450889ea8e92b0fe22e0aea38a.png", + "thumb": "items/images/en/thumbs/quick_charge.428d4d450889ea8e92b0fe22e0aea38a.128x128.png" + } + } + }, + { + "id": "5655c4c7b66f832e1ad87d50", + "slug": "primed_rifle_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/WeaponRifleConvertAmmoModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "assault_rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Rifle Ammo Mutation", + "icon": "items/images/en/primed_rifle_ammo_mutation.d7261c0bfbca0a7e8f26bf24257d172a.png", + "thumb": "items/images/en/thumbs/primed_rifle_ammo_mutation.d7261c0bfbca0a7e8f26bf24257d172a.128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e8", + "slug": "razor_munitions", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Pistol/DamageBiasSlashPistolMod", + "tags": [ + "secondary", + "pvp", + "uncommon", + "mod", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Razor Munitions", + "icon": "items/images/en/razor_munitions.83cd92fcf1aa1ca8eaccb6f27d28f30b.png", + "thumb": "items/images/en/thumbs/razor_munitions.83cd92fcf1aa1ca8eaccb6f27d28f30b.128x128.png" + } + } + }, + { + "id": "566750e45dcbc186f0536bcf", + "slug": "arcane_arachne", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/GolemArcaneBonusDamageOnWallLatch", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Arachne", + "icon": "items/images/en/arcane_arachne.6e3fe6374d5b710e6e55ccc70b395bc8.png", + "thumb": "items/images/en/thumbs/arcane_arachne.6e3fe6374d5b710e6e55ccc70b395bc8.128x128.png" + } + } + }, + { + "id": "5667516b5dcbc186f0536bd2", + "slug": "arcane_momentum", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/GolemArcaneSniperSpeedOnCrit", + "tags": [ + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Momentum", + "icon": "items/images/en/arcane_momentum.f551dd91689f3169160aafecddeede24.png", + "thumb": "items/images/en/thumbs/arcane_momentum.f551dd91689f3169160aafecddeede24.128x128.png" + } + } + }, + { + "id": "566751815dcbc186f0536bd3", + "slug": "arcane_precision", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/GolemArcanePistolDamageOnHeadshot", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Precision", + "icon": "items/images/en/arcane_precision.9947891b2c40889b5ae96ea6987df9c1.png", + "thumb": "items/images/en/thumbs/arcane_precision.9947891b2c40889b5ae96ea6987df9c1.128x128.png" + } + } + }, + { + "id": "56b656e5ef0390c7e4006384", + "slug": "calm_and_frenzy", + "gameRef": "/Lotus/Powersuits/YinYang/YinYangTargetAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "equinox" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Calm & Frenzy", + "icon": "items/images/en/calm_and_frenzy.c5528e92d2b6b52e8c6903cf7e453fe5.png", + "thumb": "items/images/en/thumbs/calm_and_frenzy.c5528e92d2b6b52e8c6903cf7e453fe5.128x128.png" + } + } + }, + { + "id": "56b656edef0390c7e4006385", + "slug": "peaceful_provocation", + "gameRef": "/Lotus/Powersuits/YinYang/YinYangAuraAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "equinox" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Peaceful Provocation", + "icon": "items/images/en/peaceful_provocation.5dd2d6341733219501c35d6503fa36f5.png", + "thumb": "items/images/en/thumbs/peaceful_provocation.5dd2d6341733219501c35d6503fa36f5.128x128.png" + } + } + }, + { + "id": "56c3bbe05d2f0202da32e93d", + "slug": "saryn_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SarynPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Saryn Prime Systems Blueprint", + "icon": "items/images/en/saryn_prime_systems.394094bef0383f954bd38d622bb075e5.png", + "thumb": "items/images/en/thumbs/saryn_prime_systems.394094bef0383f954bd38d622bb075e5.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "598b06b4ab6b61be6fec0fb2", + "slug": "delta_beacon", + "gameRef": "/Lotus/Types/Items/MiscItems/VayHekCoordinateFragmentA", + "tags": [ + "misc" + ], + "i18n": { + "en": { + "name": "Delta Beacon", + "icon": "items/images/en/delta_beacon.66ad7fbedd8f2d59b375cf13dd62a731.png", + "thumb": "items/images/en/thumbs/delta_beacon.66ad7fbedd8f2d59b375cf13dd62a731.128x128.png" + } + } + }, + { + "id": "56c3bbee5d2f0202da32e940", + "slug": "nikana_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeNikanaBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nikana Prime Blueprint", + "icon": "items/images/en/nikana_prime_blueprint.2daac0807a52385bfcf62f71075f2221.png", + "thumb": "items/images/en/thumbs/nikana_prime_blueprint.2daac0807a52385bfcf62f71075f2221.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "567af35fcbfa8f05d076a4e9", + "slug": "recover", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Rifle/RestoreHealthOnKillMod", + "tags": [ + "primary", + "pvp", + "rare", + "mod", + "assault_rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Recover", + "icon": "items/images/en/recover.c9a08b3ae365a5dd429a2ea357cb8c91.png", + "thumb": "items/images/en/thumbs/recover.c9a08b3ae365a5dd429a2ea357cb8c91.128x128.png" + } + } + }, + { + "id": "56c3bbf45d2f0202da32e941", + "slug": "nikana_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeNikanaBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Nikana Prime Blade", + "icon": "items/images/en/nikana_prime_blade.2daac0807a52385bfcf62f71075f2221.png", + "thumb": "items/images/en/thumbs/nikana_prime_blade.2daac0807a52385bfcf62f71075f2221.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "58f0ee99aa4b70452a173070", + "slug": "pyroclastic_flow", + "gameRef": "/Lotus/Powersuits/Nezha/NezhaTrailAugmentCard", + "tags": [ + "mod", + "nezha", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Pyroclastic Flow", + "icon": "items/images/en/pyroclastic_flow.ac94de8b2515a96114dec14cc78ce907.png", + "thumb": "items/images/en/thumbs/pyroclastic_flow.ac94de8b2515a96114dec14cc78ce907.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515689", + "slug": "conductive_blade", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingWeaponElectricityDamageMod", + "tags": [ + "uncommon", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Conductive Blade", + "icon": "items/images/en/conductive_blade.dbd843a5bdcdf3c963a99b8afbf906c8.png", + "thumb": "items/images/en/thumbs/conductive_blade.dbd843a5bdcdf3c963a99b8afbf906c8.128x128.png" + } + } + }, + { + "id": "5ab1570db2b6a8044d5137c1", + "slug": "zephyr_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ZephyrPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Zephyr Prime Neuroptics Blueprint", + "icon": "items/images/en/zephyr_prime_neuroptics.4ffc19dd100b3c182beef5f1ef3d337e.png", + "thumb": "items/images/en/thumbs/zephyr_prime_neuroptics.4ffc19dd100b3c182beef5f1ef3d337e.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5ab1570db2b6a8044d5137c5", + "slug": "zephyr_prime_set", + "gameRef": "/Lotus/Powersuits/Tengu/ZephyrPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Zephyr Prime Set", + "icon": "items/images/en/zephyr_prime_set.4ffc19dd100b3c182beef5f1ef3d337e.png", + "thumb": "items/images/en/thumbs/zephyr_prime_set.4ffc19dd100b3c182beef5f1ef3d337e.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51568b", + "slug": "gnashing_payara", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DualDaggerCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "dual_daggers" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gnashing Payara", + "icon": "items/images/en/gnashing_payara.376c7788c5604a5109534a1695b2503d.png", + "thumb": "items/images/en/thumbs/gnashing_payara.376c7788c5604a5109534a1695b2503d.128x128.png" + } + } + }, + { + "id": "5ab167b7b2b6a80475780fad", + "slug": "kronen_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/KronenPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Kronen Prime Blueprint", + "icon": "items/images/en/kronen_prime_blueprint.09023145e06199878b94a9c664e95ce7.png", + "thumb": "items/images/en/thumbs/kronen_prime_blueprint.09023145e06199878b94a9c664e95ce7.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5ab167b7b2b6a80475780fb1", + "slug": "tiberon_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TiberonPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tiberon Prime Barrel", + "icon": "items/images/en/tiberon_prime_barrel.53f3cf1c68314c0555fbb7020d01f001.png", + "thumb": "items/images/en/thumbs/tiberon_prime_barrel.53f3cf1c68314c0555fbb7020d01f001.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5ab167b9b2b6a80475780fd1", + "slug": "kronen_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KronenPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Kronen Prime Blade", + "icon": "items/images/en/kronen_prime_blade.09023145e06199878b94a9c664e95ce7.png", + "thumb": "items/images/en/thumbs/kronen_prime_blade.09023145e06199878b94a9c664e95ce7.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51569a", + "slug": "winds_of_purity", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/FurisMod", + "tags": [ + "furis", + "syndicate", + "secondary", + "mod", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Winds Of Purity", + "icon": "items/images/en/winds_of_purity.1ddc46bdcc0721c654edf27fe0e430cb.png", + "thumb": "items/images/en/thumbs/winds_of_purity.1ddc46bdcc0721c654edf27fe0e430cb.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e51569e", + "slug": "retribution", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarRevengeDamageMelee", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Retribution", + "icon": "items/images/en/retribution.2830651404639a9119f19d51d8454de2.png", + "thumb": "items/images/en/thumbs/retribution.2830651404639a9119f19d51d8454de2.128x128.png" + } + } + }, + { + "id": "5dbe9b157ea27b0ffe3ca289", + "slug": "live_wire", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Cipher/ElectrifyOnHackMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "i18n": { + "en": { + "name": "Live Wire", + "icon": "items/images/en/live_wire.dcc3d0c968b2861fce88490edc724190.png", + "thumb": "items/images/en/thumbs/live_wire.dcc3d0c968b2861fce88490edc724190.128x128.png" + } + } + }, + { + "id": "5df8b0ab1456970087cd9b00", + "slug": "ivara_prime_set", + "gameRef": "/Lotus/Powersuits/Ranger/IvaraPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Ivara Prime Set", + "icon": "items/images/en/ivara_prime_set.5c4fbd8ffa071c741cf93e260e43b6db.png", + "thumb": "items/images/en/thumbs/ivara_prime_set.5c4fbd8ffa071c741cf93e260e43b6db.128x128.png" + } + } + }, + { + "id": "54d4c7eae779892855c69de9", + "slug": "proof_fragment", + "gameRef": "/Lotus/Types/Items/MiscItems/Beacon", + "tags": [ + "misc" + ], + "i18n": { + "en": { + "name": "Proof Fragment", + "icon": "items/images/en/proof_fragment.c6c1af33ecce7a87b4b5970e3c52848f.png", + "thumb": "items/images/en/thumbs/proof_fragment.c6c1af33ecce7a87b4b5970e3c52848f.128x128.png" + } + } + }, + { + "id": "5b50a3aa3a84fd02a7823246", + "slug": "empowered_quiver", + "gameRef": "/Lotus/Powersuits/Ranger/RangerQuiverAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ivara" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Empowered Quiver", + "icon": "items/images/en/empowered_quiver.1443fd96a1641e97a75f6db5e40d8b15.png", + "thumb": "items/images/en/thumbs/empowered_quiver.1443fd96a1641e97a75f6db5e40d8b15.128x128.png" + } + } + }, + { + "id": "5b50a3ac3a84fd02a782324b", + "slug": "insatiable", + "gameRef": "/Lotus/Powersuits/Infestation/InfestPodsAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nidus" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Insatiable", + "icon": "items/images/en/insatiable.8bb5b675d8f3bbae956d3abb47b4a170.png", + "thumb": "items/images/en/thumbs/insatiable.8bb5b675d8f3bbae956d3abb47b4a170.128x128.png" + } + } + }, + { + "id": "5bc1ab92b919f200c18c10ed", + "slug": "vigorous_swap", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarHolsterDamageMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Vigorous Swap", + "icon": "items/images/en/vigorous_swap.acdc8dc20f09463f5e36bb98a4e043e3.png", + "thumb": "items/images/en/thumbs/vigorous_swap.acdc8dc20f09463f5e36bb98a4e043e3.128x128.png" + } + } + }, + { + "id": "54dd27f0e7798934fcf60799", + "slug": "anemic_agility", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/CorruptedFireRateDamagePistol", + "tags": [ + "mod", + "rare", + "pistol", + "secondary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Anemic Agility", + "icon": "items/images/en/anemic_agility.93c78266ad510a79aa159112aadd754b.png", + "thumb": "items/images/en/thumbs/anemic_agility.93c78266ad510a79aa159112aadd754b.128x128.png" + } + } + }, + { + "id": "5bc1ab92b919f200c18c10ee", + "slug": "rolling_guard", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarInvulnOnRollMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Rolling Guard", + "icon": "items/images/en/rolling_guard.0b2c9bf665adf399d17197c4902615d7.png", + "thumb": "items/images/en/thumbs/rolling_guard.0b2c9bf665adf399d17197c4902615d7.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178a5", + "slug": "muzzle_flash", + "gameRef": "/Lotus/Powersuits/Cowgirl/RussianRouletteAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mesa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Muzzle Flash", + "icon": "items/images/en/muzzle_flash.fdeb0ba6eceae3d4ff8422bf26a6c7d0.png", + "thumb": "items/images/en/thumbs/muzzle_flash.fdeb0ba6eceae3d4ff8422bf26a6c7d0.128x128.png" + } + } + }, + { + "id": "59ecb5d2195d2301e654749b", + "slug": "grineer_forest_water_pump_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGrineerForestCaveIntermediateA", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Forest Water Pump Scene", + "icon": "items/images/en/grineer_forest_water_pump_scene.c07de36b4524d5758e6fbb1f14f637c2.png", + "thumb": "items/images/en/thumbs/grineer_forest_water_pump_scene.c07de36b4524d5758e6fbb1f14f637c2.128x128.png" + } + } + }, + { + "id": "5a04750d6c4655012038ddcd", + "slug": "exodia_might", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/FinisherLifesteal", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Exodia Might", + "icon": "items/images/en/exodia_might.255cbe521efd3aa7312e90e523b3c9ed.png", + "thumb": "items/images/en/thumbs/exodia_might.255cbe521efd3aa7312e90e523b3c9ed.128x128.png" + } + } + }, + { + "id": "5911f11d97a0add8e9d5da51", + "slug": "avenging_truth", + "gameRef": "/Lotus/Upgrades/Mods/Syndicate/SilvaAegisMod", + "tags": [ + "syndicate", + "mod", + "silva_and_aegis", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Avenging Truth", + "icon": "items/images/en/avenging_truth.78f187d18567a17c8f76d1c8cdbd5ef3.png", + "thumb": "items/images/en/thumbs/avenging_truth.78f187d18567a17c8f76d1c8cdbd5ef3.128x128.png" + } + } + }, + { + "id": "5a2feeb2c2c9e90cbdaa23d6", + "slug": "mirage_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MiragePrimeHelmetBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Mirage Prime Neuroptics Blueprint", + "icon": "items/images/en/mirage_prime_neuroptics.e7f8f484dd6ae6c35f0767fff35a5109.png", + "thumb": "items/images/en/thumbs/mirage_prime_neuroptics.e7f8f484dd6ae6c35f0767fff35a5109.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "58e6407ada6e257f670cf070", + "slug": "teshins_refuge_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTilePvPConclave", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Teshin's Refuge Scene", + "icon": "items/images/en/teshins_refuge_scene.692b1c90cda56e257ed0ea837de927b0.png", + "thumb": "items/images/en/thumbs/teshins_refuge_scene.692b1c90cda56e257ed0ea837de927b0.128x128.png" + } + } + }, + { + "id": "59a5cd4d5cd9938cfede7043", + "slug": "ballistica_prime_upper_limb", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeBallisticaUpperLimb", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Ballistica Prime Upper Limb", + "icon": "items/images/en/ballistica_prime_upper_limb.4ed33348008ace40406d0383f692ecac.png", + "thumb": "items/images/en/thumbs/ballistica_prime_upper_limb.4ed33348008ace40406d0383f692ecac.128x128.png", + "subIcon": "sub_icons/weapon/prime_limb_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51562e", + "slug": "dual_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleFireIterationsMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Dual Rounds", + "icon": "items/images/en/dual_rounds.304395bed5a40d76ddb9a62c76736d94.png", + "thumb": "items/images/en/thumbs/dual_rounds.304395bed5a40d76ddb9a62c76736d94.128x128.png" + } + } + }, + { + "id": "58f0efdfaa4b70452a173075", + "slug": "orvius_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TeshinGlaiveBlade", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Orvius Blade", + "icon": "items/images/en/orvius_blade.65c03b5b689ec5f70399b9a02f539994.png", + "thumb": "items/images/en/thumbs/orvius_blade.65c03b5b689ec5f70399b9a02f539994.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515630", + "slug": "burdened_magazine", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/CorruptedMaxClipReloadSpeedShotgun", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Burdened Magazine", + "icon": "items/images/en/burdened_magazine.cd8210ab3b0045b270997e1df53f210c.png", + "thumb": "items/images/en/thumbs/burdened_magazine.cd8210ab3b0045b270997e1df53f210c.128x128.png" + } + } + }, + { + "id": "59a5c2565cd9938cfede703f", + "slug": "nami_skyla_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PrimeNamiSkylaBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nami Skyla Prime Blueprint", + "icon": "items/images/en/nami_skyla_prime_blueprint.d83bcdd72463d5dd1f78faea07ff02a4.png", + "thumb": "items/images/en/thumbs/nami_skyla_prime_blueprint.d83bcdd72463d5dd1f78faea07ff02a4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5be701133ffcc703e462c705", + "slug": "sonic_boost", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBSonicBoomMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sonic Boost", + "icon": "items/images/en/sonic_boost.db31f38f15ee982efdcf3798dacf95c2.png", + "thumb": "items/images/en/thumbs/sonic_boost.db31f38f15ee982efdcf3798dacf95c2.128x128.png" + } + } + }, + { + "id": "5bf54b483ffcc7066e7eb854", + "slug": "pax_bolt", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/EnergyEfficiencyOnHeadshot", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Pax Bolt", + "icon": "items/images/en/pax_bolt.c2a3984cf53e69467a87424c1ca2acd4.png", + "thumb": "items/images/en/thumbs/pax_bolt.c2a3984cf53e69467a87424c1ca2acd4.128x128.png" + } + } + }, + { + "id": "5c196fae96037800ddadac15", + "slug": "akjagara_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeAkjagara/AkJagaraPrime", + "tags": [ + "secondary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Akjagara Prime Set", + "icon": "items/images/en/akjagara_prime_set.5ed111e5dcb3df5d57c5411849c113e4.png", + "thumb": "items/images/en/thumbs/akjagara_prime_set.5ed111e5dcb3df5d57c5411849c113e4.128x128.png" + } + } + }, + { + "id": "5c196fb496037800ddadac1a", + "slug": "akjagara_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkjagaraPrimeLink", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akjagara Prime Link", + "icon": "items/images/en/akjagara_prime_link.5ed111e5dcb3df5d57c5411849c113e4.png", + "thumb": "items/images/en/thumbs/akjagara_prime_link.5ed111e5dcb3df5d57c5411849c113e4.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "5c1bd9f814a8e4006b1dad48", + "slug": "magus_melt", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HeatDamageOnDash", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Melt", + "icon": "items/images/en/magus_melt.4b9f09f76e8d5c38d170209ecfda3481.png", + "thumb": "items/images/en/thumbs/magus_melt.4b9f09f76e8d5c38d170209ecfda3481.128x128.png" + } + } + }, + { + "id": "5c1bd9f914a8e4006b1dad49", + "slug": "resolute_focus", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingCCImmunityIfAimingMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Resolute Focus", + "icon": "items/images/en/resolute_focus.a25bb4ed2565504baa073dd60019ecec.png", + "thumb": "items/images/en/thumbs/resolute_focus.a25bb4ed2565504baa073dd60019ecec.128x128.png" + } + } + }, + { + "id": "5c1bda1014a8e4006b1dad75", + "slug": "magus_firewall", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/DamageReductionOnVoidMode", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Firewall", + "icon": "items/images/en/magus_firewall.76ccbdc51cd207a32782be2bebe3b849.png", + "thumb": "items/images/en/thumbs/magus_firewall.76ccbdc51cd207a32782be2bebe3b849.128x128.png" + } + } + }, + { + "id": "5c1bda2414a8e4006b1dada6", + "slug": "magus_destruct", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/ProcResistOnBlast", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Destruct", + "icon": "items/images/en/magus_destruct.5d566d3caf8a4d577f3316224757d24f.png", + "thumb": "items/images/en/thumbs/magus_destruct.5d566d3caf8a4d577f3316224757d24f.128x128.png" + } + } + }, + { + "id": "5c3892672cc6ce00f238139c", + "slug": "desiccations_curse", + "gameRef": "/Lotus/Powersuits/Sandman/SandmanBlastAugmentCard", + "tags": [ + "inaros", + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Desiccation's Curse", + "icon": "items/images/en/desiccations_curse.4693f255bb9fd28ee707615c72244eda.png", + "thumb": "items/images/en/thumbs/desiccations_curse.4693f255bb9fd28ee707615c72244eda.128x128.png" + } + } + }, + { + "id": "5ca2866ffc2db2035eae059b", + "slug": "stradavar_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StradavarPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Stradavar Prime Barrel", + "icon": "items/images/en/stradavar_prime_barrel.57c042a30996514288dfd70f2ce267ca.png", + "thumb": "items/images/en/thumbs/stradavar_prime_barrel.57c042a30996514288dfd70f2ce267ca.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae05a4", + "slug": "stradavar_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StradavarPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Stradavar Prime Stock", + "icon": "items/images/en/stradavar_prime_stock.57c042a30996514288dfd70f2ce267ca.png", + "thumb": "items/images/en/thumbs/stradavar_prime_stock.57c042a30996514288dfd70f2ce267ca.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "5ce7fd84d23a3b00908c4203", + "slug": "repair_kit", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/SentinelRepairKitMod", + "tags": [ + "common", + "mod", + "sentinel" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Repair Kit", + "icon": "items/images/en/repair_kit.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/repair_kit.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5ce7fd86d23a3b00908c4208", + "slug": "aero_periphery", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hawk/HawkModC", + "tags": [ + "common", + "mod", + "primary" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Aero Periphery", + "icon": "items/images/en/aero_periphery.280ffce82d790195fc27db52948715c4.png", + "thumb": "items/images/en/thumbs/aero_periphery.280ffce82d790195fc27db52948715c4.128x128.png" + } + } + }, + { + "id": "5ce7fd86d23a3b00908c420b", + "slug": "anti_grav_array", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/AntigravDilator", + "tags": [ + "mod", + "rare", + "sentinel", + "robotic" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Anti-Grav Array", + "icon": "items/images/en/anti_grav_array.a0f52669da4796b20b416d0bf9b64c0d.png", + "thumb": "items/images/en/thumbs/anti_grav_array.a0f52669da4796b20b416d0bf9b64c0d.128x128.png" + } + } + }, + { + "id": "5ce7fd87d23a3b00908c420c", + "slug": "aero_agility", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hawk/HawkModB", + "tags": [ + "mod", + "rare", + "primary", + "sniper" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Aero Agility", + "icon": "items/images/en/aero_agility.fd8f90a41451d16e47afab22ad0bc1fd.png", + "thumb": "items/images/en/thumbs/aero_agility.fd8f90a41451d16e47afab22ad0bc1fd.128x128.png" + } + } + }, + { + "id": "5ce7fd87d23a3b00908c420d", + "slug": "kavats_grace", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/WarframeCatMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Kavat's Grace", + "icon": "items/images/en/kavats_grace.dbadaff449bcd76524e6350fd4fc7a6a.png", + "thumb": "items/images/en/thumbs/kavats_grace.dbadaff449bcd76524e6350fd4fc7a6a.128x128.png" + } + } + }, + { + "id": "5ce7fd87d23a3b00908c420f", + "slug": "stasis_field", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPrecept/MoaStasisFieldPrecept", + "tags": [ + "mod", + "common", + "sentinel", + "moa" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Stasis Field", + "icon": "items/images/en/stasis_field.103c8611cc2434079a94b65c9796606a.png", + "thumb": "items/images/en/thumbs/stasis_field.103c8611cc2434079a94b65c9796606a.128x128.png" + } + } + }, + { + "id": "5ce7fd87d23a3b00908c4210", + "slug": "tractor_beam", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPrecept/MoaTractorBeamPrecept", + "tags": [ + "mod", + "common", + "sentinel", + "moa" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tractor Beam", + "icon": "items/images/en/tractor_beam.aa9e1edd8948345a31e745b39e583040.png", + "thumb": "items/images/en/thumbs/tractor_beam.aa9e1edd8948345a31e745b39e583040.128x128.png" + } + } + }, + { + "id": "5ce7fd88d23a3b00908c4212", + "slug": "proton_snap", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Spider/SpiderModC", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Proton Snap", + "icon": "items/images/en/proton_snap.86503734ed8eb3c634d064905a602fce.png", + "thumb": "items/images/en/thumbs/proton_snap.86503734ed8eb3c634d064905a602fce.128x128.png" + } + } + }, + { + "id": "5d322d1074bdad027da4d080", + "slug": "ventkids_clubhouse_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileVentKids", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Ventkids Clubhouse Scene", + "icon": "items/images/en/ventkids_clubhouse_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/ventkids_clubhouse_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d322d1074bdad027da4d082", + "slug": "gas_city_lower_foyer_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityExitFour", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Lower Foyer Scene", + "icon": "items/images/en/gas_city_lower_foyer_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_lower_foyer_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d322d1074bdad027da4d085", + "slug": "gas_city_corridors_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityConnectorTwo", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Corridors Scene", + "icon": "items/images/en/gas_city_corridors_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_corridors_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d322d1074bdad027da4d08a", + "slug": "gas_city_regulators_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityIntermediateFive", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Regulators Scene", + "icon": "items/images/en/gas_city_regulators_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_regulators_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515648", + "slug": "primed_chamber", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/EventSniperReloadDamageMod", + "tags": [ + "mod", + "rare", + "primary", + "sniper" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Primed Chamber", + "icon": "items/images/en/primed_chamber.b557b92a5e393a67099d652d5ae983f3.png", + "thumb": "items/images/en/thumbs/primed_chamber.b557b92a5e393a67099d652d5ae983f3.128x128.png" + } + } + }, + { + "id": "5527a280e779892059574ca9", + "slug": "odonata_prime_wings_blueprint", + "gameRef": "/Lotus/Types/Recipes/ArchwingRecipes/PrimeArchwing/PrimeArchwingWingsBlueprint", + "tags": [ + "component", + "prime", + "archwing", + "blueprint" + ], + "i18n": { + "en": { + "name": "Odonata Prime Wings Blueprint", + "icon": "items/images/en/odonata_prime_wings.9087f5267b49dee37c38d36f57387753.png", + "thumb": "items/images/en/thumbs/odonata_prime_wings.9087f5267b49dee37c38d36f57387753.128x128.png", + "subIcon": "sub_icons/archwing/prime_wings_128x128.png" + } + } + }, + { + "id": "55a4693be779890222824cef", + "slug": "seeking_fury", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/ReloadSpeedPunchThroughMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Seeking Fury", + "icon": "items/images/en/seeking_fury.bcb6c27bae6bd82cfd148825128415a6.png", + "thumb": "items/images/en/thumbs/seeking_fury.bcb6c27bae6bd82cfd148825128415a6.128x128.png" + } + } + }, + { + "id": "5a9ed835b2b6a80133127c30", + "slug": "eidolon_naramon_lens", + "gameRef": "/Lotus/Upgrades/Focus/TacticLensOstron", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Eidolon Naramon Lens", + "icon": "items/images/en/eidolon_naramon_lens.93dc4a7c122b9628cd72cee12ac77f3d.png", + "thumb": "items/images/en/thumbs/eidolon_naramon_lens.93dc4a7c122b9628cd72cee12ac77f3d.128x128.png" + } + } + }, + { + "id": "578390a9d9b6753790c89e85", + "slug": "meteor_crash", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingDualStatImpactStatusMeleeMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Meteor Crash", + "icon": "items/images/en/meteor_crash.bf691cde5cfcf6f77f9e915775821c92.png", + "thumb": "items/images/en/thumbs/meteor_crash.bf691cde5cfcf6f77f9e915775821c92.128x128.png" + } + } + }, + { + "id": "5ab167b8b2b6a80475780fb8", + "slug": "tiberon_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TiberonPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tiberon Prime Stock", + "icon": "items/images/en/tiberon_prime_stock.53f3cf1c68314c0555fbb7020d01f001.png", + "thumb": "items/images/en/thumbs/tiberon_prime_stock.53f3cf1c68314c0555fbb7020d01f001.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "5a04750c6c4655012038ddca", + "slug": "magus_husk", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/ArmourOnOperatorMode", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Husk", + "icon": "items/images/en/magus_husk.e06a95548913c871fb0bd03a1691f917.png", + "thumb": "items/images/en/thumbs/magus_husk.e06a95548913c871fb0bd03a1691f917.128x128.png" + } + } + }, + { + "id": "5a04750e6c4655012038ddce", + "slug": "magus_elevate", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HealOnTransferenceIn", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Elevate", + "icon": "items/images/en/magus_elevate.c2f5a10648687f0c0fc4f66f5df6b76f.png", + "thumb": "items/images/en/thumbs/magus_elevate.c2f5a10648687f0c0fc4f66f5df6b76f.128x128.png" + } + } + }, + { + "id": "5a0ef3fb10bc40007cce1c8b", + "slug": "hunter_recovery", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Hunter/CompanionHunterRecoveryMod", + "tags": [ + "mod", + "common", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hunter Recovery", + "icon": "items/images/en/hunter_recovery.4767ea657fe1c65c7a7a7805957c9b24.png", + "thumb": "items/images/en/thumbs/hunter_recovery.4767ea657fe1c65c7a7a7805957c9b24.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515684", + "slug": "guardian", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/Guardian", + "tags": [ + "mod", + "common", + "sentinel", + "robotic" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Guardian", + "icon": "items/images/en/guardian.82a8cad9f3aa8df41a82c490e85425d6.png", + "thumb": "items/images/en/thumbs/guardian.82a8cad9f3aa8df41a82c490e85425d6.128x128.png" + } + } + }, + { + "id": "5a2feeb2c2c9e90cbdaa23d3", + "slug": "mirage_prime_set", + "gameRef": "/Lotus/Powersuits/Harlequin/MiragePrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Mirage Prime Set", + "icon": "items/images/en/mirage_prime_set.e7f8f484dd6ae6c35f0767fff35a5109.png", + "thumb": "items/images/en/thumbs/mirage_prime_set.e7f8f484dd6ae6c35f0767fff35a5109.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515685", + "slug": "smoke_shadow", + "gameRef": "/Lotus/Powersuits/Ninja/SmokeScreenAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ash" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Smoke Shadow", + "icon": "items/images/en/smoke_shadow.95024517615b631ded466c997ff117a6.png", + "thumb": "items/images/en/thumbs/smoke_shadow.95024517615b631ded466c997ff117a6.128x128.png" + } + } + }, + { + "id": "5dfea1421456970294aff380", + "slug": "spectra_vandal_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SpectraVandalHandle", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Spectra Vandal Handle", + "icon": "items/images/en/spectra_vandal_handle.fe39f6aee4576d50c445d4203ee91db2.png", + "thumb": "items/images/en/thumbs/spectra_vandal_handle.fe39f6aee4576d50c445d4203ee91db2.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "5dfea1421456970294aff381", + "slug": "spectra_vandal_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/SpectraVandalBlueprint", + "tags": [ + "weapon", + "modular", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Spectra Vandal Blueprint", + "icon": "items/images/en/spectra_vandal_blueprint.fe39f6aee4576d50c445d4203ee91db2.png", + "thumb": "items/images/en/thumbs/spectra_vandal_blueprint.fe39f6aee4576d50c445d4203ee91db2.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749dd", + "slug": "shatter_burst", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipThumperAbilityCard", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shatter Burst", + "icon": "items/images/en/shatter_burst.65f146cd0258dd404603fc13d2f0b3dc.png", + "thumb": "items/images/en/thumbs/shatter_burst.65f146cd0258dd404603fc13d2f0b3dc.128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749e3", + "slug": "breach_quanta", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/BreachRepair", + "tags": [ + "mod", + "railjack", + "common" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Breach Quanta", + "icon": "items/images/en/breach_quanta.5626aef55def01e96d9e0cc1142bc117.png", + "thumb": "items/images/en/thumbs/breach_quanta.5626aef55def01e96d9e0cc1142bc117.128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749f6", + "slug": "tether", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipTetherAbilityCard", + "tags": [ + "railjack", + "uncommon", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tether", + "icon": "items/images/en/tether.022198c6a9829914063f990be599513d.png", + "thumb": "items/images/en/thumbs/tether.022198c6a9829914063f990be599513d.128x128.png" + } + } + }, + { + "id": "5b802081b6de7905dcd87475", + "slug": "prisma_twin_gremlins", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrineerBulbousSMG/Prisma/PrismaTwinGremlinsWeapon", + "tags": [ + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Prisma Twin Gremlins", + "icon": "items/images/en/prisma_twin_gremlins.66da9249ef4b5546db8676d3c137b757.png", + "thumb": "items/images/en/thumbs/prisma_twin_gremlins.66da9249ef4b5546db8676d3c137b757.128x128.png" + } + } + }, + { + "id": "5be5f5a03ffcc7038857f102", + "slug": "celestial_nightfall", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPGlaiveStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "glaives", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Celestial Nightfall", + "icon": "items/images/en/celestial_nightfall.8abf6e231f891dc142f350d5c8f44749.png", + "thumb": "items/images/en/thumbs/celestial_nightfall.8abf6e231f891dc142f350d5c8f44749.128x128.png" + } + } + }, + { + "id": "5ba4fde94567de006211ae6d", + "slug": "primed_charged_shell", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponElectricityDamageModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Charged Shell", + "icon": "items/images/en/primed_charged_shell.057b97c27209ec391d8d4e0ca1a2a5e9.png", + "thumb": "items/images/en/thumbs/primed_charged_shell.057b97c27209ec391d8d4e0ca1a2a5e9.128x128.png" + } + } + }, + { + "id": "5c196fac96037800ddadac12", + "slug": "akjagara_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkjagaraPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Akjagara Prime Barrel", + "icon": "items/images/en/akjagara_prime_barrel.5ed111e5dcb3df5d57c5411849c113e4.png", + "thumb": "items/images/en/thumbs/akjagara_prime_barrel.5ed111e5dcb3df5d57c5411849c113e4.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5c1bda0114a8e4006b1dad56", + "slug": "charged_bullets", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingEventElectricStatusRifleMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Charged Bullets", + "icon": "items/images/en/charged_bullets.dd3cc7b19745157ec71fab293822b75d.png", + "thumb": "items/images/en/thumbs/charged_bullets.dd3cc7b19745157ec71fab293822b75d.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a08", + "slug": "particle_ram", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipRamAbilityCard", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Particle Ram", + "icon": "items/images/en/particle_ram.58a30c3d3a1ab53f0236db7e0f75330c.png", + "thumb": "items/images/en/thumbs/particle_ram.58a30c3d3a1ab53f0236db7e0f75330c.128x128.png" + } + } + }, + { + "id": "5e02154e14569703bf43e54c", + "slug": "blackout_pulse", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipEMPAbilityCard", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Blackout Pulse", + "icon": "items/images/en/blackout_pulse.c419ed4b310b69260f459d268c6a5a7d.png", + "thumb": "items/images/en/thumbs/blackout_pulse.c419ed4b310b69260f459d268c6a5a7d.128x128.png" + } + } + }, + { + "id": "5c1bda1214a8e4006b1dad79", + "slug": "sabot_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRiflePunchthroughMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sabot Rounds", + "icon": "items/images/en/sabot_rounds.d1f3fed232e4a789ddc604a995f35c08.png", + "thumb": "items/images/en/thumbs/sabot_rounds.d1f3fed232e4a789ddc604a995f35c08.128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283494", + "slug": "rubico_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/RubicoPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Rubico Prime Receiver", + "icon": "items/images/en/rubico_prime_receiver.2071211bc2436d4e768dbb61f98f6efd.png", + "thumb": "items/images/en/thumbs/rubico_prime_receiver.2071211bc2436d4e768dbb61f98f6efd.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "57bc9c99e506eb45ea25145c", + "slug": "galatine_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeGalatineBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Galatine Prime Blade", + "icon": "items/images/en/galatine_prime_blade.066b855eb73def09ca5f21f677010098.png", + "thumb": "items/images/en/thumbs/galatine_prime_blade.066b855eb73def09ca5f21f677010098.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283497", + "slug": "gram_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeGram/PrimeGram", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Gram Prime Set", + "icon": "items/images/en/gram_prime_set.678c245a88b54368ae895b73b6987231.png", + "thumb": "items/images/en/thumbs/gram_prime_set.678c245a88b54368ae895b73b6987231.128x128.png" + } + } + }, + { + "id": "55e797fde7798924a5a5650a", + "slug": "sancti_tigris", + "gameRef": "/Lotus/Weapons/Syndicates/NewLoka/LongGuns/NLTigris", + "tags": [ + "syndicate", + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Sancti Tigris", + "icon": "items/images/en/sancti_tigris.fd7c28cbc2f605d4a7d23ce1319ea87e.png", + "thumb": "items/images/en/thumbs/sancti_tigris.fd7c28cbc2f605d4a7d23ce1319ea87e.128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283498", + "slug": "rubico_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/RubicoPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Rubico Prime Stock", + "icon": "items/images/en/rubico_prime_stock.2071211bc2436d4e768dbb61f98f6efd.png", + "thumb": "items/images/en/thumbs/rubico_prime_stock.2071211bc2436d4e768dbb61f98f6efd.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "57bcb14ce506eb45ea25145e", + "slug": "nekros_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NekrosPrimeBlueprint", + "tags": [ + "blueprint", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Nekros Prime Blueprint", + "icon": "items/images/en/nekros_prime_blueprint.523943a15c82985ebe7cf14eac98966d.png", + "thumb": "items/images/en/thumbs/nekros_prime_blueprint.523943a15c82985ebe7cf14eac98966d.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "561536a1b66f836f854b966a", + "slug": "trinity_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TrinityPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Trinity Prime Systems Blueprint", + "icon": "items/images/en/trinity_prime_systems.4115dba418ab8ee70197a7fdaee8da76.png", + "thumb": "items/images/en/thumbs/trinity_prime_systems.4115dba418ab8ee70197a7fdaee8da76.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "57c05949d0d9ef638234e4aa", + "slug": "pistol_amp", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerPistolDamageAuraMod", + "tags": [ + "mod", + "aura", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pistol Amp", + "icon": "items/images/en/pistol_amp.b6659bfe332db6d87dbf43951229caa8.png", + "thumb": "items/images/en/thumbs/pistol_amp.b6659bfe332db6d87dbf43951229caa8.128x128.png" + } + } + }, + { + "id": "5e7caa01267539063de48c3e", + "slug": "preparation", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarSpawnEnergyMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Preparation", + "icon": "items/images/en/preparation.f41baaf0f6a981eac9583d5b4cda7162.png", + "thumb": "items/images/en/thumbs/preparation.f41baaf0f6a981eac9583d5b4cda7162.128x128.png" + } + } + }, + { + "id": "5e839493267539077b0dd698", + "slug": "titania_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TitaniaPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Titania Prime Chassis Blueprint", + "icon": "items/images/en/titania_prime_chassis.d783da2b4926bc3760d50bba21eff7db.png", + "thumb": "items/images/en/thumbs/titania_prime_chassis.d783da2b4926bc3760d50bba21eff7db.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5e839493267539077b0dd69a", + "slug": "corinth_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CorinthPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Corinth Prime Stock", + "icon": "items/images/en/corinth_prime_stock.1f73bc83dd117b5e0295b90ed0cccc8d.png", + "thumb": "items/images/en/thumbs/corinth_prime_stock.1f73bc83dd117b5e0295b90ed0cccc8d.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "5e839493267539077b0dd69e", + "slug": "corinth_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/CorinthPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Corinth Prime Blueprint", + "icon": "items/images/en/corinth_prime_blueprint.1f73bc83dd117b5e0295b90ed0cccc8d.png", + "thumb": "items/images/en/thumbs/corinth_prime_blueprint.1f73bc83dd117b5e0295b90ed0cccc8d.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5e839494267539077b0dd6b0", + "slug": "titania_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TitaniaPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Titania Prime Systems Blueprint", + "icon": "items/images/en/titania_prime_systems.d783da2b4926bc3760d50bba21eff7db.png", + "thumb": "items/images/en/thumbs/titania_prime_systems.d783da2b4926bc3760d50bba21eff7db.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5f498a269426ed00443bd0d8", + "slug": "necramech_intensify", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAbilityStrengthMod", + "tags": [ + "mod", + "rare", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Intensify", + "icon": "items/images/en/necramech_intensify.399017e72512b8e11c3eafc93875937a.png", + "thumb": "items/images/en/thumbs/necramech_intensify.399017e72512b8e11c3eafc93875937a.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515687", + "slug": "fury", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponFireRateMod", + "tags": [ + "mod", + "melee", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fury", + "icon": "items/images/en/fury.fdef4a03033eabf258a320e8df18fc62.png", + "thumb": "items/images/en/thumbs/fury.fdef4a03033eabf258a320e8df18fc62.128x128.png" + } + } + }, + { + "id": "5d6ea67f7ea27b05d929cc05", + "slug": "citrine_antitoxin", + "gameRef": "/Lotus/Types/Restoratives/Consumable/Toxins/DayUnCommonAntitoxin", + "tags": [ + "consumable" + ], + "i18n": { + "en": { + "name": "Citrine Antitoxin", + "icon": "items/images/en/citrine_antitoxin.effed3d566b5a242f37dc82985cbc83c.png", + "thumb": "items/images/en/thumbs/citrine_antitoxin.effed3d566b5a242f37dc82985cbc83c.128x128.png" + } + } + }, + { + "id": "5d8f65b37ea27b0968b6e57a", + "slug": "pathocyst_subcortex", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfBoomerangDisc", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Pathocyst Subcortex", + "icon": "items/images/en/pathocyst_subcortex.f423b7a6a78d2e4780c1007f0f0fb464.png", + "thumb": "items/images/en/thumbs/pathocyst_subcortex.f423b7a6a78d2e4780c1007f0f0fb464.128x128.png", + "subIcon": "sub_icons/weapon/generic_disc_128x128.png" + } + } + }, + { + "id": "5d9385b17ea27b0a28fd75ba", + "slug": "atlas_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AtlasPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Atlas Prime Systems Blueprint", + "icon": "items/images/en/atlas_prime_systems.91fb26397de19c27bfece550a8315a14.png", + "thumb": "items/images/en/thumbs/atlas_prime_systems.91fb26397de19c27bfece550a8315a14.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5d9385b27ea27b0a28fd75bb", + "slug": "atlas_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AtlasPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Atlas Prime Neuroptics Blueprint", + "icon": "items/images/en/atlas_prime_neuroptics.91fb26397de19c27bfece550a8315a14.png", + "thumb": "items/images/en/thumbs/atlas_prime_neuroptics.91fb26397de19c27bfece550a8315a14.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5d9385b27ea27b0a28fd75bc", + "slug": "atlas_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/AtlasPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Atlas Prime Blueprint", + "icon": "items/images/en/atlas_prime_blueprint.91fb26397de19c27bfece550a8315a14.png", + "thumb": "items/images/en/thumbs/atlas_prime_blueprint.91fb26397de19c27bfece550a8315a14.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5d93ca117ea27b0a87566f6e", + "slug": "dethcube_prime_systems", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeDethcubeSystems", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dethcube Prime Systems", + "icon": "items/images/en/dethcube_prime_systems.47a0e82681bf367a015928558a9f133b.png", + "thumb": "items/images/en/thumbs/dethcube_prime_systems.47a0e82681bf367a015928558a9f133b.128x128.png", + "subIcon": "sub_icons/sentinel/prime_systems_128x128.png" + } + } + }, + { + "id": "5b2985e3eb069f04ea65b0fa", + "slug": "pyrana_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimePyrana/PrimePyranaPistol", + "tags": [ + "weapon", + "prime", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Pyrana Prime Set", + "icon": "items/images/en/pyrana_prime_set.006fc1f35a3662cb6d84ce6a7f63cd9e.png", + "thumb": "items/images/en/thumbs/pyrana_prime_set.006fc1f35a3662cb6d84ce6a7f63cd9e.128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e515690", + "slug": "savage_silence", + "gameRef": "/Lotus/Powersuits/Banshee/SilenceAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "banshee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Savage Silence", + "icon": "items/images/en/savage_silence.ac9dfbbdd2b49fac9fe8a9fadd681463.png", + "thumb": "items/images/en/thumbs/savage_silence.ac9dfbbdd2b49fac9fe8a9fadd681463.128x128.png" + } + } + }, + { + "id": "5ada1ab2b2b6a80bb33793f3", + "slug": "reaping_chakram", + "gameRef": "/Lotus/Powersuits/Nezha/NezhaRingAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nezha" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Reaping Chakram", + "icon": "items/images/en/reaping_chakram.4ecd66014b3fab077c400970f0b3db5e.png", + "thumb": "items/images/en/thumbs/reaping_chakram.4ecd66014b3fab077c400970f0b3db5e.128x128.png" + } + } + }, + { + "id": "5ada1ab3b2b6a80bb33793f4", + "slug": "supra_vandal", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/Machinegun/SupraVandal", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Supra Vandal", + "icon": "items/images/en/supra_vandal.f8186c7314e1599aeb861fce024e701d.png", + "thumb": "items/images/en/thumbs/supra_vandal.f8186c7314e1599aeb861fce024e701d.128x128.png" + } + } + }, + { + "id": "5b2987aaeb069f0536234276", + "slug": "limbo_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LimboPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Limbo Prime Blueprint", + "icon": "items/images/en/limbo_prime_blueprint.7bfbc70bd8438594d45a47fba260b174.png", + "thumb": "items/images/en/thumbs/limbo_prime_blueprint.7bfbc70bd8438594d45a47fba260b174.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5adf8729931bcf00574adc0e", + "slug": "braton_vandal_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BratonVandalBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Braton Vandal Barrel", + "icon": "items/images/en/braton_vandal_barrel.91c532bcac702702bf7d259bd5d4d553.png", + "thumb": "items/images/en/thumbs/braton_vandal_barrel.91c532bcac702702bf7d259bd5d4d553.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156a1", + "slug": "ravage", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponCritDamageMod", + "tags": [ + "shotgun", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ravage", + "icon": "items/images/en/ravage.2d2e570ce05bd26a256cb9ba253f7ce8.png", + "thumb": "items/images/en/thumbs/ravage.2d2e570ce05bd26a256cb9ba253f7ce8.128x128.png" + } + } + }, + { + "id": "5b2985e3eb069f04ea65b0fb", + "slug": "destreza_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/DestrezaPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Destreza Prime Blueprint", + "icon": "items/images/en/destreza_prime_blueprint.b1a1cc461a2cfcf9998f0588c8e932a4.png", + "thumb": "items/images/en/thumbs/destreza_prime_blueprint.b1a1cc461a2cfcf9998f0588c8e932a4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5dbe9b067ea27b0ffe3ca267", + "slug": "master_key", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Cipher/OnHackLockersMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "i18n": { + "en": { + "name": "Master Key", + "icon": "items/images/en/master_key.dedc10144669a1dd3d6f74615d70a349.png", + "thumb": "items/images/en/thumbs/master_key.dedc10144669a1dd3d6f74615d70a349.128x128.png" + } + } + }, + { + "id": "5dbe9b087ea27b0ffe3ca26a", + "slug": "out_of_sight", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionBlindMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "i18n": { + "en": { + "name": "Out Of Sight", + "icon": "items/images/en/out_of_sight.5464b7b84606865045dec7b82112fc58.png", + "thumb": "items/images/en/thumbs/out_of_sight.5464b7b84606865045dec7b82112fc58.128x128.png" + } + } + }, + { + "id": "5dbe9b097ea27b0ffe3ca26c", + "slug": "khra", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalEightMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Khra", + "icon": "items/images/en/khra.2f42b1bf4bfc2a124df7bc1275432795.png", + "thumb": "items/images/en/thumbs/khra.2f42b1bf4bfc2a124df7bc1275432795.128x128.png" + } + } + }, + { + "id": "5dbe9b0b7ea27b0ffe3ca26e", + "slug": "lohk", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalOneMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lohk", + "icon": "items/images/en/lohk.2217e77e1166afee23e7293d85b970db.png", + "thumb": "items/images/en/thumbs/lohk.2217e77e1166afee23e7293d85b970db.128x128.png" + } + } + }, + { + "id": "5dbe9b0b7ea27b0ffe3ca26f", + "slug": "blood_for_ammo", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionAmmoMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "i18n": { + "en": { + "name": "Blood For Ammo", + "icon": "items/images/en/blood_for_ammo.f06e780d82b900677e1d866ff661410f.png", + "thumb": "items/images/en/thumbs/blood_for_ammo.f06e780d82b900677e1d866ff661410f.128x128.png" + } + } + }, + { + "id": "5dbe9b0b7ea27b0ffe3ca270", + "slug": "failsafe", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Cipher/OnFailHackResetMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "i18n": { + "en": { + "name": "Failsafe", + "icon": "items/images/en/failsafe.5c98665cb1898a1d4c2529c7b38cbccb.png", + "thumb": "items/images/en/thumbs/failsafe.5c98665cb1898a1d4c2529c7b38cbccb.128x128.png" + } + } + }, + { + "id": "5dbe9b0c7ea27b0ffe3ca271", + "slug": "blood_for_energy", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionEnergyDropMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "i18n": { + "en": { + "name": "Blood For Energy", + "icon": "items/images/en/blood_for_energy.39c5c4fe581c7a1c4a01a0f6ec3fd564.png", + "thumb": "items/images/en/thumbs/blood_for_energy.39c5c4fe581c7a1c4a01a0f6ec3fd564.128x128.png" + } + } + }, + { + "id": "5dbe9b127ea27b0ffe3ca285", + "slug": "xata", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalTwoMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Xata", + "icon": "items/images/en/xata.a44dcbc89f78e433f4da7ee36943904f.png", + "thumb": "items/images/en/thumbs/xata.a44dcbc89f78e433f4da7ee36943904f.128x128.png" + } + } + }, + { + "id": "5dbe9b157ea27b0ffe3ca28a", + "slug": "split_flights", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/BowMultiShotOnHitMod", + "tags": [ + "mod", + "rare", + "bow", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Split Flights", + "icon": "items/images/en/split_flights.6d6878ae710916731799c8be89d29426.png", + "thumb": "items/images/en/thumbs/split_flights.6d6878ae710916731799c8be89d29426.128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283496", + "slug": "gram_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GramPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Gram Prime Blade", + "icon": "items/images/en/gram_prime_blade.678c245a88b54368ae895b73b6987231.png", + "thumb": "items/images/en/thumbs/gram_prime_blade.678c245a88b54368ae895b73b6987231.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "54a74455e779892d5e5156b5", + "slug": "voltaic_strike", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/ElectEventMeleeMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Voltaic Strike", + "icon": "items/images/en/voltaic_strike.20c6b446182f406f4d6df6f4844db7fb.png", + "thumb": "items/images/en/thumbs/voltaic_strike.20c6b446182f406f4d6df6f4844db7fb.128x128.png" + } + } + }, + { + "id": "5b2987abeb069f053623427a", + "slug": "limbo_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LimboPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Limbo Prime Chassis Blueprint", + "icon": "items/images/en/limbo_prime_chassis.7bfbc70bd8438594d45a47fba260b174.png", + "thumb": "items/images/en/thumbs/limbo_prime_chassis.7bfbc70bd8438594d45a47fba260b174.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "588a789c3cf52c408a2f88dd", + "slug": "ayatan_anasa_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexF", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 2, + "maxCyanStars": 2, + "baseEndo": 2000, + "endoMultiplier": 0.5, + "i18n": { + "en": { + "name": "Ayatan Anasa Sculpture", + "icon": "items/images/en/ayatan_anasa_sculpture.4b0f22f5432ea4a4f196806a7b90ccb0.png", + "thumb": "items/images/en/thumbs/ayatan_anasa_sculpture.4b0f22f5432ea4a4f196806a7b90ccb0.128x128.png" + } + } + }, + { + "id": "5adf872a931bcf00574adc16", + "slug": "lato_vandal_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LatoVandalReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Lato Vandal Receiver", + "icon": "items/images/en/lato_vandal_receiver.d3f82be07b93c35d6e1e9430c796ac9a.png", + "thumb": "items/images/en/thumbs/lato_vandal_receiver.d3f82be07b93c35d6e1e9430c796ac9a.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b1", + "slug": "tek_assault", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Tek/KavatTekAssaultMod", + "tags": [ + "mod", + "kavat", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tek Assault", + "icon": "items/images/en/tek_assault.7ab0fb3bd35101cefe65e1365eb1d224.png", + "thumb": "items/images/en/thumbs/tek_assault.7ab0fb3bd35101cefe65e1365eb1d224.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b5", + "slug": "tek_gravity", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Tek/MeleeTekGravityMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tek Gravity", + "icon": "items/images/en/tek_gravity.9a654d9bd7e1612aa5aaddc128d5c0a6.png", + "thumb": "items/images/en/thumbs/tek_gravity.9a654d9bd7e1612aa5aaddc128d5c0a6.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b8", + "slug": "tek_collateral", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Tek/WarframeTekCollateralMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Tek Collateral", + "icon": "items/images/en/tek_collateral.f16578482edfed66a1bd5dca84cd778b.png", + "thumb": "items/images/en/thumbs/tek_collateral.f16578482edfed66a1bd5dca84cd778b.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76b9", + "slug": "synth_charge", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Synth/PistolSynthChargeMod", + "tags": [ + "mod", + "pistol", + "secondary", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Synth Charge", + "icon": "items/images/en/synth_charge.84e81d207601b7b7088e8015eedceb38.png", + "thumb": "items/images/en/thumbs/synth_charge.84e81d207601b7b7088e8015eedceb38.128x128.png" + } + } + }, + { + "id": "5be4b0a53ffcc703294e76ba", + "slug": "mecha_overdrive", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Mecha/KubrowMechaOverdriveMod", + "tags": [ + "mod", + "rare", + "melee", + "kubrow_claws" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Mecha Overdrive", + "icon": "items/images/en/mecha_overdrive.ed18a080f2e3a8f43503fa440c16179e.png", + "thumb": "items/images/en/thumbs/mecha_overdrive.ed18a080f2e3a8f43503fa440c16179e.128x128.png" + } + } + }, + { + "id": "5be5f59d3ffcc7038857f0f3", + "slug": "star_divide", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPTonfaStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "mod", + "tonfas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Star Divide", + "icon": "items/images/en/star_divide.ddcd391fb37d9135f806013883cee00d.png", + "thumb": "items/images/en/thumbs/star_divide.ddcd391fb37d9135f806013883cee00d.128x128.png" + } + } + }, + { + "id": "56c3bc0c5d2f0202da32e945", + "slug": "spira_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeLiDaggerBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Spira Prime Blade", + "icon": "items/images/en/spira_prime_blade.1a495b1cb31bba268dc7a50f2a4f7134.png", + "thumb": "items/images/en/thumbs/spira_prime_blade.1a495b1cb31bba268dc7a50f2a4f7134.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5703ed25a064f4ab755dc13b", + "slug": "snipetron_vandal_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SnipetronVandalReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Snipetron Vandal Receiver", + "icon": "items/images/en/snipetron_vandal_receiver.d820059db951ba5a4ac7c1d7ec8515f1.png", + "thumb": "items/images/en/thumbs/snipetron_vandal_receiver.d820059db951ba5a4ac7c1d7ec8515f1.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "57839086d9b6753790c89e7e", + "slug": "energy_field", + "gameRef": "/Lotus/Powersuits/Archwing/StandardJetPack/FireShieldAugmentCard", + "tags": [ + "mod", + "rare", + "archwing", + "odonata" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Energy Field", + "icon": "items/images/en/energy_field.62ae23c80ca40b5acbb9a7087a8cb5ba.png", + "thumb": "items/images/en/thumbs/energy_field.62ae23c80ca40b5acbb9a7087a8cb5ba.128x128.png" + } + } + }, + { + "id": "57839095d9b6753790c89e81", + "slug": "zodiac_shred", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingDualStatSlashStatusMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Zodiac Shred", + "icon": "items/images/en/zodiac_shred.40a59b5cf4eed9e5ecd47c86f00170a4.png", + "thumb": "items/images/en/thumbs/zodiac_shred.40a59b5cf4eed9e5ecd47c86f00170a4.128x128.png" + } + } + }, + { + "id": "5740c1909d238d4a03d28519", + "slug": "air_thrusters", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/AirSlideBoost", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Air Thrusters", + "icon": "items/images/en/air_thrusters.43dba0311d632578830cd0537a965aa2.png", + "thumb": "items/images/en/thumbs/air_thrusters.43dba0311d632578830cd0537a965aa2.128x128.png" + } + } + }, + { + "id": "587a15c8c13d58ede882322b", + "slug": "primed_regen", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/PrimedRegen", + "tags": [ + "sentinel", + "mod", + "legendary" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Regen", + "icon": "items/images/en/primed_regen.d43312351a7a10acef1b56641029f044.png", + "thumb": "items/images/en/thumbs/primed_regen.d43312351a7a10acef1b56641029f044.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e51562a", + "slug": "rifle_aptitude", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponStunChanceMod", + "tags": [ + "mod", + "uncommon", + "rifle", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rifle Aptitude", + "icon": "items/images/en/rifle_aptitude.4fb3374071db751af083e54519fb8034.png", + "thumb": "items/images/en/thumbs/rifle_aptitude.4fb3374071db751af083e54519fb8034.128x128.png" + } + } + }, + { + "id": "59dfeb6c115f1d887cfd7ac1", + "slug": "augur_pact", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Augur/SecondaryAugurPactMod", + "tags": [ + "mod", + "common", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Augur Pact", + "icon": "items/images/en/augur_pact.7312d1969671f90bc54b84c87e1adb19.png", + "thumb": "items/images/en/thumbs/augur_pact.7312d1969671f90bc54b84c87e1adb19.128x128.png" + } + } + }, + { + "id": "5740c1999d238d4a03d2851a", + "slug": "fatal_teleport", + "gameRef": "/Lotus/Powersuits/Ninja/TeleportToAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ash" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Teleport Rush", + "icon": "items/images/en/fatal_teleport.88b75d1675894c1efec4b62c74cd0ce9.png", + "thumb": "items/images/en/thumbs/fatal_teleport.88b75d1675894c1efec4b62c74cd0ce9.128x128.png" + } + } + }, + { + "id": "58dbcc9e70b42255d6321e8e", + "slug": "proboscis", + "gameRef": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/KubrowGrabPrecept", + "tags": [ + "mod", + "rare", + "helminth charger", + "helminth_charger" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Proboscis", + "icon": "items/images/en/proboscis.aa653fa8633125a7e94b9ad74878948b.png", + "thumb": "items/images/en/thumbs/proboscis.aa653fa8633125a7e94b9ad74878948b.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515639", + "slug": "furor", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingMeleeFireRateMod", + "tags": [ + "uncommon", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Furor", + "icon": "items/images/en/furor.071ae1a3bff51fa6de6657046b22617e.png", + "thumb": "items/images/en/thumbs/furor.071ae1a3bff51fa6de6657046b22617e.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515672", + "slug": "virulent_scourge", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/PoisonEventMeleeMod", + "tags": [ + "mod", + "melee", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Virulent Scourge", + "icon": "items/images/en/virulent_scourge.8f1ae337bfdc14e2ff7ceade522842a5.png", + "thumb": "items/images/en/thumbs/virulent_scourge.8f1ae337bfdc14e2ff7ceade522842a5.128x128.png" + } + } + }, + { + "id": "54a73e65e779893a797fff4f", + "slug": "lex_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LexPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Lex Prime Receiver", + "icon": "items/images/en/lex_prime_receiver.13776cf63dfd68968067b517184a6ac0.png", + "thumb": "items/images/en/thumbs/lex_prime_receiver.13776cf63dfd68968067b517184a6ac0.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5be701133ffcc703e462c709", + "slug": "slay_board", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBSlayBoardMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Slay Board", + "icon": "items/images/en/slay_board.b25421790c1ba6d436cb13b92fd848ed.png", + "thumb": "items/images/en/thumbs/slay_board.b25421790c1ba6d436cb13b92fd848ed.128x128.png" + } + } + }, + { + "id": "5c182b739603780081b09a54", + "slug": "mesa_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MesaPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Mesa Prime Neuroptics Blueprint", + "icon": "items/images/en/mesa_prime_neuroptics.34d67af54de052f6de1d5ae64ed40197.png", + "thumb": "items/images/en/thumbs/mesa_prime_neuroptics.34d67af54de052f6de1d5ae64ed40197.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5c196fb096037800ddadac19", + "slug": "redeemer_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/RedeemerPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Redeemer Prime Handle", + "icon": "items/images/en/redeemer_prime_handle.92fcede37c1ab66d22a2287dc2334731.png", + "thumb": "items/images/en/thumbs/redeemer_prime_handle.92fcede37c1ab66d22a2287dc2334731.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5c1bd9f814a8e4006b1dad47", + "slug": "critical_focus", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleCritChanceDamageAimingMod", + "tags": [ + "rare", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Critical Focus", + "icon": "items/images/en/critical_focus.c310ec648973a21b72e0385fade0e0c0.png", + "thumb": "items/images/en/thumbs/critical_focus.c310ec648973a21b72e0385fade0e0c0.128x128.png" + } + } + }, + { + "id": "5c1bda2414a8e4006b1dada4", + "slug": "ammo_chain", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingRifleAmmoMaxMod", + "tags": [ + "uncommon", + "primary", + "mod", + "archwing", + "archgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ammo Chain", + "icon": "items/images/en/ammo_chain.40e8b3be7565a2ca11143ba312b65db1.png", + "thumb": "items/images/en/thumbs/ammo_chain.40e8b3be7565a2ca11143ba312b65db1.128x128.png" + } + } + }, + { + "id": "5c1e62d3817a0d0092fb1607", + "slug": "cetus_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileCetusTown", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Cetus Scene", + "icon": "items/images/en/cetus_scene.f3696ad7d670f8228acf03032758f902.png", + "thumb": "items/images/en/thumbs/cetus_scene.f3696ad7d670f8228acf03032758f902.128x128.png" + } + } + }, + { + "id": "5c4050e22cc6ce023b79c0f0", + "slug": "ion_infusion", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingEventElectricStatusMeleeMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ion Infusion", + "icon": "items/images/en/ion_infusion.d55bc560a2b2e1fdf3f6e78c175efebe.png", + "thumb": "items/images/en/thumbs/ion_infusion.d55bc560a2b2e1fdf3f6e78c175efebe.128x128.png" + } + } + }, + { + "id": "5c7849e22cc6ce090383e25d", + "slug": "wolf_sledge_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ThrowingHammerHandle", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Wolf Sledge Handle", + "icon": "items/images/en/wolf_sledge_handle.6b288aa755e84f886faa90486ed17d37.png", + "thumb": "items/images/en/thumbs/wolf_sledge_handle.6b288aa755e84f886faa90486ed17d37.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "5ca28670fc2db2035eae059e", + "slug": "equinox_prime_set", + "gameRef": "/Lotus/Powersuits/YinYang/EquinoxPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Equinox Prime Set", + "icon": "items/images/en/equinox_prime_set.1163c3dad7a8ffce02af7d475fc0ccd4.png", + "thumb": "items/images/en/thumbs/equinox_prime_set.1163c3dad7a8ffce02af7d475fc0ccd4.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0e2", + "slug": "necramech_seismic_wave", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechSlamDamageMod", + "tags": [ + "mod", + "rare", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Seismic Wave", + "icon": "items/images/en/necramech_seismic_wave.56b01e6153814565adfdef3bd16f6edf.png", + "thumb": "items/images/en/thumbs/necramech_seismic_wave.56b01e6153814565adfdef3bd16f6edf.128x128.png" + } + } + }, + { + "id": "5f4ed3f2d5c36d0086f55afe", + "slug": "necramech_stretch", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAbilityRangeMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Stretch", + "icon": "items/images/en/necramech_stretch.b9ce692c97d911a5124428cf359bbcd6.png", + "thumb": "items/images/en/thumbs/necramech_stretch.b9ce692c97d911a5124428cf359bbcd6.128x128.png" + } + } + }, + { + "id": "5f4ed3fad5c36d0086f55b0b", + "slug": "granum_void_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTilePurgatory", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Granum Void Scene", + "icon": "items/images/en/granum_void_scene.e10f36ccfba150f97787698108031cb0.png", + "thumb": "items/images/en/thumbs/granum_void_scene.e10f36ccfba150f97787698108031cb0.128x128.png" + } + } + }, + { + "id": "5f4ed3fbd5c36d0086f55b0e", + "slug": "bhisaj_bal", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/ParisHealOnStatusMod", + "tags": [ + "mod", + "rare", + "primary", + "paris_prime" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bhisaj-Bal", + "icon": "items/images/en/bhisaj_bal.e31c73f58b576c39f4a67c78481042f3.png", + "thumb": "items/images/en/thumbs/bhisaj_bal.e31c73f58b576c39f4a67c78481042f3.128x128.png" + } + } + }, + { + "id": "5f52c692d5c36d0123a824a2", + "slug": "necramech_deflection", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAvatarShieldRechargeRateMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Deflection", + "icon": "items/images/en/necramech_deflection.f7b474ba65394d85bf98f60672d96e06.png", + "thumb": "items/images/en/thumbs/necramech_deflection.f7b474ba65394d85bf98f60672d96e06.128x128.png" + } + } + }, + { + "id": "5f533a19d5c36d0157f4b9ff", + "slug": "botanist", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/PlantScannerPrecept", + "tags": [ + "mod", + "oxylus", + "rare", + "sentinel" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Botanist", + "icon": "items/images/en/botanist.b85b4581c7f62b7b89950383753866d4.png", + "thumb": "items/images/en/thumbs/botanist.b85b4581c7f62b7b89950383753866d4.128x128.png" + } + } + }, + { + "id": "5f808268824fa302f3685c1f", + "slug": "combo_fury", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveOnKillBuffSecondary", + "tags": [ + "mod", + "rare", + "melee", + "thrown_melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Combo Fury", + "icon": "items/images/en/combo_fury.f2cf6bf112c9d43e181f1c321649a8fd.png", + "thumb": "items/images/en/thumbs/combo_fury.f2cf6bf112c9d43e181f1c321649a8fd.128x128.png" + } + } + }, + { + "id": "5f986cf89dbdce024971b0b6", + "slug": "guandao_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/PrimeGuandao/PrimeGuandaoWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Guandao Prime Set", + "icon": "items/images/en/guandao_prime_set.cded3d77be7d60eef1d3eb82f189e70f.png", + "thumb": "items/images/en/thumbs/guandao_prime_set.cded3d77be7d60eef1d3eb82f189e70f.128x128.png" + } + } + }, + { + "id": "5f986cf99dbdce024971b0ba", + "slug": "zakti_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeZakti/PrimeZaktiPistol", + "tags": [ + "weapon", + "prime", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Zakti Prime Set", + "icon": "items/images/en/zakti_prime_set.42dbab2b3b28d1291c7e803ad83e29fa.png", + "thumb": "items/images/en/thumbs/zakti_prime_set.42dbab2b3b28d1291c7e803ad83e29fa.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d53e", + "slug": "residual_boils", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/BurningCystOnKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Residual Boils", + "icon": "items/images/en/residual_boils.93e9e7547e47068d710a638a90529a79.png", + "thumb": "items/images/en/thumbs/residual_boils.93e9e7547e47068d710a638a90529a79.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d548", + "slug": "sporothrix_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfSniperRifleReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sporothrix Receiver", + "icon": "items/images/en/sporothrix_receiver.d9a3fe663f9fee156958a698e597a6bb.png", + "thumb": "items/images/en/thumbs/sporothrix_receiver.d9a3fe663f9fee156958a698e597a6bb.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d54c", + "slug": "necramech_flow", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechPowerMaxMod", + "tags": [ + "mod", + "rare", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Flow", + "icon": "items/images/en/necramech_flow.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/necramech_flow.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d54d", + "slug": "volatile_parasite", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedPredatorMaggotSummonerPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "predasite" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Volatile Parasite", + "icon": "items/images/en/volatile_parasite.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/volatile_parasite.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d54e", + "slug": "residual_viremia", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/ToxicBloodOnKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Residual Viremia", + "icon": "items/images/en/residual_viremia.e6aabdd66ee9c050d79913a2b0eee1d2.png", + "thumb": "items/images/en/thumbs/residual_viremia.e6aabdd66ee9c050d79913a2b0eee1d2.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d54f", + "slug": "residual_malodor", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/IceMistOnKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Residual Malodor", + "icon": "items/images/en/residual_malodor.86abb352aa3a2557d982719f96f5b3f6.png", + "thumb": "items/images/en/thumbs/residual_malodor.86abb352aa3a2557d982719f96f5b3f6.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d550", + "slug": "mach_crash", + "gameRef": "/Lotus/Powersuits/Runner/RunnerRushAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "gauss" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mach Crash", + "icon": "items/images/en/mach_crash.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/mach_crash.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d551", + "slug": "volatile_rebound", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveExplodingReflectionIncreaseMod", + "tags": [ + "mod", + "rare", + "melee", + "thrown_melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Volatile Rebound", + "icon": "items/images/en/volatile_rebound.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/volatile_rebound.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d552", + "slug": "sporothrix_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfSniperRifleBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sporothrix Barrel", + "icon": "items/images/en/sporothrix_barrel.d9a3fe663f9fee156958a698e597a6bb.png", + "thumb": "items/images/en/thumbs/sporothrix_barrel.d9a3fe663f9fee156958a698e597a6bb.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5fb84769c34da3004797d553", + "slug": "ayatan_kitha_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexEntrati", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 4, + "baseEndo": 450, + "endoMultiplier": 3, + "i18n": { + "en": { + "name": "Ayatan Kitha Sculpture", + "icon": "items/images/en/ayatan_kitha_sculpture.8ad5567866f41a56d876ad37ab27fbe9.png", + "thumb": "items/images/en/thumbs/ayatan_kitha_sculpture.8ad5567866f41a56d876ad37ab27fbe9.128x128.png" + } + } + }, + { + "id": "5fb84769c34da3004797d554", + "slug": "theorem_contagion", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/OrbsOnResidualContact", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Theorem Contagion", + "icon": "items/images/en/theorem_contagion.6c5d76f8b64896bd889ae8154e04d50f.png", + "thumb": "items/images/en/thumbs/theorem_contagion.6c5d76f8b64896bd889ae8154e04d50f.128x128.png" + } + } + }, + { + "id": "5fde10c26db57b0185b39072", + "slug": "morgha_receiver", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanotechGrenadeLauncherReceiverItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Morgha Receiver", + "icon": "items/images/en/morgha_receiver.a08482f3e246479e09f00f1ee8ffccb6.png", + "thumb": "items/images/en/thumbs/morgha_receiver.a08482f3e246479e09f00f1ee8ffccb6.128x128.png" + } + } + }, + { + "id": "5fde10c36db57b0185b39075", + "slug": "cortege_receiver", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanotechArchGunReceiverItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Cortege Receiver", + "icon": "items/images/en/cortege_receiver.a08482f3e246479e09f00f1ee8ffccb6.png", + "thumb": "items/images/en/thumbs/cortege_receiver.a08482f3e246479e09f00f1ee8ffccb6.128x128.png" + } + } + }, + { + "id": "5fde10c46db57b0185b3907d", + "slug": "voidrig_engine", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/NecromechPartEngineItem", + "tags": [ + "component", + "necramech" + ], + "i18n": { + "en": { + "name": "Voidrig Engine", + "icon": "items/images/en/voidrig_engine.8644e648e796b8b8db590ee5de986cca.png", + "thumb": "items/images/en/thumbs/voidrig_engine.8644e648e796b8b8db590ee5de986cca.128x128.png" + } + } + }, + { + "id": "5fde10c56db57b0185b39080", + "slug": "necramech_augur", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechEnergyToOvershieldsMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Augur", + "icon": "items/images/en/necramech_augur.c2b0e7cb1ddefbca9535eeacc5e1f768.png", + "thumb": "items/images/en/thumbs/necramech_augur.c2b0e7cb1ddefbca9535eeacc5e1f768.128x128.png" + } + } + }, + { + "id": "5fde10c66db57b0185b39083", + "slug": "bonewidow_engine", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanomechPartEngineItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Bonewidow Engine", + "icon": "items/images/en/bonewidow_engine.8644e648e796b8b8db590ee5de986cca.png", + "thumb": "items/images/en/thumbs/bonewidow_engine.8644e648e796b8b8db590ee5de986cca.128x128.png" + } + } + }, + { + "id": "5fe0ea836db57b0225115015", + "slug": "cedo_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnAlchemistShotgunStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Cedo Stock", + "icon": "items/images/en/cedo_stock.beb0319f93c38fe11119204a3ed47614.png", + "thumb": "items/images/en/thumbs/cedo_stock.beb0319f93c38fe11119204a3ed47614.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "5bc1ab93b919f200c18c10ef", + "slug": "adaptation", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarResistanceOnDamageMod", + "tags": [ + "mod", + "warframe", + "rare" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Adaptation", + "icon": "items/images/en/adaptation.9dba90bb600779763d3c5e81f83b6dc9.png", + "thumb": "items/images/en/thumbs/adaptation.9dba90bb600779763d3c5e81f83b6dc9.128x128.png" + } + } + }, + { + "id": "5bc1ab93b919f200c18c10f0", + "slug": "sharpshooter", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/EnergyOnHeadshotRifle", + "tags": [ + "mod", + "rare", + "primary", + "sniper" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Sharpshooter", + "icon": "items/images/en/sharpshooter.82008706e945ec2bf7c88a0587ae404d.png", + "thumb": "items/images/en/thumbs/sharpshooter.82008706e945ec2bf7c88a0587ae404d.128x128.png" + } + } + }, + { + "id": "5bc1ab93b919f200c18c10f1", + "slug": "power_donation", + "gameRef": "/Lotus/Upgrades/Mods/Aura/AvatarAuraPowerMaxMod", + "tags": [ + "mod", + "rare", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Power Donation", + "icon": "items/images/en/power_donation.22caa7911fc0c4ffd7cc69ca9327ce72.png", + "thumb": "items/images/en/thumbs/power_donation.22caa7911fc0c4ffd7cc69ca9327ce72.128x128.png" + } + } + }, + { + "id": "5bc1ab94b919f200c18c10f2", + "slug": "cautious_shot", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponResistSelfDamageMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Cautious Shot", + "icon": "items/images/en/cautious_shot.5bdfa8a36260ba57f16bc865b2be61b6.png", + "thumb": "items/images/en/thumbs/cautious_shot.5bdfa8a36260ba57f16bc865b2be61b6.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178a7", + "slug": "counter_pulse", + "gameRef": "/Lotus/Powersuits/Mag/ShieldRegenAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "mag" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Counter Pulse", + "icon": "items/images/en/counter_pulse.7f88af7ba65853e9e371265203a77526.png", + "thumb": "items/images/en/thumbs/counter_pulse.7f88af7ba65853e9e371265203a77526.128x128.png" + } + } + }, + { + "id": "5df955131456970150510f27", + "slug": "baza_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/BazaPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Baza Prime Barrel", + "icon": "items/images/en/baza_prime_barrel.a5f9c94cee410a5af7726ee6b2fca2b5.png", + "thumb": "items/images/en/thumbs/baza_prime_barrel.a5f9c94cee410a5af7726ee6b2fca2b5.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5df955141456970150510f2a", + "slug": "aksomati_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AksomatiPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Aksomati Prime Barrel", + "icon": "items/images/en/aksomati_prime_barrel.617fca3e38e6696ec87a6c28bd6bbebf.png", + "thumb": "items/images/en/thumbs/aksomati_prime_barrel.617fca3e38e6696ec87a6c28bd6bbebf.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5dfea13b1456970294aff358", + "slug": "grendel_systems_locator", + "gameRef": "", + "tags": [ + "mod", + "locator" + ], + "i18n": { + "en": { + "name": "Grendel Systems Locator", + "icon": "items/images/en/grendel_systems_locator.158a0b63e183838d0d90fd2210f8f1dc.webp", + "thumb": "items/images/en/thumbs/grendel_systems_locator.158a0b63e183838d0d90fd2210f8f1dc.128x128.webp" + } + } + }, + { + "id": "5dfea13b1456970294aff35a", + "slug": "spectra_vandal_chassis", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SpectraVandalChassis", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Spectra Vandal Chassis", + "icon": "items/images/en/spectra_vandal_chassis.fe39f6aee4576d50c445d4203ee91db2.png", + "thumb": "items/images/en/thumbs/spectra_vandal_chassis.fe39f6aee4576d50c445d4203ee91db2.128x128.png", + "subIcon": "sub_icons/weapon/generic_chassis_128x128.png" + } + } + }, + { + "id": "5dfea13c1456970294aff35d", + "slug": "spectra_vandal_set", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CorpusModularPistol/Vandal/CrpLaserPistolVandal", + "tags": [ + "weapon", + "modular", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Spectra Vandal Set", + "icon": "items/images/en/spectra_vandal_set.fe39f6aee4576d50c445d4203ee91db2.png", + "thumb": "items/images/en/thumbs/spectra_vandal_set.fe39f6aee4576d50c445d4203ee91db2.128x128.png" + } + } + }, + { + "id": "5dfea13f1456970294aff370", + "slug": "primed_smite_grineer", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponMeleeFactionDamageGrineerExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Smite Grineer", + "icon": "items/images/en/primed_smite_grineer.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/primed_smite_grineer.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5dfea1411456970294aff377", + "slug": "sentient_concourse_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileSentientIntDescent", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Sentient Concourse Scene", + "icon": "items/images/en/sentient_concourse_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/sentient_concourse_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5dfea1491456970294aff3a6", + "slug": "grendel_chassis_locator", + "gameRef": "", + "tags": [ + "mod", + "locator" + ], + "i18n": { + "en": { + "name": "Grendel Chassis Locator", + "icon": "items/images/en/grendel_chassis_locator.7e6b6bd982829ad4f58091584af7f9ea.webp", + "thumb": "items/images/en/thumbs/grendel_chassis_locator.7e6b6bd982829ad4f58091584af7f9ea.128x128.webp" + } + } + }, + { + "id": "5dff6e1014569703166749d9", + "slug": "fire_suppression", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/FireExtinguish", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fire Suppression", + "icon": "items/images/en/fire_suppression.5ef836f9d18a067403875aa44b7f6394.png", + "thumb": "items/images/en/thumbs/fire_suppression.5ef836f9d18a067403875aa44b7f6394.128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749ee", + "slug": "ion_burn", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Piloting/ZektiBoostSpeed", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ion Burn", + "icon": "items/images/en/ion_burn.89135105caf28d092f7990aedfdf8e81.png", + "thumb": "items/images/en/thumbs/ion_burn.89135105caf28d092f7990aedfdf8e81.128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749f9", + "slug": "battle_forge", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/CrewShipBattleCraftingAbilityCard", + "tags": [ + "mod", + "railjack", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Battle Forge", + "icon": "items/images/en/battle_forge.b67aa889d03e039f6aae03c2010726d6.png", + "thumb": "items/images/en/thumbs/battle_forge.b67aa889d03e039f6aae03c2010726d6.128x128.png" + } + } + }, + { + "id": "5b91784d0566c80216658ce7", + "slug": "mending_splinters", + "gameRef": "/Lotus/Powersuits/Glass/GlassShatterAugmentCard", + "tags": [ + "mod", + "gara", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mending Splinters", + "icon": "items/images/en/mending_splinters.d342d63b040feb053c5c1a2dc66ea373.png", + "thumb": "items/images/en/thumbs/mending_splinters.d342d63b040feb053c5c1a2dc66ea373.128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68cd", + "slug": "despoil", + "gameRef": "/Lotus/Powersuits/Necro/SearchTheDeadAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nekros" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Despoil", + "icon": "items/images/en/despoil.2633a2c7793d85b21d22cb4c4a0b70cf.png", + "thumb": "items/images/en/thumbs/despoil.2633a2c7793d85b21d22cb4c4a0b70cf.128x128.png" + } + } + }, + { + "id": "5b91784d0566c80216658ce9", + "slug": "enveloping_cloud", + "gameRef": "/Lotus/Powersuits/MonkeyKing/MonkeyCloudAugmentCard", + "tags": [ + "wukong", + "mod", + "warframe", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Enveloping Cloud", + "icon": "items/images/en/enveloping_cloud.bd980ad56e9579b5c5f5504079f7d273.png", + "thumb": "items/images/en/thumbs/enveloping_cloud.bd980ad56e9579b5c5f5504079f7d273.128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68d1", + "slug": "jet_stream", + "gameRef": "/Lotus/Powersuits/Tengu/TurbulenceAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "zephyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Jet Stream", + "icon": "items/images/en/jet_stream.1c4a9461dc1fddf7d9123314cb0d2d9c.png", + "thumb": "items/images/en/thumbs/jet_stream.1c4a9461dc1fddf7d9123314cb0d2d9c.128x128.png" + } + } + }, + { + "id": "578d33bf34003bbbb9e20921", + "slug": "corvas_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ArchCannonBarrel", + "tags": [ + "component", + "weapon", + "archwing" + ], + "i18n": { + "en": { + "name": "Corvas Barrel", + "icon": "items/images/en/corvas_barrel.0248b2ad006d7ad6a460cc03eac4baa7.png", + "thumb": "items/images/en/thumbs/corvas_barrel.0248b2ad006d7ad6a460cc03eac4baa7.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5be5f59f3ffcc7038857f100", + "slug": "no_current_leap", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Warframe/MoreBulletJumpLessEnergy", + "tags": [ + "mod", + "uncommon", + "pvp", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "No Current Leap", + "icon": "items/images/en/no_current_leap.976d54d945fc0eede87574d91695ea92.png", + "thumb": "items/images/en/thumbs/no_current_leap.976d54d945fc0eede87574d91695ea92.128x128.png" + } + } + }, + { + "id": "55c153e7e779895d9dec229d", + "slug": "patagium", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/SuperGlideParkourTwoMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Patagium", + "icon": "items/images/en/patagium.61f5090481883dcd5c935250f103f9e2.png", + "thumb": "items/images/en/thumbs/patagium.61f5090481883dcd5c935250f103f9e2.128x128.png" + } + } + }, + { + "id": "55e76cf1e779890d4a67ee18", + "slug": "prisma_skana", + "gameRef": "/Lotus/Weapons/VoidTrader/PrismaSkana", + "tags": [ + "weapon", + "melee" + ], + "i18n": { + "en": { + "name": "Prisma Skana", + "icon": "items/images/en/prisma_skana.84da73ea0e4ee4e1d75c9e2f4763d8bf.png", + "thumb": "items/images/en/thumbs/prisma_skana.84da73ea0e4ee4e1d75c9e2f4763d8bf.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd8994", + "slug": "bronco_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/BroncoPrime", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Bronco Prime Set", + "icon": "items/images/en/bronco_prime_set.aa5499a3b26806f1f26a987be9dcf0ca.png", + "thumb": "items/images/en/thumbs/bronco_prime_set.aa5499a3b26806f1f26a987be9dcf0ca.128x128.png" + } + } + }, + { + "id": "57889e1f4fff472f131a12ea", + "slug": "astral_slash", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingDualStatSlashStatusMeleeMod", + "tags": [ + "rare", + "melee", + "mod", + "archwing", + "archmelee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Astral Slash", + "icon": "items/images/en/astral_slash.45fd1a984ff3ce528459bd72ec607e5b.png", + "thumb": "items/images/en/thumbs/astral_slash.45fd1a984ff3ce528459bd72ec607e5b.128x128.png" + } + } + }, + { + "id": "5ab1570db2b6a8044d5137c4", + "slug": "zephyr_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ZephyrPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Zephyr Prime Systems Blueprint", + "icon": "items/images/en/zephyr_prime_systems.4ffc19dd100b3c182beef5f1ef3d337e.png", + "thumb": "items/images/en/thumbs/zephyr_prime_systems.4ffc19dd100b3c182beef5f1ef3d337e.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "56b656e0ef0390c7e4006383", + "slug": "duality", + "gameRef": "/Lotus/Powersuits/YinYang/YinYangSwitchAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "equinox" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Duality", + "icon": "items/images/en/duality.c5a99dd847f4468edbeb94731ec38d99.png", + "thumb": "items/images/en/thumbs/duality.c5a99dd847f4468edbeb94731ec38d99.128x128.png" + } + } + }, + { + "id": "56dac5765cc639de0a45c51d", + "slug": "push_and_pull", + "gameRef": "/Lotus/Powersuits/YinYang/YinYangSwitchPvPAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "equinox" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Push & Pull", + "icon": "items/images/en/push_and_pull.390046aef411e9647af281f85d990c2f.png", + "thumb": "items/images/en/thumbs/push_and_pull.390046aef411e9647af281f85d990c2f.128x128.png" + } + } + }, + { + "id": "54a74454e779892d5e515681", + "slug": "efficient_transferral", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Suit/ArchwingSuitAbilityDurationMod", + "tags": [ + "mod", + "archwing", + "rare" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Efficient Transferral", + "icon": "items/images/en/efficient_transferral.e195ab0ac5476bfb2666870ce833a462.png", + "thumb": "items/images/en/thumbs/efficient_transferral.e195ab0ac5476bfb2666870ce833a462.128x128.png" + } + } + }, + { + "id": "5d322d1274bdad027da4d0a3", + "slug": "gas_city_upper_logistics_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityConCornerA", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Upper Logistics Scene", + "icon": "items/images/en/gas_city_upper_logistics_scene.a06a32583e30d9861eaeaf249696db16.png", + "thumb": "items/images/en/thumbs/gas_city_upper_logistics_scene.a06a32583e30d9861eaeaf249696db16.128x128.png" + } + } + }, + { + "id": "5d6ea6737ea27b05d929cbf7", + "slug": "lua_zenurik_lens", + "gameRef": "/Lotus/Upgrades/Focus/PowerLensLua", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Lua Zenurik Lens", + "icon": "items/images/en/lua_zenurik_lens.e3b2ed7d024b138843320d13d204e020.png", + "thumb": "items/images/en/thumbs/lua_zenurik_lens.e3b2ed7d024b138843320d13d204e020.128x128.png" + } + } + }, + { + "id": "5d6ea6757ea27b05d929cbf8", + "slug": "lapis_antitoxin", + "gameRef": "/Lotus/Types/Restoratives/Consumable/Toxins/RareAntitoxin", + "tags": [ + "consumable" + ], + "i18n": { + "en": { + "name": "Lapis Antitoxin", + "icon": "items/images/en/lapis_antitoxin.fd5028ba889b4dcec74fda9c924ed8f3.png", + "thumb": "items/images/en/thumbs/lapis_antitoxin.fd5028ba889b4dcec74fda9c924ed8f3.128x128.png" + } + } + }, + { + "id": "5d6ea6757ea27b05d929cbf9", + "slug": "vermillion_antitoxin", + "gameRef": "/Lotus/Types/Restoratives/Consumable/Toxins/SoloRareAntitoxin", + "tags": [ + "consumable" + ], + "i18n": { + "en": { + "name": "Vermillion Antitoxin", + "icon": "items/images/en/vermillion_antitoxin.6ec1479a51b6f761b5e6e6673db4a578.png", + "thumb": "items/images/en/thumbs/vermillion_antitoxin.6ec1479a51b6f761b5e6e6673db4a578.128x128.png" + } + } + }, + { + "id": "5d6ea6767ea27b05d929cbfa", + "slug": "exposing_harpoon", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Arbitration/GrnHarpoonGunArbitrationMod", + "tags": [ + "mod", + "harpak", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Exposing Harpoon", + "icon": "items/images/en/exposing_harpoon.d67847859c5d5e1ef2619fa513b5051d.png", + "thumb": "items/images/en/thumbs/exposing_harpoon.d67847859c5d5e1ef2619fa513b5051d.128x128.png" + } + } + }, + { + "id": "5d6ea6777ea27b05d929cbfb", + "slug": "efficient_beams", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Event/Arbitration/CrpSplitLaserArbitrationMod", + "tags": [ + "convectrix", + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Efficient Beams", + "icon": "items/images/en/efficient_beams.e15144b22799ed8045a25ff71dd9a9a3.png", + "thumb": "items/images/en/thumbs/efficient_beams.e15144b22799ed8045a25ff71dd9a9a3.128x128.png" + } + } + }, + { + "id": "5d6ea6777ea27b05d929cbfc", + "slug": "companion_weapon_riven_mod_(veiled)", + "gameRef": "", + "tags": [ + "mod", + "riven" + ], + "subtypes": [ + "unrevealed", + "revealed" + ], + "i18n": { + "en": { + "name": "Companion Weapon Riven Mod (Veiled)", + "icon": "items/images/en/companion_weapon_riven_mod_(veiled).43633261c8ac6836608f58b37f8c9eaa.webp", + "thumb": "items/images/en/thumbs/companion_weapon_riven_mod_(veiled).43633261c8ac6836608f58b37f8c9eaa.128x128.webp" + } + } + }, + { + "id": "5d6ea67a7ea27b05d929cbfd", + "slug": "beryl_antitoxin", + "gameRef": "/Lotus/Types/Restoratives/Consumable/Toxins/DayCommonAntitoxin", + "tags": [ + "consumable" + ], + "i18n": { + "en": { + "name": "Beryl Antitoxin", + "icon": "items/images/en/beryl_antitoxin.d47e1fee3d4febb10914272694be914b.png", + "thumb": "items/images/en/thumbs/beryl_antitoxin.d47e1fee3d4febb10914272694be914b.128x128.png" + } + } + }, + { + "id": "5d6ea67b7ea27b05d929cbfe", + "slug": "meticulous_aim", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Arbitration/GrnSniperRifleArbitrationMod", + "tags": [ + "mod", + "rare", + "vulkar", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Meticulous Aim", + "icon": "items/images/en/meticulous_aim.8adaccc52560178d4630d760b2530f42.png", + "thumb": "items/images/en/thumbs/meticulous_aim.8adaccc52560178d4630d760b2530f42.128x128.png" + } + } + }, + { + "id": "5d6ea67d7ea27b05d929cbff", + "slug": "lua_lens_blueprint", + "gameRef": "/Lotus/Types/Recipes/Lens/GenericLensLuaBlueprint", + "tags": [ + "misc", + "blueprint" + ], + "i18n": { + "en": { + "name": "Lua Lens Blueprint", + "icon": "items/images/en/lua_lens_blueprint.e3b2ed7d024b138843320d13d204e020.png", + "thumb": "items/images/en/thumbs/lua_lens_blueprint.e3b2ed7d024b138843320d13d204e020.128x128.png" + } + } + }, + { + "id": "5d6ea67d7ea27b05d929cc00", + "slug": "lua_madurai_lens", + "gameRef": "/Lotus/Upgrades/Focus/AttackLensLua", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Lua Madurai Lens", + "icon": "items/images/en/lua_madurai_lens.e3b2ed7d024b138843320d13d204e020.png", + "thumb": "items/images/en/thumbs/lua_madurai_lens.e3b2ed7d024b138843320d13d204e020.128x128.png" + } + } + }, + { + "id": "5d6ea67d7ea27b05d929cc01", + "slug": "topaz_antitoxin", + "gameRef": "/Lotus/Types/Restoratives/Consumable/Toxins/NightUnCommonAntitoxin", + "tags": [ + "consumable" + ], + "i18n": { + "en": { + "name": "Topaz Antitoxin", + "icon": "items/images/en/topaz_antitoxin.059998459db9749a8b0e25e51b86e4d1.png", + "thumb": "items/images/en/thumbs/topaz_antitoxin.059998459db9749a8b0e25e51b86e4d1.128x128.png" + } + } + }, + { + "id": "5d6ea67d7ea27b05d929cc02", + "slug": "amethyst_antitoxin", + "gameRef": "/Lotus/Types/Restoratives/Consumable/Toxins/NightCommonAntitoxin", + "tags": [ + "consumable" + ], + "i18n": { + "en": { + "name": "Amethyst Antitoxin", + "icon": "items/images/en/amethyst_antitoxin.98127374f471b7184779047fefa9d105.png", + "thumb": "items/images/en/thumbs/amethyst_antitoxin.98127374f471b7184779047fefa9d105.128x128.png" + } + } + }, + { + "id": "5d6ea67e7ea27b05d929cc03", + "slug": "lua_vazarin_lens", + "gameRef": "/Lotus/Upgrades/Focus/DefenseLensLua", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Lua Vazarin Lens", + "icon": "items/images/en/lua_vazarin_lens.e3b2ed7d024b138843320d13d204e020.png", + "thumb": "items/images/en/thumbs/lua_vazarin_lens.e3b2ed7d024b138843320d13d204e020.128x128.png" + } + } + }, + { + "id": "5d6ea6817ea27b05d929cc06", + "slug": "lua_naramon_lens", + "gameRef": "/Lotus/Upgrades/Focus/TacticLensLua", + "tags": [ + "focus", + "lens" + ], + "i18n": { + "en": { + "name": "Lua Naramon Lens", + "icon": "items/images/en/lua_naramon_lens.e3b2ed7d024b138843320d13d204e020.png", + "thumb": "items/images/en/thumbs/lua_naramon_lens.e3b2ed7d024b138843320d13d204e020.128x128.png" + } + } + }, + { + "id": "5d8765df7ea27b08950c13ca", + "slug": "arcane_tanker", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/ArmorOnHeavyGunEquipped", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Tanker", + "icon": "items/images/en/arcane_tanker.bedeb0f2ceb9e91f99f682b990c09648.png", + "thumb": "items/images/en/thumbs/arcane_tanker.bedeb0f2ceb9e91f99f682b990c09648.128x128.png" + } + } + }, + { + "id": "5d8765df7ea27b08950c13cc", + "slug": "arcane_pistoleer", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/AmmoEfficiencyOnPistolHeadshot", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Pistoleer", + "icon": "items/images/en/arcane_pistoleer.bedeb0f2ceb9e91f99f682b990c09648.png", + "thumb": "items/images/en/thumbs/arcane_pistoleer.bedeb0f2ceb9e91f99f682b990c09648.128x128.png" + } + } + }, + { + "id": "5d8f65b17ea27b0968b6e577", + "slug": "pathocyst_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/InfBoomerangBlueprint", + "tags": [ + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Pathocyst Blueprint", + "icon": "items/images/en/pathocyst_blueprint.f423b7a6a78d2e4780c1007f0f0fb464.png", + "thumb": "items/images/en/thumbs/pathocyst_blueprint.f423b7a6a78d2e4780c1007f0f0fb464.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5d8f65b17ea27b0968b6e578", + "slug": "pathocyst_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfBoomerangBlade", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Pathocyst Blade", + "icon": "items/images/en/pathocyst_blade.f423b7a6a78d2e4780c1007f0f0fb464.png", + "thumb": "items/images/en/thumbs/pathocyst_blade.f423b7a6a78d2e4780c1007f0f0fb464.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "5d8f65b27ea27b0968b6e579", + "slug": "pathocyst_set", + "gameRef": "/Lotus/Weapons/Infested/Melee/InfBoomerang/InfBoomerangWeapon", + "tags": [ + "weapon", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Pathocyst Set", + "icon": "items/images/en/pathocyst_set.f423b7a6a78d2e4780c1007f0f0fb464.png", + "thumb": "items/images/en/thumbs/pathocyst_set.f423b7a6a78d2e4780c1007f0f0fb464.128x128.png" + } + } + }, + { + "id": "5ada1ab4b2b6a80bb33793f5", + "slug": "concentrated_arrow", + "gameRef": "/Lotus/Powersuits/Ranger/RangerBowAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ivara" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Concentrated Arrow", + "icon": "items/images/en/concentrated_arrow.85c0266f9521db62d11d6f5c95aeebc2.png", + "thumb": "items/images/en/thumbs/concentrated_arrow.85c0266f9521db62d11d6f5c95aeebc2.128x128.png" + } + } + }, + { + "id": "56783f24cbfa8f0432dd898f", + "slug": "ash_prime_set", + "gameRef": "/Lotus/Powersuits/Ninja/AshPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Ash Prime Set", + "icon": "items/images/en/ash_prime_set.9f3f82bee82a9741531857cf76eb6594.png", + "thumb": "items/images/en/thumbs/ash_prime_set.9f3f82bee82a9741531857cf76eb6594.128x128.png" + } + } + }, + { + "id": "5b2987abeb069f0536234277", + "slug": "limbo_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LimboPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Limbo Prime Neuroptics Blueprint", + "icon": "items/images/en/limbo_prime_neuroptics.7bfbc70bd8438594d45a47fba260b174.png", + "thumb": "items/images/en/thumbs/limbo_prime_neuroptics.7bfbc70bd8438594d45a47fba260b174.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5ada1ab4b2b6a80bb33793f6", + "slug": "energy_transfer", + "gameRef": "/Lotus/Powersuits/YinYang/YinYangBurstAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "equinox" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Energy Transfer", + "icon": "items/images/en/energy_transfer.af31c7a3333fd9b17ac2f266fe39216b.png", + "thumb": "items/images/en/thumbs/energy_transfer.af31c7a3333fd9b17ac2f266fe39216b.128x128.png" + } + } + }, + { + "id": "5ba9f2034567de01415f638c", + "slug": "smeeta_kavat_imprint", + "gameRef": "/Lotus/Types/Game/CatbrowPet/CheshireCatbrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Smeeta Kavat Imprint", + "icon": "items/images/en/smeeta_kavat_imprint.0e793612eeed6e1d39d98a8f4835c3d2.png", + "thumb": "items/images/en/thumbs/smeeta_kavat_imprint.0e793612eeed6e1d39d98a8f4835c3d2.128x128.png" + } + } + }, + { + "id": "5ba9f2054567de01415f6390", + "slug": "chroma_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ChromaPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Chroma Prime Blueprint", + "icon": "items/images/en/chroma_prime_blueprint.746ea1c1556aa60f94f0c2399946baaf.png", + "thumb": "items/images/en/thumbs/chroma_prime_blueprint.746ea1c1556aa60f94f0c2399946baaf.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5dbe9b087ea27b0ffe3ca269", + "slug": "ayatan_zambuka_sculpture", + "gameRef": "/Lotus/Types/Items/FusionTreasures/OroFusexH", + "tags": [ + "ayatan_sculpture" + ], + "bulkTradable": true, + "maxAmberStars": 1, + "maxCyanStars": 2, + "baseEndo": 450, + "endoMultiplier": 3, + "i18n": { + "en": { + "name": "Ayatan Zambuka Sculpture", + "icon": "items/images/en/ayatan_zambuka_sculpture.cfee4edb2f9ecbfef1a427dcd791847b.png", + "thumb": "items/images/en/thumbs/ayatan_zambuka_sculpture.cfee4edb2f9ecbfef1a427dcd791847b.128x128.png" + } + } + }, + { + "id": "5dbe9b0d7ea27b0ffe3ca275", + "slug": "auto_breach", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Cipher/AutoHackMod", + "tags": [ + "mod", + "uncommon", + "parazon" + ], + "i18n": { + "en": { + "name": "Auto Breach", + "icon": "items/images/en/auto_breach.84fc19699e6af7b4d32529aff017634c.png", + "thumb": "items/images/en/thumbs/auto_breach.84fc19699e6af7b4d32529aff017634c.128x128.png" + } + } + }, + { + "id": "5dbe9b0e7ea27b0ffe3ca276", + "slug": "untraceable", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Cipher/OnHackInvisMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "i18n": { + "en": { + "name": "Untraceable", + "icon": "items/images/en/untraceable.e564932132d9511093ba2bad454e693d.png", + "thumb": "items/images/en/thumbs/untraceable.e564932132d9511093ba2bad454e693d.128x128.png" + } + } + }, + { + "id": "5dbe9b0e7ea27b0ffe3ca277", + "slug": "vome", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalFourMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vome", + "icon": "items/images/en/vome.542f8f39dab25dbce955e8a7ddb35c3a.png", + "thumb": "items/images/en/thumbs/vome.542f8f39dab25dbce955e8a7ddb35c3a.128x128.png" + } + } + }, + { + "id": "5dbe9b0e7ea27b0ffe3ca278", + "slug": "fass", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalSixMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fass", + "icon": "items/images/en/fass.08f541cf02c5fa0572e7c2d1a61eda17.png", + "thumb": "items/images/en/thumbs/fass.08f541cf02c5fa0572e7c2d1a61eda17.128x128.png" + } + } + }, + { + "id": "57bc948ae506eb45ea25144d", + "slug": "twin_vipers_wraith_barrels", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TwinVipersWraithBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Twin Vipers Wraith Barrels", + "icon": "items/images/en/twin_vipers_wraith_barrels.c80af69695edc4c30fb44018404ea432.png", + "thumb": "items/images/en/thumbs/twin_vipers_wraith_barrels.c80af69695edc4c30fb44018404ea432.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5be5f5a13ffcc7038857f10d", + "slug": "marquise_thyst", + "gameRef": "/Lotus/Types/Items/Gems/Solaris/SolarisEidolonGemBCutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Marquise Thyst", + "icon": "items/images/en/marquise_thyst.6c9d411ba3dc55d44e7bc1299d44bd4a.png", + "thumb": "items/images/en/thumbs/marquise_thyst.6c9d411ba3dc55d44e7bc1299d44bd4a.128x128.png" + } + } + }, + { + "id": "5ba9f2034567de01415f638a", + "slug": "sahasa_kubrow_imprint", + "gameRef": "/Lotus/Types/Game/KubrowPet/AdventurerKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Sahasa Kubrow Imprint", + "icon": "items/images/en/sahasa_kubrow_imprint.77c4f5ff8ad09ff371df40bd83b828f9.png", + "thumb": "items/images/en/thumbs/sahasa_kubrow_imprint.77c4f5ff8ad09ff371df40bd83b828f9.128x128.png" + } + } + }, + { + "id": "5ba9f2044567de01415f638e", + "slug": "huras_kubrow_imprint", + "gameRef": "/Lotus/Types/Game/KubrowPet/FurtiveKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Huras Kubrow Imprint", + "icon": "items/images/en/huras_kubrow_imprint.410e212ff69a4ac14a64bbab561e7f43.png", + "thumb": "items/images/en/thumbs/huras_kubrow_imprint.410e212ff69a4ac14a64bbab561e7f43.128x128.png" + } + } + }, + { + "id": "5be5f5a43ffcc7038857f12d", + "slug": "goblite_tears", + "gameRef": "/Lotus/Types/Items/Gems/Solaris/SolarisUncommonGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Goblite Tears", + "icon": "items/images/en/goblite_tears.33b290553ebce2a57562cc316bc7e9aa.png", + "thumb": "items/images/en/thumbs/goblite_tears.33b290553ebce2a57562cc316bc7e9aa.128x128.png" + } + } + }, + { + "id": "5be701113ffcc703e462c704", + "slug": "nitro_boost", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBSprintSpeedMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Nitro Boost", + "icon": "items/images/en/nitro_boost.3b6d966109f4e1a9f68349aaacbce888.png", + "thumb": "items/images/en/thumbs/nitro_boost.3b6d966109f4e1a9f68349aaacbce888.128x128.png" + } + } + }, + { + "id": "5be701133ffcc703e462c708", + "slug": "extreme_velocity", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBSpeedMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Extreme Velocity", + "icon": "items/images/en/extreme_velocity.9fa5e42bc9271f6ad455dd17f904a0cf.png", + "thumb": "items/images/en/thumbs/extreme_velocity.9fa5e42bc9271f6ad455dd17f904a0cf.128x128.png" + } + } + }, + { + "id": "5bf54b473ffcc7066e7eb853", + "slug": "pax_charge", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/BulletToBattery", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 3, + "i18n": { + "en": { + "name": "Pax Charge", + "icon": "items/images/en/pax_charge.99b9e313690e8366285d0585c5da5926.png", + "thumb": "items/images/en/thumbs/pax_charge.99b9e313690e8366285d0585c5da5926.128x128.png" + } + } + }, + { + "id": "5c182b739603780081b09a53", + "slug": "mesa_prime_set", + "gameRef": "/Lotus/Powersuits/Cowgirl/MesaPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Mesa Prime Set", + "icon": "items/images/en/mesa_prime_set.34d67af54de052f6de1d5ae64ed40197.png", + "thumb": "items/images/en/thumbs/mesa_prime_set.34d67af54de052f6de1d5ae64ed40197.128x128.png" + } + } + }, + { + "id": "5c182b749603780081b09a56", + "slug": "mesa_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MesaPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Mesa Prime Systems Blueprint", + "icon": "items/images/en/mesa_prime_systems.34d67af54de052f6de1d5ae64ed40197.png", + "thumb": "items/images/en/thumbs/mesa_prime_systems.34d67af54de052f6de1d5ae64ed40197.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5c182b749603780081b09a57", + "slug": "mesa_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/MesaPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Mesa Prime Chassis Blueprint", + "icon": "items/images/en/mesa_prime_chassis.34d67af54de052f6de1d5ae64ed40197.png", + "thumb": "items/images/en/thumbs/mesa_prime_chassis.34d67af54de052f6de1d5ae64ed40197.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5c1bd9fe14a8e4006b1dad53", + "slug": "magus_revert", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/ReverseOnDash", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Revert", + "icon": "items/images/en/magus_revert.5265627e260f59579d8073a749956ce5.png", + "thumb": "items/images/en/thumbs/magus_revert.5265627e260f59579d8073a749956ce5.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a0d", + "slug": "intruder_stasis", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/CrewShipStasisAbilityCard", + "tags": [ + "mod", + "railjack", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Intruder Stasis", + "icon": "items/images/en/intruder_stasis.1f50ffafa54b143e50f819cd2a9ee9d0.png", + "thumb": "items/images/en/thumbs/intruder_stasis.1f50ffafa54b143e50f819cd2a9ee9d0.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a12", + "slug": "hyperstrike", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarGunnerWeaponDamage", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hyperstrike", + "icon": "items/images/en/hyperstrike.8e979c19582e3918a672ae72cf61f5ac.png", + "thumb": "items/images/en/thumbs/hyperstrike.8e979c19582e3918a672ae72cf61f5ac.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a15", + "slug": "predator", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarGunnerWeaponCritChance", + "tags": [ + "railjack", + "uncommon", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Predator", + "icon": "items/images/en/predator.00d9a614bca0ce0b665e89d76de93023.png", + "thumb": "items/images/en/thumbs/predator.00d9a614bca0ce0b665e89d76de93023.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a16", + "slug": "conic_nozzle", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Piloting/ZektiSpeed", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Conic Nozzle", + "icon": "items/images/en/conic_nozzle.2a28d8acc04a19e0e5caae4c447db6f9.png", + "thumb": "items/images/en/thumbs/conic_nozzle.2a28d8acc04a19e0e5caae4c447db6f9.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a1b", + "slug": "ripload", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanReducedOrdnanceReload", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ripload", + "icon": "items/images/en/ripload.70daa4ae617586f07a3332842df779ac.png", + "thumb": "items/images/en/thumbs/ripload.70daa4ae617586f07a3332842df779ac.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a1c", + "slug": "pennant_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TnRailjackGreatKatanaBlueprint", + "tags": [ + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Pennant Blueprint", + "icon": "items/images/en/pennant_blueprint.c466162ce14d3ae4acbf5ccae316026c.png", + "thumb": "items/images/en/thumbs/pennant_blueprint.c466162ce14d3ae4acbf5ccae316026c.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a1d", + "slug": "form_up", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/CrewShipMassRecallAbilityCard", + "tags": [ + "mod", + "railjack", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Form Up", + "icon": "items/images/en/form_up.5f635da9cb84419da82582f69d0cfc8f.png", + "thumb": "items/images/en/thumbs/form_up.5f635da9cb84419da82582f69d0cfc8f.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a20", + "slug": "quellor_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/RailjackRifleGunBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Quellor Blueprint", + "icon": "items/images/en/quellor_blueprint.4a72101e1ef7e50287d619e68a44d97e.png", + "thumb": "items/images/en/thumbs/quellor_blueprint.4a72101e1ef7e50287d619e68a44d97e.128x128.png" + } + } + }, + { + "id": "5dff7487145697033dc61a04", + "slug": "seeker_volley", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipAttackAbilityCard", + "tags": [ + "railjack", + "uncommon", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Seeker Volley", + "icon": "items/images/en/seeker_volley.b87fe16b36c53020b354a0b2e1642f9d.png", + "thumb": "items/images/en/thumbs/seeker_volley.b87fe16b36c53020b354a0b2e1642f9d.128x128.png" + } + } + }, + { + "id": "5e4145917b0275011bc5b7d2", + "slug": "reactive_storm", + "gameRef": "/Lotus/Powersuits/Pacifist/PacifistFistAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "baruuk" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Reactive Storm", + "icon": "items/images/en/reactive_storm.385aa3853a1a7feb274ffa9b207836e8.png", + "thumb": "items/images/en/thumbs/reactive_storm.385aa3853a1a7feb274ffa9b207836e8.128x128.png" + } + } + }, + { + "id": "55e797dde77989248e0e6d54", + "slug": "synoid_simulor", + "gameRef": "/Lotus/Weapons/Syndicates/CephalonSuda/LongGuns/CSSimulor", + "tags": [ + "syndicate", + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Synoid Simulor", + "icon": "items/images/en/synoid_simulor.9daa9583eb6d6d86f549933b6d0ff163.png", + "thumb": "items/images/en/thumbs/synoid_simulor.9daa9583eb6d6d86f549933b6d0ff163.128x128.png" + } + } + }, + { + "id": "5baa8bbf4567de01ac283499", + "slug": "rubico_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/RubicoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Rubico Prime Blueprint", + "icon": "items/images/en/rubico_prime_blueprint.2071211bc2436d4e768dbb61f98f6efd.png", + "thumb": "items/images/en/thumbs/rubico_prime_blueprint.2071211bc2436d4e768dbb61f98f6efd.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5615369ab66f836f805c5a8b", + "slug": "trinity_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/TrinityPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Trinity Prime Chassis Blueprint", + "icon": "items/images/en/trinity_prime_chassis.4115dba418ab8ee70197a7fdaee8da76.png", + "thumb": "items/images/en/thumbs/trinity_prime_chassis.4115dba418ab8ee70197a7fdaee8da76.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "57c05949d0d9ef638234e4ab", + "slug": "growing_power", + "gameRef": "/Lotus/Upgrades/Mods/Aura/FairyQuest/FairyQuestCritToAbilityAuraMod", + "tags": [ + "mod", + "aura", + "rare" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Growing Power", + "icon": "items/images/en/growing_power.9afc4cbee02acdde54e5f875b8048202.png", + "thumb": "items/images/en/thumbs/growing_power.9afc4cbee02acdde54e5f875b8048202.128x128.png" + } + } + }, + { + "id": "5dbe9b107ea27b0ffe3ca27b", + "slug": "blood_for_life", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionHealthDropMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "i18n": { + "en": { + "name": "Blood For Life", + "icon": "items/images/en/blood_for_life.44b2e57939e8338d35e4319c8cfcfaae.png", + "thumb": "items/images/en/thumbs/blood_for_life.44b2e57939e8338d35e4319c8cfcfaae.128x128.png" + } + } + }, + { + "id": "5dbe9b107ea27b0ffe3ca27c", + "slug": "jahu", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalThreeMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Jahu", + "icon": "items/images/en/jahu.22359517539115f5518faef882482163.png", + "thumb": "items/images/en/thumbs/jahu.22359517539115f5518faef882482163.128x128.png" + } + } + }, + { + "id": "5dbe9b127ea27b0ffe3ca282", + "slug": "ris", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalFiveMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ris", + "icon": "items/images/en/ris.623abc0d45d1551faf8d57b489566047.png", + "thumb": "items/images/en/thumbs/ris.623abc0d45d1551faf8d57b489566047.128x128.png" + } + } + }, + { + "id": "5dbe9b127ea27b0ffe3ca283", + "slug": "netra", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalSevenMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Netra", + "icon": "items/images/en/netra.2597454e920bfdca8b6a77be59d7d60c.png", + "thumb": "items/images/en/thumbs/netra.2597454e920bfdca8b6a77be59d7d60c.128x128.png" + } + } + }, + { + "id": "5df8b0aa1456970087cd9aff", + "slug": "ivara_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/IvaraPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Ivara Prime Blueprint", + "icon": "items/images/en/ivara_prime_blueprint.5c4fbd8ffa071c741cf93e260e43b6db.png", + "thumb": "items/images/en/thumbs/ivara_prime_blueprint.5c4fbd8ffa071c741cf93e260e43b6db.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5df955141456970150510f28", + "slug": "aksomati_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AksomatiPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Aksomati Prime Blueprint", + "icon": "items/images/en/aksomati_prime_blueprint.617fca3e38e6696ec87a6c28bd6bbebf.png", + "thumb": "items/images/en/thumbs/aksomati_prime_blueprint.617fca3e38e6696ec87a6c28bd6bbebf.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5dfea030145697027e409302", + "slug": "shedu_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SheduHeavyWeaponHandle", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Shedu Handle", + "icon": "items/images/en/shedu_handle.765c016812e915e1e06ceb5e3820ae48.png", + "thumb": "items/images/en/thumbs/shedu_handle.765c016812e915e1e06ceb5e3820ae48.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "5dfea13f1456970294aff371", + "slug": "spectra_vandal_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/SpectraVandalBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Spectra Vandal Barrel", + "icon": "items/images/en/spectra_vandal_barrel.fe39f6aee4576d50c445d4203ee91db2.png", + "thumb": "items/images/en/thumbs/spectra_vandal_barrel.fe39f6aee4576d50c445d4203ee91db2.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "5dfea1441456970294aff38b", + "slug": "vasca_kavat_imprint", + "gameRef": "/Lotus/Types/Game/CatbrowPet/VampireCatbrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Vasca Kavat Imprint", + "icon": "items/images/en/vasca_kavat_imprint.b8980e37ef61c2e997a8d93bdea8ceb7.png", + "thumb": "items/images/en/thumbs/vasca_kavat_imprint.b8980e37ef61c2e997a8d93bdea8ceb7.128x128.png" + } + } + }, + { + "id": "5dfea1441456970294aff38f", + "slug": "primed_smite_corrupted", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponMeleeFactionDamageCorruptedExpert", + "tags": [ + "mod", + "legendary", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Smite Orokin", + "icon": "items/images/en/primed_smite_corrupted.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/primed_smite_corrupted.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5dfea1461456970294aff396", + "slug": "grendel_neuroptics_locator", + "gameRef": "", + "tags": [ + "mod", + "locator" + ], + "i18n": { + "en": { + "name": "Grendel Neuroptics Locator", + "icon": "items/images/en/grendel_neuroptics_locator.7dd4fc179a716ae22358bb6484f1c648.webp", + "thumb": "items/images/en/thumbs/grendel_neuroptics_locator.7dd4fc179a716ae22358bb6484f1c648.128x128.webp" + } + } + }, + { + "id": "5dff6e0f14569703166749cc", + "slug": "forward_artillery", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/ZektiSuperWeaponDamage", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Forward Artillery", + "icon": "items/images/en/forward_artillery.860b4dd8bfc5659c16ace0a152a1e54c.png", + "thumb": "items/images/en/thumbs/forward_artillery.860b4dd8bfc5659c16ace0a152a1e54c.128x128.png" + } + } + }, + { + "id": "5dff6e1014569703166749ef", + "slug": "munitions_vortex", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipAttractorAbilityCard", + "tags": [ + "railjack", + "uncommon", + "mod" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Munitions Vortex", + "icon": "items/images/en/munitions_vortex.b52cf2d8091bf90d2b635aca706c2991.png", + "thumb": "items/images/en/thumbs/munitions_vortex.b52cf2d8091bf90d2b635aca706c2991.128x128.png" + } + } + }, + { + "id": "5bd05acf3ffcc700eb7cfcfb", + "slug": "chamber_of_the_lotus_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileSyndicateCephalonLotusThrone", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Chamber Of The Lotus Scene", + "icon": "items/images/en/chamber_of_the_lotus_scene.972de331fe16c2284f65751a30ccd6e2.png", + "thumb": "items/images/en/thumbs/chamber_of_the_lotus_scene.972de331fe16c2284f65751a30ccd6e2.128x128.png" + } + } + }, + { + "id": "54e0c9eee7798903744178aa", + "slug": "seeking_shuriken", + "gameRef": "/Lotus/Powersuits/Ninja/GlaiveAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "ash" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Seeking Shuriken", + "icon": "items/images/en/seeking_shuriken.815652a6488e8e4df314308ad4a872d4.png", + "thumb": "items/images/en/thumbs/seeking_shuriken.815652a6488e8e4df314308ad4a872d4.128x128.png" + } + } + }, + { + "id": "54e644ffe779897594fa68d3", + "slug": "shocking_speed", + "gameRef": "/Lotus/Powersuits/Volt/SpeedAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "volt" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shocking Speed", + "icon": "items/images/en/shocking_speed.601d970a543d0679fbc5197444f8500b.png", + "thumb": "items/images/en/thumbs/shocking_speed.601d970a543d0679fbc5197444f8500b.128x128.png" + } + } + }, + { + "id": "5510859ce779897292ba1efc", + "slug": "arcane_avenger", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/CritChanceOnDamage", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Avenger", + "icon": "items/images/en/arcane_avenger.181b3606583aa0b904a1ebf0b6864e82.png", + "thumb": "items/images/en/thumbs/arcane_avenger.181b3606583aa0b904a1ebf0b6864e82.128x128.png" + } + } + }, + { + "id": "57bc9a40e506eb45ea251451", + "slug": "nekros_prime_set", + "gameRef": "/Lotus/Powersuits/Necro/NekrosPrime", + "tags": [ + "set", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Nekros Prime Set", + "icon": "items/images/en/nekros_prime_set.523943a15c82985ebe7cf14eac98966d.png", + "thumb": "items/images/en/thumbs/nekros_prime_set.523943a15c82985ebe7cf14eac98966d.128x128.png" + } + } + }, + { + "id": "551085d6e7798972bcb28132", + "slug": "arcane_phantasm", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/SpeedOnParry", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Phantasm", + "icon": "items/images/en/arcane_phantasm.78366e4d487988a78d128a4822b4f824.png", + "thumb": "items/images/en/thumbs/arcane_phantasm.78366e4d487988a78d128a4822b4f824.128x128.png" + } + } + }, + { + "id": "57bc9a40e506eb45ea251454", + "slug": "nekros_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NekrosPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nekros Prime Systems Blueprint", + "icon": "items/images/en/nekros_prime_systems.523943a15c82985ebe7cf14eac98966d.png", + "thumb": "items/images/en/thumbs/nekros_prime_systems.523943a15c82985ebe7cf14eac98966d.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5ba9f2014567de01415f6387", + "slug": "chroma_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ChromaPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Chroma Prime Systems Blueprint", + "icon": "items/images/en/chroma_prime_systems.746ea1c1556aa60f94f0c2399946baaf.png", + "thumb": "items/images/en/thumbs/chroma_prime_systems.746ea1c1556aa60f94f0c2399946baaf.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5be5f5a23ffcc7038857f121", + "slug": "last_herald", + "gameRef": "/Lotus/Upgrades/Mods/PvPMods/Stances/PvPSwordShieldStanceOne", + "tags": [ + "pvp", + "uncommon", + "stance", + "mod", + "sword_and_shield" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Last Herald", + "icon": "items/images/en/last_herald.28f1e9ce1b932b290d2feb5c53bdd6a1.png", + "thumb": "items/images/en/thumbs/last_herald.28f1e9ce1b932b290d2feb5c53bdd6a1.128x128.png" + } + } + }, + { + "id": "551085dde7798972c228aed9", + "slug": "arcane_rage", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/LongGunDamageOnHeadshot", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Rage", + "icon": "items/images/en/arcane_rage.5a83a065bab0b881f7b2d1c8a2dbd7a9.png", + "thumb": "items/images/en/thumbs/arcane_rage.5a83a065bab0b881f7b2d1c8a2dbd7a9.128x128.png" + } + } + }, + { + "id": "5ba9f2024567de01415f6388", + "slug": "chroma_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ChromaPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Chroma Prime Chassis Blueprint", + "icon": "items/images/en/chroma_prime_chassis.746ea1c1556aa60f94f0c2399946baaf.png", + "thumb": "items/images/en/thumbs/chroma_prime_chassis.746ea1c1556aa60f94f0c2399946baaf.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "57bc9c99e506eb45ea25145a", + "slug": "galatine_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeGalatine/PrimeGalatine", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Galatine Prime Set", + "icon": "items/images/en/galatine_prime_set.066b855eb73def09ca5f21f677010098.png", + "thumb": "items/images/en/thumbs/galatine_prime_set.066b855eb73def09ca5f21f677010098.128x128.png" + } + } + }, + { + "id": "5ba9f2024567de01415f6389", + "slug": "chroma_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ChromaPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Chroma Prime Neuroptics Blueprint", + "icon": "items/images/en/chroma_prime_neuroptics.746ea1c1556aa60f94f0c2399946baaf.png", + "thumb": "items/images/en/thumbs/chroma_prime_neuroptics.746ea1c1556aa60f94f0c2399946baaf.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5c196fad96037800ddadac13", + "slug": "akjagara_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AkjagaraPrimeBlueprint", + "tags": [ + "secondary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Akjagara Prime Blueprint", + "icon": "items/images/en/akjagara_prime_blueprint.5ed111e5dcb3df5d57c5411849c113e4.png", + "thumb": "items/images/en/thumbs/akjagara_prime_blueprint.5ed111e5dcb3df5d57c5411849c113e4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5c1bda0114a8e4006b1dad58", + "slug": "strain_infection", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Strain/MeleeStrainInfectionMod", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Strain Infection", + "icon": "items/images/en/strain_infection.b015e7879c9611616ec44b56cfda3933.png", + "thumb": "items/images/en/thumbs/strain_infection.b015e7879c9611616ec44b56cfda3933.128x128.png" + } + } + }, + { + "id": "5c1bda0314a8e4006b1dad5d", + "slug": "quick_escape", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBEscapePlanMod", + "tags": [ + "mod", + "rare", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Quick Escape", + "icon": "items/images/en/quick_escape.c68e7272fccf580837b72ea0526cbcb3.png", + "thumb": "items/images/en/thumbs/quick_escape.c68e7272fccf580837b72ea0526cbcb3.128x128.png" + } + } + }, + { + "id": "5dff6e111456970316674a0e", + "slug": "void_hole", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipBlackHoleAbilityCard", + "tags": [ + "rare", + "railjack", + "mod" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Void Hole", + "icon": "items/images/en/void_hole.f531223015bcb3b579c2038deff8acec.png", + "thumb": "items/images/en/thumbs/void_hole.f531223015bcb3b579c2038deff8acec.128x128.png" + } + } + }, + { + "id": "5e02154d14569703bf43e54b", + "slug": "death_blossom", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Tactical/CrewShipDeathBlossomAbilityCard", + "tags": [ + "mod", + "rare", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Death Blossom", + "icon": "items/images/en/death_blossom.c28d45471294fd13fcd7a61c3ca29915.png", + "thumb": "items/images/en/thumbs/death_blossom.c28d45471294fd13fcd7a61c3ca29915.128x128.png" + } + } + }, + { + "id": "5e4145927b0275011bc5b7d3", + "slug": "sentient_altar_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileSentientIntReverence", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Sentient Altar Scene", + "icon": "items/images/en/sentient_altar_scene.1dd612a9e9b30f2b02ff00793a5c619a.png", + "thumb": "items/images/en/thumbs/sentient_altar_scene.1dd612a9e9b30f2b02ff00793a5c619a.128x128.png" + } + } + }, + { + "id": "5e4e4a3526753901984c2f24", + "slug": "zylok", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/ConclaveLeverPistol/ConclaveLeverPistol", + "tags": [ + "weapon", + "secondary" + ], + "i18n": { + "en": { + "name": "Zylok", + "icon": "items/images/en/zylok.3cb47888884190e96ec8c08c281b508c.png", + "thumb": "items/images/en/thumbs/zylok.3cb47888884190e96ec8c08c281b508c.128x128.png" + } + } + }, + { + "id": "57bc9c99e506eb45ea25145b", + "slug": "galatine_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeGalatineHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Galatine Prime Handle", + "icon": "items/images/en/galatine_prime_handle.066b855eb73def09ca5f21f677010098.png", + "thumb": "items/images/en/thumbs/galatine_prime_handle.066b855eb73def09ca5f21f677010098.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5c1bda0d14a8e4006b1dad6c", + "slug": "cold_arrival", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBColdLeakMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cold Arrival", + "icon": "items/images/en/cold_arrival.98123eebb595312973765817368b10f8.png", + "thumb": "items/images/en/thumbs/cold_arrival.98123eebb595312973765817368b10f8.128x128.png" + } + } + }, + { + "id": "554d3b75e77989423ccdf0da", + "slug": "vexing_retaliation", + "gameRef": "/Lotus/Powersuits/Dragon/DragonScalesAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "chroma" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vexing Retaliation", + "icon": "items/images/en/vexing_retaliation.d5be3839fc5eb654044a32d238c4b176.png", + "thumb": "items/images/en/thumbs/vexing_retaliation.d5be3839fc5eb654044a32d238c4b176.128x128.png" + } + } + }, + { + "id": "5c1bda0f14a8e4006b1dad72", + "slug": "magus_lockdown", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/TetherMineOnDash", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Lockdown", + "icon": "items/images/en/magus_lockdown.db5242eedb9db87b7e8638c3a2aa4cce.png", + "thumb": "items/images/en/thumbs/magus_lockdown.db5242eedb9db87b7e8638c3a2aa4cce.128x128.png" + } + } + }, + { + "id": "5ba9f2054567de01415f6392", + "slug": "chesa_kubrow_imprint", + "gameRef": "/Lotus/Types/Game/KubrowPet/RetrieverKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Chesa Kubrow Imprint", + "icon": "items/images/en/chesa_kubrow_imprint.8848a6f725133c4b2a1394414a443bc8.png", + "thumb": "items/images/en/thumbs/chesa_kubrow_imprint.8848a6f725133c4b2a1394414a443bc8.128x128.png" + } + } + }, + { + "id": "55e797f3e77989249d164946", + "slug": "rakta_cernos", + "gameRef": "/Lotus/Weapons/Syndicates/RedVeil/Bows/RVCernos", + "tags": [ + "syndicate", + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Rakta Cernos", + "icon": "items/images/en/rakta_cernos.3ca06a77423c5b28b8d7a9f9d860a92c.png", + "thumb": "items/images/en/thumbs/rakta_cernos.3ca06a77423c5b28b8d7a9f9d860a92c.128x128.png" + } + } + }, + { + "id": "5c1bda1214a8e4006b1dad7b", + "slug": "pop_top", + "gameRef": "/Lotus/Upgrades/Mods/Hoverboard/HBJumpChargeTimeMod", + "tags": [ + "mod", + "uncommon", + "k_drive" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pop Top", + "icon": "items/images/en/pop_top.748ef9b56b1a435fb85cee865927f543.png", + "thumb": "items/images/en/thumbs/pop_top.748ef9b56b1a435fb85cee865927f543.128x128.png" + } + } + }, + { + "id": "561536deb66f836f8bbaca47", + "slug": "dual_kamas_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PrimeDualKamasBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dual Kamas Prime Blade", + "icon": "items/images/en/dual_kamas_prime_blade.7d95cad6d71a59fa98902cc8bfe87da2.png", + "thumb": "items/images/en/thumbs/dual_kamas_prime_blade.7d95cad6d71a59fa98902cc8bfe87da2.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5e7caa01267539063de48c3b", + "slug": "controlled_slide", + "gameRef": "/Lotus/Powersuits/Nezha/NezhaDisablePassiveMod", + "tags": [ + "mod", + "rare", + "warframe", + "nezha" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Controlled Slide", + "icon": "items/images/en/controlled_slide.224fa96f8528ee7645579a88280c4680.png", + "thumb": "items/images/en/thumbs/controlled_slide.224fa96f8528ee7645579a88280c4680.128x128.png" + } + } + }, + { + "id": "5e7caa01267539063de48c3c", + "slug": "mending_shot", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Arbitration/ShootPickUpRifleMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle_(no_aoe)" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Mending Shot", + "icon": "items/images/en/mending_shot.ad5ba71f5bb163a491800032f1fe2591.png", + "thumb": "items/images/en/thumbs/mending_shot.ad5ba71f5bb163a491800032f1fe2591.128x128.png" + } + } + }, + { + "id": "5e7caa01267539063de48c3d", + "slug": "ironclad_flight", + "gameRef": "/Lotus/Powersuits/Fairy/FairyDisablePassiveMod", + "tags": [ + "mod", + "rare", + "warframe", + "titania" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ironclad Flight", + "icon": "items/images/en/ironclad_flight.5df26ed6491207c842b86f62bc2a2674.png", + "thumb": "items/images/en/thumbs/ironclad_flight.5df26ed6491207c842b86f62bc2a2674.128x128.png" + } + } + }, + { + "id": "5e839493267539077b0dd6a4", + "slug": "pangolin_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PangolinPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Pangolin Prime Handle", + "icon": "items/images/en/pangolin_prime_handle.0b93ac58408417e3f8646ccf1fb5a77e.png", + "thumb": "items/images/en/thumbs/pangolin_prime_handle.0b93ac58408417e3f8646ccf1fb5a77e.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5e839493267539077b0dd6a5", + "slug": "corinth_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeCorinth/PrimeCorinth", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Corinth Prime Set", + "icon": "items/images/en/corinth_prime_set.1f73bc83dd117b5e0295b90ed0cccc8d.png", + "thumb": "items/images/en/thumbs/corinth_prime_set.1f73bc83dd117b5e0295b90ed0cccc8d.128x128.png" + } + } + }, + { + "id": "5e839494267539077b0dd6a9", + "slug": "pangolin_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PangolinPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Pangolin Prime Blueprint", + "icon": "items/images/en/pangolin_prime_blueprint.0b93ac58408417e3f8646ccf1fb5a77e.png", + "thumb": "items/images/en/thumbs/pangolin_prime_blueprint.0b93ac58408417e3f8646ccf1fb5a77e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5e839494267539077b0dd6b1", + "slug": "overloader", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanMaxOrdnanceMunitions", + "tags": [ + "railjack", + "common", + "mod" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Overloader", + "icon": "items/images/en/overloader.f1adfd8533786d59432ade8a2c6e5898.png", + "thumb": "items/images/en/thumbs/overloader.f1adfd8533786d59432ade8a2c6e5898.128x128.png" + } + } + }, + { + "id": "5e839494267539077b0dd6b4", + "slug": "corinth_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CorinthPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Corinth Prime Barrel", + "icon": "items/images/en/corinth_prime_barrel.1f73bc83dd117b5e0295b90ed0cccc8d.png", + "thumb": "items/images/en/thumbs/corinth_prime_barrel.1f73bc83dd117b5e0295b90ed0cccc8d.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5e839494267539077b0dd6b5", + "slug": "corinth_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CorinthPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Corinth Prime Receiver", + "icon": "items/images/en/corinth_prime_receiver.1f73bc83dd117b5e0295b90ed0cccc8d.png", + "thumb": "items/images/en/thumbs/corinth_prime_receiver.1f73bc83dd117b5e0295b90ed0cccc8d.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5f498a269426ed00443bd0d3", + "slug": "damaged_necramech_casing", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/DamagedMechPartChassisItem", + "tags": [ + "necramech", + "component", + "damaged" + ], + "i18n": { + "en": { + "name": "Damaged Necramech Casing", + "icon": "items/images/en/damaged_necramech_casing.544ed6631ed590f8ae4d8f90322bd04a.png", + "thumb": "items/images/en/thumbs/damaged_necramech_casing.544ed6631ed590f8ae4d8f90322bd04a.128x128.png" + } + } + }, + { + "id": "5f498a269426ed00443bd0d5", + "slug": "stellated_necrathene", + "gameRef": "/Lotus/Types/Items/Gems/Deimos/DeimosRareGemACutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Stellated Necrathene", + "icon": "items/images/en/stellated_necrathene.ca7d17dc4941bce561a68a2d7f93634d.png", + "thumb": "items/images/en/thumbs/stellated_necrathene.ca7d17dc4941bce561a68a2d7f93634d.128x128.png" + } + } + }, + { + "id": "5f498a269426ed00443bd0d7", + "slug": "purged_dagonic", + "gameRef": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemBCutItem", + "tags": [ + "gem" + ], + "bulkTradable": true, + "i18n": { + "en": { + "name": "Purged Dagonic", + "icon": "items/images/en/purged_dagonic.1c0e451cdc247aad586725125e8161e0.png", + "thumb": "items/images/en/thumbs/purged_dagonic.1c0e451cdc247aad586725125e8161e0.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0da", + "slug": "transfusion", + "gameRef": "/Lotus/Types/Friendly/Pets/CatbrowPetPrecepts/CatbrowTransfusionPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "vasca_kavat" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Transfusion", + "icon": "items/images/en/transfusion.1490f96a7c46fbffdc312127e042adac.png", + "thumb": "items/images/en/thumbs/transfusion.1490f96a7c46fbffdc312127e042adac.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0db", + "slug": "carnis_carapace", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Ashen/AshenCarapaceMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Carnis Carapace", + "icon": "items/images/en/carnis_carapace.c6916a2639e77874f96cea7e85ea4b97.png", + "thumb": "items/images/en/thumbs/carnis_carapace.c6916a2639e77874f96cea7e85ea4b97.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0dc", + "slug": "jugulus_carapace", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Boneblade/BonebladeCarapaceMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Jugulus Carapace", + "icon": "items/images/en/jugulus_carapace.774a3ab1312ecff0b90e8774c01aa67b.png", + "thumb": "items/images/en/thumbs/jugulus_carapace.774a3ab1312ecff0b90e8774c01aa67b.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0dd", + "slug": "sly_devolution", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/VulpineInfestedCatbrowRespawn", + "tags": [ + "mod", + "rare", + "kavat", + "sly_vulpaphyla" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Sly Devolution", + "icon": "items/images/en/sly_devolution.3a840211142eef77bb06189bf5415f17.png", + "thumb": "items/images/en/thumbs/sly_devolution.3a840211142eef77bb06189bf5415f17.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0de", + "slug": "blast_shield", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPrecept/MoaChargePrecept", + "tags": [ + "mod", + "common", + "sentinel", + "moa" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Blast Shield", + "icon": "items/images/en/blast_shield.f177c2539f771f2c9c14f602c23b1828.png", + "thumb": "items/images/en/thumbs/blast_shield.f177c2539f771f2c9c14f602c23b1828.128x128.png" + } + } + }, + { + "id": "5f498a279426ed00443bd0e1", + "slug": "iatric_mycelium", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedPredatorHealingSporesPrecept", + "tags": [ + "mod", + "rare", + "kubrow", + "vizier_predasite" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Iatric Mycelium", + "icon": "items/images/en/iatric_mycelium.154575404e841baeacd33f04fe918d5b.png", + "thumb": "items/images/en/thumbs/iatric_mycelium.154575404e841baeacd33f04fe918d5b.128x128.png" + } + } + }, + { + "id": "5f4ed3ecd5c36d0086f55af6", + "slug": "deimos_vault_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosBouncy", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Vault Scene", + "icon": "items/images/en/deimos_vault_scene.2d2d03e6675c32e6af85b0111a57b649.png", + "thumb": "items/images/en/thumbs/deimos_vault_scene.2d2d03e6675c32e6af85b0111a57b649.128x128.png" + } + } + }, + { + "id": "5f4ed3eed5c36d0086f55af7", + "slug": "deimos_chamber_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosTomb", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Chamber Scene", + "icon": "items/images/en/deimos_chamber_scene.3c2e5b7f326ac35dc4c84fadb08c83ce.png", + "thumb": "items/images/en/thumbs/deimos_chamber_scene.3c2e5b7f326ac35dc4c84fadb08c83ce.128x128.png" + } + } + }, + { + "id": "5f4ed3efd5c36d0086f55af8", + "slug": "deimos_breakthrough_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosBreakthrough", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Breakthrough Scene", + "icon": "items/images/en/deimos_breakthrough_scene.091e3c40a27dfb15284b464c6f077ba3.png", + "thumb": "items/images/en/thumbs/deimos_breakthrough_scene.091e3c40a27dfb15284b464c6f077ba3.128x128.png" + } + } + }, + { + "id": "5f4ed3f0d5c36d0086f55af9", + "slug": "necramech_streamline", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAbilityEfficiencyMod", + "tags": [ + "mod", + "rare", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Streamline", + "icon": "items/images/en/necramech_streamline.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/necramech_streamline.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5f4ed3f0d5c36d0086f55afa", + "slug": "grineer_galleon_cargo_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGrineerGalleonDefense", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Grineer Galleon Cargo Scene", + "icon": "items/images/en/grineer_galleon_cargo_scene.8d484247107af508fbf2fee792583334.png", + "thumb": "items/images/en/thumbs/grineer_galleon_cargo_scene.8d484247107af508fbf2fee792583334.128x128.png" + } + } + }, + { + "id": "5f4ed3f1d5c36d0086f55afb", + "slug": "orbiter_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTilePlayerShip", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Orbiter Scene", + "icon": "items/images/en/orbiter_scene.55ee3ce3bf35bc951c91fe0c5e415488.png", + "thumb": "items/images/en/thumbs/orbiter_scene.55ee3ce3bf35bc951c91fe0c5e415488.128x128.png" + } + } + }, + { + "id": "5f4ed3f2d5c36d0086f55afd", + "slug": "artillery_battery_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileCorpusShipMedCargoRoom", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Artillery Battery Scene", + "icon": "items/images/en/artillery_battery_scene.e4b564504e09670a09b0b295274f70eb.png", + "thumb": "items/images/en/thumbs/artillery_battery_scene.e4b564504e09670a09b0b295274f70eb.128x128.png" + } + } + }, + { + "id": "5f4ed3f3d5c36d0086f55b00", + "slug": "deimos_catacombs_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosCatacombs", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Catacombs Scene", + "icon": "items/images/en/deimos_catacombs_scene.76afd1666ff95a48e8ab1ed2cd2819bb.png", + "thumb": "items/images/en/thumbs/deimos_catacombs_scene.76afd1666ff95a48e8ab1ed2cd2819bb.128x128.png" + } + } + }, + { + "id": "5f4ed3f3d5c36d0086f55b01", + "slug": "deimos_tunnels_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosTunnels", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Tunnels Scene", + "icon": "items/images/en/deimos_tunnels_scene.14e426cb6dd9226ae07d5b7a8c18ea4f.png", + "thumb": "items/images/en/thumbs/deimos_tunnels_scene.14e426cb6dd9226ae07d5b7a8c18ea4f.128x128.png" + } + } + }, + { + "id": "5f4ed3f5d5c36d0086f55b02", + "slug": "damzav_vati", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/AkbroncoViralDamageMod", + "tags": [ + "mod", + "rare", + "secondary", + "akbronco_prime" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Damzav-Vati", + "icon": "items/images/en/damzav_vati.7ed9e8ee920872beab987ff36c0e7e37.png", + "thumb": "items/images/en/thumbs/damzav_vati.7ed9e8ee920872beab987ff36c0e7e37.128x128.png" + } + } + }, + { + "id": "5f4ed3f5d5c36d0086f55b03", + "slug": "hata_satya", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/SomaCritChanceOnHitMod", + "tags": [ + "mod", + "rare", + "primary", + "soma_prime" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hata-Satya", + "icon": "items/images/en/hata_satya.41a8d7dc45195d8078c3751ac55a9058.png", + "thumb": "items/images/en/thumbs/hata_satya.41a8d7dc45195d8078c3751ac55a9058.128x128.png" + } + } + }, + { + "id": "5f4ed3f6d5c36d0086f55b05", + "slug": "zazvat_kar", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/AkstilettoEfficiencyWhileAirborneMod", + "tags": [ + "mod", + "rare", + "secondary", + "akstiletto_prime" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Zazvat-Kar", + "icon": "items/images/en/zazvat_kar.6fb7481187c9e006985e7bcfa4a6e6d0.png", + "thumb": "items/images/en/thumbs/zazvat_kar.6fb7481187c9e006985e7bcfa4a6e6d0.128x128.png" + } + } + }, + { + "id": "5f4ed3f7d5c36d0086f55b06", + "slug": "corpus_depository_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileCorpusShipLargeCargo", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Corpus Depository Scene", + "icon": "items/images/en/corpus_depository_scene.5f7f39f403fd6bd2145173613c837ffe.png", + "thumb": "items/images/en/thumbs/corpus_depository_scene.5f7f39f403fd6bd2145173613c837ffe.128x128.png" + } + } + }, + { + "id": "5f4ed3f7d5c36d0086f55b07", + "slug": "necramech_hydraulics", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechJumpHeightMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Hydraulics", + "icon": "items/images/en/necramech_hydraulics.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/necramech_hydraulics.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5f4ed3f8d5c36d0086f55b08", + "slug": "necramech_blitz", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechSlideDamageMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Blitz", + "icon": "items/images/en/necramech_blitz.9bb602da20c4207a0d2cf79009279756.png", + "thumb": "items/images/en/thumbs/necramech_blitz.9bb602da20c4207a0d2cf79009279756.128x128.png" + } + } + }, + { + "id": "5f4ed3f8d5c36d0086f55b09", + "slug": "gas_city_element_distribution_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileGasCityGasConPlusC", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Gas City Element Distribution Scene", + "icon": "items/images/en/gas_city_element_distribution_scene.85346d7c459b098981e014cd1d665f25.png", + "thumb": "items/images/en/thumbs/gas_city_element_distribution_scene.85346d7c459b098981e014cd1d665f25.128x128.png" + } + } + }, + { + "id": "5f4ed3f9d5c36d0086f55b0a", + "slug": "necramech_fury", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechMeleeSpeedMod", + "tags": [ + "mod", + "common", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Fury", + "icon": "items/images/en/necramech_fury.c252bdfdb99cb71ce2dd019c196b95b1.png", + "thumb": "items/images/en/thumbs/necramech_fury.c252bdfdb99cb71ce2dd019c196b95b1.128x128.png" + } + } + }, + { + "id": "5f4ed3fad5c36d0086f55b0d", + "slug": "deimos_downfall_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosDownfall", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Downfall Scene", + "icon": "items/images/en/deimos_downfall_scene.4f9e80d3ad0a1881ccdbb95393244851.png", + "thumb": "items/images/en/thumbs/deimos_downfall_scene.4f9e80d3ad0a1881ccdbb95393244851.128x128.png" + } + } + }, + { + "id": "5f986cf99dbdce024971b0b8", + "slug": "guandao_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GuandaoPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Guandao Prime Blade", + "icon": "items/images/en/guandao_prime_blade.cded3d77be7d60eef1d3eb82f189e70f.png", + "thumb": "items/images/en/thumbs/guandao_prime_blade.cded3d77be7d60eef1d3eb82f189e70f.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "5f986cf99dbdce024971b0b9", + "slug": "zakti_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/ZaktiPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Zakti Prime Blueprint", + "icon": "items/images/en/zakti_prime_blueprint.42dbab2b3b28d1291c7e803ad83e29fa.png", + "thumb": "items/images/en/thumbs/zakti_prime_blueprint.42dbab2b3b28d1291c7e803ad83e29fa.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "5f986cf99dbdce024971b0bc", + "slug": "guandao_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GuandaoPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Guandao Prime Handle", + "icon": "items/images/en/guandao_prime_handle.cded3d77be7d60eef1d3eb82f189e70f.png", + "thumb": "items/images/en/thumbs/guandao_prime_handle.cded3d77be7d60eef1d3eb82f189e70f.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "5f986cf99dbdce024971b0bd", + "slug": "zakti_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZaktiPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Zakti Prime Barrel", + "icon": "items/images/en/zakti_prime_barrel.42dbab2b3b28d1291c7e803ad83e29fa.png", + "thumb": "items/images/en/thumbs/zakti_prime_barrel.42dbab2b3b28d1291c7e803ad83e29fa.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "5f986cfa9dbdce024971b0be", + "slug": "nezha_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NezhaPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nezha Prime Systems Blueprint", + "icon": "items/images/en/nezha_prime_systems.462f17d4752cca5cea3988ecb9786467.png", + "thumb": "items/images/en/thumbs/nezha_prime_systems.462f17d4752cca5cea3988ecb9786467.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "5f986cfa9dbdce024971b0bf", + "slug": "nezha_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NezhaPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nezha Prime Chassis Blueprint", + "icon": "items/images/en/nezha_prime_chassis.462f17d4752cca5cea3988ecb9786467.png", + "thumb": "items/images/en/thumbs/nezha_prime_chassis.462f17d4752cca5cea3988ecb9786467.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "5f986cfb9dbdce024971b0c0", + "slug": "zakti_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZaktiPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Zakti Prime Receiver", + "icon": "items/images/en/zakti_prime_receiver.42dbab2b3b28d1291c7e803ad83e29fa.png", + "thumb": "items/images/en/thumbs/zakti_prime_receiver.42dbab2b3b28d1291c7e803ad83e29fa.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "5f986cfb9dbdce024971b0c1", + "slug": "nezha_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NezhaPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nezha Prime Neuroptics Blueprint", + "icon": "items/images/en/nezha_prime_neuroptics.462f17d4752cca5cea3988ecb9786467.png", + "thumb": "items/images/en/thumbs/nezha_prime_neuroptics.462f17d4752cca5cea3988ecb9786467.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "5f986cfc9dbdce024971b0c2", + "slug": "nezha_prime_set", + "gameRef": "/Lotus/Powersuits/Nezha/NezhaPrime", + "tags": [ + "set", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Nezha Prime Set", + "icon": "items/images/en/nezha_prime_set.462f17d4752cca5cea3988ecb9786467.png", + "thumb": "items/images/en/thumbs/nezha_prime_set.462f17d4752cca5cea3988ecb9786467.128x128.png" + } + } + }, + { + "id": "5fb84767c34da3004797d53d", + "slug": "necramech_drift", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechHoverEfficiencyMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Drift", + "icon": "items/images/en/necramech_drift.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/necramech_drift.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d547", + "slug": "sporothrix_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfSniperRifleStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sporothrix Stock", + "icon": "items/images/en/sporothrix_stock.d9a3fe663f9fee156958a698e597a6bb.png", + "thumb": "items/images/en/thumbs/sporothrix_stock.d9a3fe663f9fee156958a698e597a6bb.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d549", + "slug": "arum_spinosa_rivet", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfWarFanRivet", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Arum Spinosa Rivet", + "icon": "items/images/en/arum_spinosa_rivet.a676e9febc397c744ba0f3d4f13b891f.png", + "thumb": "items/images/en/thumbs/arum_spinosa_rivet.a676e9febc397c744ba0f3d4f13b891f.128x128.png", + "subIcon": "sub_icons/weapon/generic_rivet_128x128.png" + } + } + }, + { + "id": "5fb84768c34da3004797d54a", + "slug": "martyr_symbiosis", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePrecepts/InfestedCatbrowVampireShieldPrecept", + "tags": [ + "mod", + "rare", + "kavat", + "vulpaphyla" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Martyr Symbiosis", + "icon": "items/images/en/martyr_symbiosis.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/martyr_symbiosis.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fb84769c34da3004797d555", + "slug": "necramech_friction", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechSlideEfficiencyMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Friction", + "icon": "items/images/en/necramech_friction.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/necramech_friction.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "5fde10c36db57b0185b39074", + "slug": "necramech_repair", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechRegenOnLowHealthMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Necramech Repair", + "icon": "items/images/en/necramech_repair.f895694997aaacf28ea8d364574970e4.png", + "thumb": "items/images/en/thumbs/necramech_repair.f895694997aaacf28ea8d364574970e4.128x128.png" + } + } + }, + { + "id": "5fde10c36db57b0185b39077", + "slug": "voidrig_casing", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/NecromechPartChassisItem", + "tags": [ + "component", + "necramech" + ], + "i18n": { + "en": { + "name": "Voidrig Casing", + "icon": "items/images/en/voidrig_casing.d8acf865db09a10d93fdac2cdd1e8211.png", + "thumb": "items/images/en/thumbs/voidrig_casing.d8acf865db09a10d93fdac2cdd1e8211.128x128.png" + } + } + }, + { + "id": "5fde10c36db57b0185b39078", + "slug": "morgha_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechGrenadeLaunch/ThanoTechGrenadeLauncher", + "tags": [ + "primary", + "archwing", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Morgha Set", + "icon": "items/images/en/morgha_set.f2cd71d06c4e7d5c63b1d66a986bfdd8.png", + "thumb": "items/images/en/thumbs/morgha_set.f2cd71d06c4e7d5c63b1d66a986bfdd8.128x128.png" + } + } + }, + { + "id": "5fde10c36db57b0185b39079", + "slug": "ceti_lacera_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/OperationsLaceraBlueprint", + "tags": [ + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ceti Lacera Blueprint", + "icon": "items/images/en/ceti_lacera_blueprint.a867f2ea0f314050b613e5e49012cc6f.png", + "thumb": "items/images/en/thumbs/ceti_lacera_blueprint.a867f2ea0f314050b613e5e49012cc6f.128x128.png" + } + } + }, + { + "id": "5fde10c46db57b0185b3907a", + "slug": "necramech_rage", + "gameRef": "/Lotus/Upgrades/Mods/Necromech/NecromechAvatarDamageToEnergyMod", + "tags": [ + "mod", + "uncommon", + "necramech" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Necramech Rage", + "icon": "items/images/en/necramech_rage.dbd0173509d7cfb6fed7bad884568e9f.png", + "thumb": "items/images/en/thumbs/necramech_rage.dbd0173509d7cfb6fed7bad884568e9f.128x128.png" + } + } + }, + { + "id": "5fde10c46db57b0185b3907b", + "slug": "morgha_barrel", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/ThanotechGrenadeLauncherBarrelItem", + "tags": [ + "necramech", + "component" + ], + "i18n": { + "en": { + "name": "Morgha Barrel", + "icon": "items/images/en/morgha_barrel.d33f9cd234690f5b7be1daaaa236a64f.png", + "thumb": "items/images/en/thumbs/morgha_barrel.d33f9cd234690f5b7be1daaaa236a64f.128x128.png" + } + } + }, + { + "id": "5fde10c46db57b0185b3907c", + "slug": "voidrig_capsule", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/NecromechPartSystemsItem", + "tags": [ + "component", + "necramech" + ], + "i18n": { + "en": { + "name": "Voidrig Capsule", + "icon": "items/images/en/voidrig_capsule.75bd55fc8ff8512e1667272e4bc4e567.png", + "thumb": "items/images/en/thumbs/voidrig_capsule.75bd55fc8ff8512e1667272e4bc4e567.128x128.png" + } + } + }, + { + "id": "5fde10c56db57b0185b3907f", + "slug": "basmu_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/SentRifleNewWarGunBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Basmu Blueprint", + "icon": "items/images/en/basmu_blueprint.ab36934ae211962ea583e628c1a5cfbb.png", + "thumb": "items/images/en/thumbs/basmu_blueprint.ab36934ae211962ea583e628c1a5cfbb.128x128.png" + } + } + }, + { + "id": "5fde10c56db57b0185b39082", + "slug": "voidrig_weapon_pod", + "gameRef": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/Mechs/NecromechPartWeaponPodItem", + "tags": [ + "component", + "necramech" + ], + "i18n": { + "en": { + "name": "Voidrig Weapon Pod", + "icon": "items/images/en/voidrig_weapon_pod.c041e9d28d729aa9bdefa255ef272fa1.png", + "thumb": "items/images/en/thumbs/voidrig_weapon_pod.c041e9d28d729aa9bdefa255ef272fa1.128x128.png" + } + } + }, + { + "id": "5fe0ea836db57b0225115014", + "slug": "cedo_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TnAlchemistShotgunBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cedo Blueprint", + "icon": "items/images/en/cedo_blueprint.beb0319f93c38fe11119204a3ed47614.png", + "thumb": "items/images/en/thumbs/cedo_blueprint.beb0319f93c38fe11119204a3ed47614.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6036214f0a372600fd5614cf", + "slug": "octavia_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OctaviaPrimeBlueprint", + "tags": [ + "blueprint", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Octavia Prime Blueprint", + "icon": "items/images/en/octavia_prime_blueprint.4e24ab1ec9ff333596952d391e69b397.png", + "thumb": "items/images/en/thumbs/octavia_prime_blueprint.4e24ab1ec9ff333596952d391e69b397.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6036214f0a372600fd5614d0", + "slug": "tenora_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TenoraPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Tenora Prime Blueprint", + "icon": "items/images/en/tenora_prime_blueprint.cdda299ba3526be64a78df20883fd173.png", + "thumb": "items/images/en/thumbs/tenora_prime_blueprint.cdda299ba3526be64a78df20883fd173.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6036214f0a372600fd5614d1", + "slug": "tenora_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TenoraPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tenora Prime Receiver", + "icon": "items/images/en/tenora_prime_receiver.cdda299ba3526be64a78df20883fd173.png", + "thumb": "items/images/en/thumbs/tenora_prime_receiver.cdda299ba3526be64a78df20883fd173.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "6036214f0a372600fd5614d2", + "slug": "pandero_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimePandero/PanderoPrimeWeapon", + "tags": [ + "weapon", + "prime", + "set", + "secondary" + ], + "i18n": { + "en": { + "name": "Pandero Prime Set", + "icon": "items/images/en/pandero_prime_set.b83adf601737a6357fb8a5c06b637e8f.png", + "thumb": "items/images/en/thumbs/pandero_prime_set.b83adf601737a6357fb8a5c06b637e8f.128x128.png" + } + } + }, + { + "id": "6036214f0a372600fd5614d3", + "slug": "tenora_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TenoraPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tenora Prime Stock", + "icon": "items/images/en/tenora_prime_stock.cdda299ba3526be64a78df20883fd173.png", + "thumb": "items/images/en/thumbs/tenora_prime_stock.cdda299ba3526be64a78df20883fd173.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "6036214f0a372600fd5614d4", + "slug": "tenora_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeTenora/TenoraPrimeWeapon", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Tenora Prime Set", + "icon": "items/images/en/tenora_prime_set.cdda299ba3526be64a78df20883fd173.png", + "thumb": "items/images/en/thumbs/tenora_prime_set.cdda299ba3526be64a78df20883fd173.128x128.png" + } + } + }, + { + "id": "6036214f0a372600fd5614d5", + "slug": "pandero_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PanderoPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Pandero Prime Barrel", + "icon": "items/images/en/pandero_prime_barrel.b83adf601737a6357fb8a5c06b637e8f.png", + "thumb": "items/images/en/thumbs/pandero_prime_barrel.b83adf601737a6357fb8a5c06b637e8f.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "603621500a372600fd5614d6", + "slug": "tenora_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TenoraPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tenora Prime Barrel", + "icon": "items/images/en/tenora_prime_barrel.cdda299ba3526be64a78df20883fd173.png", + "thumb": "items/images/en/thumbs/tenora_prime_barrel.cdda299ba3526be64a78df20883fd173.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "603621500a372600fd5614d7", + "slug": "octavia_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OctaviaPrimeChassisBlueprint", + "tags": [ + "blueprint", + "warframe", + "prime", + "component" + ], + "i18n": { + "en": { + "name": "Octavia Prime Chassis Blueprint", + "icon": "items/images/en/octavia_prime_chassis.4e24ab1ec9ff333596952d391e69b397.png", + "thumb": "items/images/en/thumbs/octavia_prime_chassis.4e24ab1ec9ff333596952d391e69b397.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "603621500a372600fd5614d8", + "slug": "octavia_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OctaviaPrimeHelmetBlueprint", + "tags": [ + "blueprint", + "warframe", + "prime", + "component" + ], + "i18n": { + "en": { + "name": "Octavia Prime Neuroptics Blueprint", + "icon": "items/images/en/octavia_prime_neuroptics.4e24ab1ec9ff333596952d391e69b397.png", + "thumb": "items/images/en/thumbs/octavia_prime_neuroptics.4e24ab1ec9ff333596952d391e69b397.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "603621500a372600fd5614d9", + "slug": "pandero_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PanderoPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Pandero Prime Receiver", + "icon": "items/images/en/pandero_prime_receiver.b83adf601737a6357fb8a5c06b637e8f.png", + "thumb": "items/images/en/thumbs/pandero_prime_receiver.b83adf601737a6357fb8a5c06b637e8f.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "603621500a372600fd5614da", + "slug": "octavia_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/OctaviaPrimeSystemsBlueprint", + "tags": [ + "blueprint", + "warframe", + "prime", + "component" + ], + "i18n": { + "en": { + "name": "Octavia Prime Systems Blueprint", + "icon": "items/images/en/octavia_prime_systems.4e24ab1ec9ff333596952d391e69b397.png", + "thumb": "items/images/en/thumbs/octavia_prime_systems.4e24ab1ec9ff333596952d391e69b397.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "603621500a372600fd5614db", + "slug": "pandero_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PanderoPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Pandero Prime Blueprint", + "icon": "items/images/en/pandero_prime_blueprint.b83adf601737a6357fb8a5c06b637e8f.png", + "thumb": "items/images/en/thumbs/pandero_prime_blueprint.b83adf601737a6357fb8a5c06b637e8f.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "603621500a372600fd5614dc", + "slug": "octavia_prime_set", + "gameRef": "/Lotus/Powersuits/Bard/OctaviaPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Octavia Prime Set", + "icon": "items/images/en/octavia_prime_set.4e24ab1ec9ff333596952d391e69b397.png", + "thumb": "items/images/en/thumbs/octavia_prime_set.4e24ab1ec9ff333596952d391e69b397.128x128.png" + } + } + }, + { + "id": "604b78670a372603583c1643", + "slug": "primed_chilling_grasp", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponFreezeDamageModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Chilling Grasp", + "icon": "items/images/en/primed_chilling_grasp.2b25a580922abcba87c88a9b83e0678e.png", + "thumb": "items/images/en/thumbs/primed_chilling_grasp.2b25a580922abcba87c88a9b83e0678e.128x128.png" + } + } + }, + { + "id": "60537c312201ea0053ec2e57", + "slug": "equilibrium_(steam_pinnacle_pack)", + "gameRef": "", + "tags": [ + "mod", + "warframe", + "uncommon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Equilibrium (Steam Pinnacle Pack)", + "icon": "items/images/en/equilibrium_(steam_pinnacle_pack).1df38be97d928d3edafb1b4cf214cf8a.webp", + "thumb": "items/images/en/thumbs/equilibrium_(steam_pinnacle_pack).1df38be97d928d3edafb1b4cf214cf8a.128x128.webp" + } + } + }, + { + "id": "60537c312201ea0053ec2e58", + "slug": "mark_of_the_beast", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponGlaiveOnSixKillsBuffSecondary", + "tags": [ + "mod", + "rare", + "melee", + "thrown_melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Mark Of The Beast", + "icon": "items/images/en/mark_of_the_beast.d28d7ac6c364f75b1a03c0a52f247209.png", + "thumb": "items/images/en/thumbs/mark_of_the_beast.d28d7ac6c364f75b1a03c0a52f247209.128x128.png" + } + } + }, + { + "id": "60537c312201ea0053ec2e59", + "slug": "nihils_oubliette_(key)", + "gameRef": "/Lotus/Types/Items/ShipDecos/Nightwave/GlassmakerShipDeco", + "tags": [ + "key" + ], + "i18n": { + "en": { + "name": "Nihil's Oubliette (Key)", + "icon": "items/images/en/nihils_oubliette_(key).a25ee2dd868149b3492280528bdbfa86.png", + "thumb": "items/images/en/thumbs/nihils_oubliette_(key).a25ee2dd868149b3492280528bdbfa86.128x128.png" + } + } + }, + { + "id": "60537c322201ea0053ec2e5a", + "slug": "baro_void_signal_(key)", + "gameRef": "", + "tags": [ + "key" + ], + "i18n": { + "en": { + "name": "Baro Void-Signal (Key)", + "icon": "items/images/en/baro_void_signal_(key).d41c0135a2027f79ffcbf8d2889e9e96.webp", + "thumb": "items/images/en/thumbs/baro_void_signal_(key).d41c0135a2027f79ffcbf8d2889e9e96.128x128.webp" + } + } + }, + { + "id": "6054dd075221e30057500f15", + "slug": "requiem_iv_relic", + "gameRef": "/Lotus/Types/Game/Projections/T5VoidProjectionImmortalD", + "tags": [ + "relic", + "requiem" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Requiem IV Relic", + "icon": "items/images/en/requiem_iv_relic.70479db2ff21c243673e2a3caf93d7b9.png", + "thumb": "items/images/en/thumbs/requiem_iv_relic.70479db2ff21c243673e2a3caf93d7b9.128x128.png" + } + } + }, + { + "id": "6054dd095221e30057500f16", + "slug": "requiem_iii_relic", + "gameRef": "/Lotus/Types/Game/Projections/T5VoidProjectionImmortalC", + "tags": [ + "relic", + "requiem" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Requiem III Relic", + "icon": "items/images/en/requiem_iii_relic.70479db2ff21c243673e2a3caf93d7b9.png", + "thumb": "items/images/en/thumbs/requiem_iii_relic.70479db2ff21c243673e2a3caf93d7b9.128x128.png" + } + } + }, + { + "id": "6054dd0b5221e30057500f17", + "slug": "requiem_ii_relic", + "gameRef": "/Lotus/Types/Game/Projections/T5VoidProjectionImmortalB", + "tags": [ + "relic", + "requiem" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Requiem II Relic", + "icon": "items/images/en/requiem_ii_relic.70479db2ff21c243673e2a3caf93d7b9.png", + "thumb": "items/images/en/thumbs/requiem_ii_relic.70479db2ff21c243673e2a3caf93d7b9.128x128.png" + } + } + }, + { + "id": "6054dd0c5221e30057500f18", + "slug": "requiem_i_relic", + "gameRef": "/Lotus/Types/Game/Projections/T5VoidProjectionImmortalA", + "tags": [ + "relic", + "requiem" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Requiem I Relic", + "icon": "items/images/en/requiem_i_relic.70479db2ff21c243673e2a3caf93d7b9.png", + "thumb": "items/images/en/thumbs/requiem_i_relic.70479db2ff21c243673e2a3caf93d7b9.128x128.png" + } + } + }, + { + "id": "6054dd0e5221e30057500f19", + "slug": "axi_h3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionZephyrPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H3 Relic", + "icon": "items/images/en/axi_h3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_h3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd0f5221e30057500f1a", + "slug": "axi_o2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionZephyrPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi O2 Relic", + "icon": "items/images/en/axi_o2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_o2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd115221e30057500f1b", + "slug": "axi_k2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionZephyrPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K2 Relic", + "icon": "items/images/en/axi_k2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_k2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd125221e30057500f1c", + "slug": "axi_r1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionY", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi R1 Relic", + "icon": "items/images/en/axi_r1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_r1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd145221e30057500f1d", + "slug": "axi_b2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionX", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B2 Relic", + "icon": "items/images/en/axi_b2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_b2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd155221e30057500f1e", + "slug": "axi_l5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWukongPrimeE", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi L5 Relic", + "icon": "items/images/en/axi_l5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_l5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd165221e30057500f1f", + "slug": "axi_p1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWukongPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi P1 Relic", + "icon": "items/images/en/axi_p1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_p1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd185221e30057500f20", + "slug": "axi_m1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWukongPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi M1 Relic", + "icon": "items/images/en/axi_m1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_m1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd195221e30057500f21", + "slug": "axi_d1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWukongPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi D1 Relic", + "icon": "items/images/en/axi_d1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_d1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd1a5221e30057500f22", + "slug": "axi_g2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWukongPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G2 Relic", + "icon": "items/images/en/axi_g2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_g2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd1b5221e30057500f23", + "slug": "axi_o1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionW", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi O1 Relic", + "icon": "items/images/en/axi_o1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_o1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd1c5221e30057500f24", + "slug": "axi_v8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionVoltOdonataPrime", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi V8 Relic", + "icon": "items/images/en/axi_v8_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v8_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd1d5221e30057500f25", + "slug": "axi_h2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionV", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H2 Relic", + "icon": "items/images/en/axi_h2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_h2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd1e5221e30057500f26", + "slug": "axi_c2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionU", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C2 Relic", + "icon": "items/images/en/axi_c2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_c2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd1f5221e30057500f27", + "slug": "axi_a10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionTitaniaPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A10 Relic", + "icon": "items/images/en/axi_a10_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a10_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd205221e30057500f28", + "slug": "axi_t5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionTitaniaPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T5 Relic", + "icon": "items/images/en/axi_t5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd225221e30057500f29", + "slug": "axi_t4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionTitaniaPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T4 Relic", + "icon": "items/images/en/axi_t4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd225221e30057500f2a", + "slug": "axi_g4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionTitaniaPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G4 Relic", + "icon": "items/images/en/axi_g4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_g4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd235221e30057500f2b", + "slug": "axi_h1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionT", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H1 Relic", + "icon": "items/images/en/axi_h1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_h1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd245221e30057500f2c", + "slug": "axi_s5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionSarynValkyrVaultB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S5 Relic", + "icon": "items/images/en/axi_s5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd255221e30057500f2d", + "slug": "axi_v9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionSarynValkyrVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V9 Relic", + "icon": "items/images/en/axi_v9_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v9_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd265221e30057500f2e", + "slug": "axi_e2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionS", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi E2 Relic", + "icon": "items/images/en/axi_e2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_e2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd285221e30057500f2f", + "slug": "axi_s3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionRhinoNyxVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S3 Relic", + "icon": "items/images/en/axi_s3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd2b5221e30057500f30", + "slug": "axi_b1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionR", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B1 Relic", + "icon": "items/images/en/axi_b1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_b1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd2c5221e30057500f31", + "slug": "axi_e1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionQ", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi E1 Relic", + "icon": "items/images/en/axi_e1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_e1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd2e5221e30057500f32", + "slug": "axi_a2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionP", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi A2 Relic", + "icon": "items/images/en/axi_a2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd315221e30057500f33", + "slug": "axi_t6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionOctaviaPrimeE", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T6 Relic", + "icon": "items/images/en/axi_t6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd315221e30057500f34", + "slug": "axi_c6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionOctaviaPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C6 Relic", + "icon": "items/images/en/axi_c6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_c6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd325221e30057500f35", + "slug": "axi_w2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionOctaviaPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi W2 Relic", + "icon": "items/images/en/axi_w2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_w2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd325221e30057500f36", + "slug": "axi_a13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionOctaviaPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A13 Relic", + "icon": "items/images/en/axi_a13_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a13_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd335221e30057500f37", + "slug": "axi_o5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionOctaviaPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi O5 Relic", + "icon": "items/images/en/axi_o5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_o5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd345221e30057500f38", + "slug": "axi_s6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionOberonNekrosVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S6 Relic", + "icon": "items/images/en/axi_s6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd355221e30057500f39", + "slug": "axi_c1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionO", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C1 Relic", + "icon": "items/images/en/axi_c1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_c1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd365221e30057500f3a", + "slug": "axi_s8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNyxValkyrRailjackB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi S8 Relic", + "icon": "items/images/en/axi_s8_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s8_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd375221e30057500f3b", + "slug": "axi_v10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNyxValkyrRailjackA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi V10 Relic", + "icon": "items/images/en/axi_v10_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v10_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd375221e30057500f3c", + "slug": "axi_s7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNovaTrinityVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S7 Relic", + "icon": "items/images/en/axi_s7_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s7_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd385221e30057500f3d", + "slug": "axi_z1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNezhaPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi Z1 Relic", + "icon": "items/images/en/axi_z1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_z1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd395221e30057500f3e", + "slug": "axi_v5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionN", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V5 Relic", + "icon": "items/images/en/axi_v5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd3a5221e30057500f3f", + "slug": "axi_a3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMiragePrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A3 Relic", + "icon": "items/images/en/axi_a3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd3b5221e30057500f40", + "slug": "axi_v7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMiragePrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V7 Relic", + "icon": "items/images/en/axi_v7_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v7_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd3c5221e30057500f41", + "slug": "axi_c4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMesaPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C4 Relic", + "icon": "items/images/en/axi_c4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_c4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd3d5221e30057500f42", + "slug": "axi_l3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMesaPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi L3 Relic", + "icon": "items/images/en/axi_l3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_l3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd3e5221e30057500f43", + "slug": "axi_h4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMesaPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H4 Relic", + "icon": "items/images/en/axi_h4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_h4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd405221e30057500f44", + "slug": "axi_r2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMesaPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi R2 Relic", + "icon": "items/images/en/axi_r2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_r2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd425221e30057500f45", + "slug": "axi_a5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMagNovaVaultB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi A5 Relic", + "icon": "items/images/en/axi_a5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd445221e30057500f46", + "slug": "axi_s4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMagNovaVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S4 Relic", + "icon": "items/images/en/axi_s4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd465221e30057500f47", + "slug": "axi_v4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionM", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V4 Relic", + "icon": "items/images/en/axi_v4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd475221e30057500f48", + "slug": "axi_l4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLokiVoltVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi L4 Relic", + "icon": "items/images/en/axi_l4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_l4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd4a5221e30057500f49", + "slug": "axi_a4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLimboPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A4 Relic", + "icon": "items/images/en/axi_a4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd4b5221e30057500f4a", + "slug": "axi_l2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLimboPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi L2 Relic", + "icon": "items/images/en/axi_l2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_l2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd4d5221e30057500f4b", + "slug": "axi_o3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLimboPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi O3 Relic", + "icon": "items/images/en/axi_o3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_o3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd4e5221e30057500f4c", + "slug": "axi_k3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLimboPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K3 Relic", + "icon": "items/images/en/axi_k3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_k3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd4f5221e30057500f4d", + "slug": "axi_g1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionK", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G1 Relic", + "icon": "items/images/en/axi_g1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_g1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd505221e30057500f4e", + "slug": "axi_t1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionJ", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T1 Relic", + "icon": "items/images/en/axi_t1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd515221e30057500f4f", + "slug": "axi_a9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionIvaraPrimeE", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A9 Relic", + "icon": "items/images/en/axi_a9_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a9_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd535221e30057500f50", + "slug": "axi_p3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionIvaraPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi P3 Relic", + "icon": "items/images/en/axi_p3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_p3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd545221e30057500f51", + "slug": "axi_d2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionIvaraPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi D2 Relic", + "icon": "items/images/en/axi_d2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_d2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd545221e30057500f52", + "slug": "axi_b3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionIvaraPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B3 Relic", + "icon": "items/images/en/axi_b3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_b3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd565221e30057500f53", + "slug": "axi_a8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionIvaraPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A8 Relic", + "icon": "items/images/en/axi_a8_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a8_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd565221e30057500f54", + "slug": "axi_w1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionInarosPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi W1 Relic", + "icon": "items/images/en/axi_w1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_w1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd575221e30057500f55", + "slug": "axi_b4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionInarosPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B4 Relic", + "icon": "items/images/en/axi_b4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_b4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd585221e30057500f56", + "slug": "axi_c5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionInarosPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C5 Relic", + "icon": "items/images/en/axi_c5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_c5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd595221e30057500f57", + "slug": "axi_a11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionInarosPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A11 Relic", + "icon": "items/images/en/axi_a11_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a11_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd595221e30057500f58", + "slug": "axi_n3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionI", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N3 Relic", + "icon": "items/images/en/axi_n3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_n3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd5b5221e30057500f59", + "slug": "axi_v6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHydroidPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V6 Relic", + "icon": "items/images/en/axi_v6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd5c5221e30057500f5a", + "slug": "axi_n5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHydroidPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N5 Relic", + "icon": "items/images/en/axi_n5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_n5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd5d5221e30057500f5b", + "slug": "axi_n4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHydroidPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N4 Relic", + "icon": "items/images/en/axi_n4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_n4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd5e5221e30057500f5c", + "slug": "axi_v3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionH", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V3 Relic", + "icon": "items/images/en/axi_v3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd5f5221e30057500f5d", + "slug": "axi_n2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionG", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N2 Relic", + "icon": "items/images/en/axi_n2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_n2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd605221e30057500f5e", + "slug": "axi_v2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionF", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V2 Relic", + "icon": "items/images/en/axi_v2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd615221e30057500f5f", + "slug": "axi_k5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionEquinoxPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K5 Relic", + "icon": "items/images/en/axi_k5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_k5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd635221e30057500f60", + "slug": "axi_t2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionEquinoxPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T2 Relic", + "icon": "items/images/en/axi_t2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd635221e30057500f61", + "slug": "axi_s2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionELFVaultB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S2 Relic", + "icon": "items/images/en/axi_s2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd655221e30057500f62", + "slug": "axi_l1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionELFVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi L1 Relic", + "icon": "items/images/en/axi_l1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_l1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd685221e30057500f63", + "slug": "axi_a1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionE", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A1 Relic", + "icon": "items/images/en/axi_a1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd6a5221e30057500f64", + "slug": "axi_n1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N1 Relic", + "icon": "items/images/en/axi_n1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_n1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd6b5221e30057500f65", + "slug": "axi_o4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionChromaPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi O4 Relic", + "icon": "items/images/en/axi_o4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_o4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd6d5221e30057500f66", + "slug": "axi_k4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionChromaPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K4 Relic", + "icon": "items/images/en/axi_k4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_k4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd6d5221e30057500f67", + "slug": "axi_c3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionChromaPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C3 Relic", + "icon": "items/images/en/axi_c3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_c3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd6f5221e30057500f68", + "slug": "axi_k1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K1 Relic", + "icon": "items/images/en/axi_k1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_k1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd705221e30057500f69", + "slug": "axi_a12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionBansheeMirageVaultB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A12 Relic", + "icon": "items/images/en/axi_a12_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a12_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd715221e30057500f6a", + "slug": "axi_h5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionBansheeMirageVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H5 Relic", + "icon": "items/images/en/axi_h5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_h5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd715221e30057500f6b", + "slug": "axi_v1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V1 Relic", + "icon": "items/images/en/axi_v1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_v1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd735221e30057500f6c", + "slug": "axi_t3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAtlasPrimeE", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T3 Relic", + "icon": "items/images/en/axi_t3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd745221e30057500f6d", + "slug": "axi_g3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAtlasPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G3 Relic", + "icon": "items/images/en/axi_g3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_g3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd745221e30057500f6e", + "slug": "axi_r3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAtlasPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi R3 Relic", + "icon": "items/images/en/axi_r3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_r3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd755221e30057500f6f", + "slug": "axi_a6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAtlasPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A6 Relic", + "icon": "items/images/en/axi_a6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd775221e30057500f70", + "slug": "axi_p2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAtlasPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi P2 Relic", + "icon": "items/images/en/axi_p2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_p2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd785221e30057500f71", + "slug": "axi_a7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAshVaubanVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A7 Relic", + "icon": "items/images/en/axi_a7_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a7_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd795221e30057500f72", + "slug": "axi_n6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAlertSarynPrime", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N6 Relic", + "icon": "items/images/en/axi_n6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_n6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd7a5221e30057500f73", + "slug": "axi_s1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S1 Relic", + "icon": "items/images/en/axi_s1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6054dd7a5221e30057500f74", + "slug": "neo_z1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionZephyrPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z1 Relic", + "icon": "items/images/en/neo_z1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd7b5221e30057500f75", + "slug": "neo_b4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionZephyrPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B4 Relic", + "icon": "items/images/en/neo_b4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_b4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd7c5221e30057500f76", + "slug": "neo_k1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionZephyrPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K1 Relic", + "icon": "items/images/en/neo_k1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_k1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd7d5221e30057500f77", + "slug": "neo_n7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionZ", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N7 Relic", + "icon": "items/images/en/neo_n7_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n7_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd7e5221e30057500f78", + "slug": "neo_b3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionY", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B3 Relic", + "icon": "items/images/en/neo_b3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_b3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd7f5221e30057500f79", + "slug": "neo_n6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionX", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N6 Relic", + "icon": "items/images/en/neo_n6_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n6_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd805221e30057500f7a", + "slug": "neo_r2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWukongPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo R2 Relic", + "icon": "items/images/en/neo_r2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_r2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd825221e30057500f7b", + "slug": "neo_z3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWukongPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z3 Relic", + "icon": "items/images/en/neo_z3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd825221e30057500f7c", + "slug": "neo_s12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWukongPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S12 Relic", + "icon": "items/images/en/neo_s12_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s12_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd835221e30057500f7d", + "slug": "neo_b2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionW", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B2 Relic", + "icon": "items/images/en/neo_b2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_b2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd845221e30057500f7e", + "slug": "neo_o1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionVoltOdonataPrime", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo O1 Relic", + "icon": "items/images/en/neo_o1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_o1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd855221e30057500f7f", + "slug": "neo_s6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionV", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S6 Relic", + "icon": "items/images/en/neo_s6_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s6_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd865221e30057500f80", + "slug": "neo_v5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionU", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V5 Relic", + "icon": "items/images/en/neo_v5_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v5_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd875221e30057500f81", + "slug": "neo_r4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionTitaniaPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo R4 Relic", + "icon": "items/images/en/neo_r4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_r4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd885221e30057500f82", + "slug": "neo_m3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionTitaniaPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo M3 Relic", + "icon": "items/images/en/neo_m3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_m3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd895221e30057500f83", + "slug": "neo_p1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionTitaniaPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo P1 Relic", + "icon": "items/images/en/neo_p1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_p1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd8a5221e30057500f84", + "slug": "neo_i2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionTitaniaPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo I2 Relic", + "icon": "items/images/en/neo_i2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_i2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd8b5221e30057500f85", + "slug": "neo_b1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionT", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B1 Relic", + "icon": "items/images/en/neo_b1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_b1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd8c5221e30057500f86", + "slug": "neo_s13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionSarynValkyrVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S13 Relic", + "icon": "items/images/en/neo_s13_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s13_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd8d5221e30057500f87", + "slug": "neo_n5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionS", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N5 Relic", + "icon": "items/images/en/neo_n5_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n5_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd8e5221e30057500f88", + "slug": "neo_r1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionRhinoNyxVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo R1 Relic", + "icon": "items/images/en/neo_r1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_r1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd925221e30057500f89", + "slug": "neo_t1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionR", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T1 Relic", + "icon": "items/images/en/neo_t1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_t1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd925221e30057500f8a", + "slug": "neo_s5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionQ", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S5 Relic", + "icon": "items/images/en/neo_s5_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s5_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd945221e30057500f8b", + "slug": "neo_n15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionOctaviaPrimeE", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N15 Relic", + "icon": "items/images/en/neo_n15_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n15_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd945221e30057500f8c", + "slug": "neo_b7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionOctaviaPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B7 Relic", + "icon": "items/images/en/neo_b7_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_b7_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd955221e30057500f8d", + "slug": "neo_p2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionOctaviaPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo P2 Relic", + "icon": "items/images/en/neo_p2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_p2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd965221e30057500f8e", + "slug": "neo_z7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionOctaviaPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z7 Relic", + "icon": "items/images/en/neo_z7_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z7_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd965221e30057500f8f", + "slug": "neo_n14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionOctaviaPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N14 Relic", + "icon": "items/images/en/neo_n14_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n14_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd975221e30057500f90", + "slug": "neo_g3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionOberonNekrosVaultB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo G3 Relic", + "icon": "items/images/en/neo_g3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_g3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd985221e30057500f91", + "slug": "neo_n11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionOberonNekrosVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N11 Relic", + "icon": "items/images/en/neo_n11_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n11_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd995221e30057500f92", + "slug": "neo_n4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionO", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N4 Relic", + "icon": "items/images/en/neo_n4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9a5221e30057500f93", + "slug": "neo_v9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNyxValkyrRailjackA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo V9 Relic", + "icon": "items/images/en/neo_v9_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v9_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9a5221e30057500f94", + "slug": "neo_n12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNovaTrinityVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N12 Relic", + "icon": "items/images/en/neo_n12_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n12_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9b5221e30057500f95", + "slug": "neo_e2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNezhaPrimeE", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo E2 Relic", + "icon": "items/images/en/neo_e2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_e2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9c5221e30057500f96", + "slug": "neo_z6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNezhaPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z6 Relic", + "icon": "items/images/en/neo_z6_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z6_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9d5221e30057500f97", + "slug": "neo_s14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNezhaPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S14 Relic", + "icon": "items/images/en/neo_s14_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s14_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9d5221e30057500f98", + "slug": "neo_n13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNezhaPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N13 Relic", + "icon": "items/images/en/neo_n13_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n13_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9e5221e30057500f99", + "slug": "neo_d2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNezhaPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D2 Relic", + "icon": "items/images/en/neo_d2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_d2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dd9f5221e30057500f9a", + "slug": "neo_v4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionN", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V4 Relic", + "icon": "items/images/en/neo_v4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda05221e30057500f9b", + "slug": "neo_v6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMiragePrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V6 Relic", + "icon": "items/images/en/neo_v6_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v6_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda15221e30057500f9c", + "slug": "neo_m1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMiragePrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo M1 Relic", + "icon": "items/images/en/neo_m1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_m1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda25221e30057500f9d", + "slug": "neo_s9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMesaPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S9 Relic", + "icon": "items/images/en/neo_s9_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s9_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda25221e30057500f9e", + "slug": "neo_m2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMesaPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo M2 Relic", + "icon": "items/images/en/neo_m2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_m2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda45221e30057500f9f", + "slug": "neo_z2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMesaPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z2 Relic", + "icon": "items/images/en/neo_z2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda45221e30057500fa0", + "slug": "neo_n9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMagNovaVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N9 Relic", + "icon": "items/images/en/neo_n9_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n9_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda65221e30057500fa1", + "slug": "neo_a1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionM", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A1 Relic", + "icon": "items/images/en/neo_a1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_a1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda75221e30057500fa2", + "slug": "neo_v8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLokiVoltVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V8 Relic", + "icon": "items/images/en/neo_v8_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v8_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054dda95221e30057500fa3", + "slug": "neo_b5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLimboPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B5 Relic", + "icon": "items/images/en/neo_b5_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_b5_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddaa5221e30057500fa4", + "slug": "neo_v7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLimboPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V7 Relic", + "icon": "items/images/en/neo_v7_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v7_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddab5221e30057500fa5", + "slug": "neo_n8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLimboPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N8 Relic", + "icon": "items/images/en/neo_n8_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n8_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddac5221e30057500fa6", + "slug": "neo_l1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLimboPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo L1 Relic", + "icon": "items/images/en/neo_l1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_l1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddad5221e30057500fa7", + "slug": "neo_v3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionK", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V3 Relic", + "icon": "items/images/en/neo_v3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddae5221e30057500fa8", + "slug": "neo_v2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionJ", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V2 Relic", + "icon": "items/images/en/neo_v2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddaf5221e30057500fa9", + "slug": "neo_g2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionIvaraPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo G2 Relic", + "icon": "items/images/en/neo_g2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_g2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb05221e30057500faa", + "slug": "neo_r3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionIvaraPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo R3 Relic", + "icon": "items/images/en/neo_r3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_r3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb15221e30057500fab", + "slug": "neo_z5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionIvaraPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z5 Relic", + "icon": "items/images/en/neo_z5_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z5_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb15221e30057500fac", + "slug": "neo_i1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionIvaraPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo I1 Relic", + "icon": "items/images/en/neo_i1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_i1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb25221e30057500fad", + "slug": "neo_t3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionInarosPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T3 Relic", + "icon": "items/images/en/neo_t3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_t3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb35221e30057500fae", + "slug": "neo_n3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionI", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N3 Relic", + "icon": "items/images/en/neo_n3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb35221e30057500faf", + "slug": "neo_h1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHydroidPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo H1 Relic", + "icon": "items/images/en/neo_h1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_h1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb55221e30057500fb0", + "slug": "neo_s8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHydroidPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S8 Relic", + "icon": "items/images/en/neo_s8_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s8_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb65221e30057500fb1", + "slug": "neo_s7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHydroidPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S7 Relic", + "icon": "items/images/en/neo_s7_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s7_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb75221e30057500fb2", + "slug": "neo_s3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionG", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S3 Relic", + "icon": "items/images/en/neo_s3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb85221e30057500fb3", + "slug": "neo_d1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionF", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D1 Relic", + "icon": "items/images/en/neo_d1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_d1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddb95221e30057500fb4", + "slug": "neo_c1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionEquinoxPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo C1 Relic", + "icon": "items/images/en/neo_c1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_c1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddba5221e30057500fb5", + "slug": "neo_n10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionEquinoxPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N10 Relic", + "icon": "items/images/en/neo_n10_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n10_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddbb5221e30057500fb6", + "slug": "neo_s11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionEquinoxPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S11 Relic", + "icon": "items/images/en/neo_s11_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s11_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddbb5221e30057500fb7", + "slug": "neo_e1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionELFVaultB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo E1 Relic", + "icon": "items/images/en/neo_e1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_e1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddbd5221e30057500fb8", + "slug": "neo_f1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionELFVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo F1 Relic", + "icon": "items/images/en/neo_f1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_f1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddbe5221e30057500fb9", + "slug": "neo_v1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionE", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V1 Relic", + "icon": "items/images/en/neo_v1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc05221e30057500fba", + "slug": "neo_n2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N2 Relic", + "icon": "items/images/en/neo_n2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc15221e30057500fbb", + "slug": "neo_h2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionChromaPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo H2 Relic", + "icon": "items/images/en/neo_h2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_h2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc25221e30057500fbc", + "slug": "neo_a2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionChromaPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A2 Relic", + "icon": "items/images/en/neo_a2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_a2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc35221e30057500fbd", + "slug": "neo_g1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionChromaPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo G1 Relic", + "icon": "items/images/en/neo_g1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_g1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc45221e30057500fbe", + "slug": "neo_k2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionChromaPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K2 Relic", + "icon": "items/images/en/neo_k2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_k2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc55221e30057500fbf", + "slug": "neo_n1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N1 Relic", + "icon": "items/images/en/neo_n1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc65221e30057500fc0", + "slug": "neo_b6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionBansheeMirageVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B6 Relic", + "icon": "items/images/en/neo_b6_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_b6_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc75221e30057500fc1", + "slug": "neo_s2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S2 Relic", + "icon": "items/images/en/neo_s2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc85221e30057500fc2", + "slug": "neo_a3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionAtlasPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A3 Relic", + "icon": "items/images/en/neo_a3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_a3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddc95221e30057500fc3", + "slug": "neo_z4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionAtlasPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z4 Relic", + "icon": "items/images/en/neo_z4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddca5221e30057500fc4", + "slug": "neo_t2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionAtlasPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T2 Relic", + "icon": "items/images/en/neo_t2_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_t2_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddcb5221e30057500fc5", + "slug": "neo_a4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionAshVaubanVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A4 Relic", + "icon": "items/images/en/neo_a4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_a4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddcc5221e30057500fc6", + "slug": "neo_s10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionAlertSarynPrime", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S10 Relic", + "icon": "items/images/en/neo_s10_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s10_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddcd5221e30057500fc7", + "slug": "neo_s1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S1 Relic", + "icon": "items/images/en/neo_s1_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_s1_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6054ddce5221e30057500fc8", + "slug": "meso_t2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionZephyrPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso T2 Relic", + "icon": "items/images/en/meso_t2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_t2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddcf5221e30057500fc9", + "slug": "meso_t1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionZephyrPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso T1 Relic", + "icon": "items/images/en/meso_t1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_t1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd05221e30057500fca", + "slug": "meso_o2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionZephyrPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso O2 Relic", + "icon": "items/images/en/meso_o2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_o2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd15221e30057500fcb", + "slug": "meso_s6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionZ", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S6 Relic", + "icon": "items/images/en/meso_s6_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s6_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd15221e30057500fcc", + "slug": "meso_m1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionY", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso M1 Relic", + "icon": "items/images/en/meso_m1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_m1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd25221e30057500fcd", + "slug": "meso_v5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionX", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V5 Relic", + "icon": "items/images/en/meso_v5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_v5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd45221e30057500fce", + "slug": "meso_n7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWukongPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N7 Relic", + "icon": "items/images/en/meso_n7_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n7_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd55221e30057500fcf", + "slug": "meso_k2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWukongPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso K2 Relic", + "icon": "items/images/en/meso_k2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_k2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd65221e30057500fd0", + "slug": "meso_a2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWukongPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso A2 Relic", + "icon": "items/images/en/meso_a2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_a2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd65221e30057500fd1", + "slug": "meso_n4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionW", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N4 Relic", + "icon": "items/images/en/meso_n4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd75221e30057500fd2", + "slug": "meso_s5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionV", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S5 Relic", + "icon": "items/images/en/meso_s5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd85221e30057500fd3", + "slug": "meso_o1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionU", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso O1 Relic", + "icon": "items/images/en/meso_o1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_o1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddd95221e30057500fd4", + "slug": "meso_c5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionTitaniaPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C5 Relic", + "icon": "items/images/en/meso_c5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_c5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddda5221e30057500fd5", + "slug": "meso_r3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionTitaniaPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso R3 Relic", + "icon": "items/images/en/meso_r3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_r3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddda5221e30057500fd6", + "slug": "meso_e4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionTitaniaPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso E4 Relic", + "icon": "items/images/en/meso_e4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_e4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dddb5221e30057500fd7", + "slug": "meso_v4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionT", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V4 Relic", + "icon": "items/images/en/meso_v4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_v4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dddc5221e30057500fd8", + "slug": "meso_n8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionSarynValkyrVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N8 Relic", + "icon": "items/images/en/meso_n8_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n8_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dddd5221e30057500fd9", + "slug": "meso_s4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionS", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S4 Relic", + "icon": "items/images/en/meso_s4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddde5221e30057500fda", + "slug": "meso_n6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionRhinoNyxVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N6 Relic", + "icon": "items/images/en/meso_n6_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n6_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dddf5221e30057500fdb", + "slug": "meso_n3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionR", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N3 Relic", + "icon": "items/images/en/meso_n3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde05221e30057500fdc", + "slug": "meso_f2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionQ", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso F2 Relic", + "icon": "items/images/en/meso_f2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_f2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde15221e30057500fdd", + "slug": "meso_t4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionOctaviaPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso T4 Relic", + "icon": "items/images/en/meso_t4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_t4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde25221e30057500fde", + "slug": "meso_d6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionOctaviaPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso D6 Relic", + "icon": "items/images/en/meso_d6_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_d6_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde25221e30057500fdf", + "slug": "meso_p4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionOctaviaPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P4 Relic", + "icon": "items/images/en/meso_p4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_p4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde35221e30057500fe0", + "slug": "meso_o4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionOberonNekrosVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso O4 Relic", + "icon": "items/images/en/meso_o4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_o4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde45221e30057500fe1", + "slug": "meso_s3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionO", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S3 Relic", + "icon": "items/images/en/meso_s3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde55221e30057500fe2", + "slug": "meso_n11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNyxValkyrRailjackA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso N11 Relic", + "icon": "items/images/en/meso_n11_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n11_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde65221e30057500fe3", + "slug": "meso_d5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNovaTrinityVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso D5 Relic", + "icon": "items/images/en/meso_d5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_d5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde75221e30057500fe4", + "slug": "meso_g2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNezhaPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso G2 Relic", + "icon": "items/images/en/meso_g2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_g2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde75221e30057500fe5", + "slug": "meso_c6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNezhaPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C6 Relic", + "icon": "items/images/en/meso_c6_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_c6_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde85221e30057500fe6", + "slug": "meso_v3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionN", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V3 Relic", + "icon": "items/images/en/meso_v3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_v3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dde85221e30057500fe7", + "slug": "meso_k1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMiragePrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso K1 Relic", + "icon": "items/images/en/meso_k1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_k1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddea5221e30057500fe8", + "slug": "meso_h1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMiragePrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H1 Relic", + "icon": "items/images/en/meso_h1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_h1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddea5221e30057500fe9", + "slug": "meso_m2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMesaPrimeD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso M2 Relic", + "icon": "items/images/en/meso_m2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_m2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddeb5221e30057500fea", + "slug": "meso_a1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMesaPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso A1 Relic", + "icon": "items/images/en/meso_a1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_a1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddec5221e30057500feb", + "slug": "meso_z2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMesaPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso Z2 Relic", + "icon": "items/images/en/meso_z2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_z2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dded5221e30057500fec", + "slug": "meso_p1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMesaPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P1 Relic", + "icon": "items/images/en/meso_p1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_p1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054dded5221e30057500fed", + "slug": "meso_b3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMagNovaVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B3 Relic", + "icon": "items/images/en/meso_b3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_b3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddee5221e30057500fee", + "slug": "meso_c2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionM", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C2 Relic", + "icon": "items/images/en/meso_c2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_c2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddef5221e30057500fef", + "slug": "meso_o3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLokiVoltVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso O3 Relic", + "icon": "items/images/en/meso_o3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_o3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf05221e30057500ff0", + "slug": "meso_s7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLimboPrimeD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S7 Relic", + "icon": "items/images/en/meso_s7_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s7_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf15221e30057500ff1", + "slug": "meso_b2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLimboPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B2 Relic", + "icon": "items/images/en/meso_b2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_b2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf25221e30057500ff2", + "slug": "meso_z1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLimboPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso Z1 Relic", + "icon": "items/images/en/meso_z1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_z1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf35221e30057500ff3", + "slug": "meso_d2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLimboPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso D2 Relic", + "icon": "items/images/en/meso_d2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_d2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf35221e30057500ff4", + "slug": "meso_f1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionK", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso F1 Relic", + "icon": "items/images/en/meso_f1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_f1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf45221e30057500ff5", + "slug": "meso_s2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionJ", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S2 Relic", + "icon": "items/images/en/meso_s2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf75221e30057500ff6", + "slug": "meso_l1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionIvaraPrimeE", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso L1 Relic", + "icon": "items/images/en/meso_l1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_l1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf85221e30057500ff7", + "slug": "meso_c4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionIvaraPrimeD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C4 Relic", + "icon": "items/images/en/meso_c4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_c4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf95221e30057500ff8", + "slug": "meso_r2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionIvaraPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso R2 Relic", + "icon": "items/images/en/meso_r2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_r2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddf95221e30057500ff9", + "slug": "meso_n9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionIvaraPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N9 Relic", + "icon": "items/images/en/meso_n9_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n9_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddfa5221e30057500ffa", + "slug": "meso_b4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionIvaraPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B4 Relic", + "icon": "items/images/en/meso_b4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_b4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddfb5221e30057500ffb", + "slug": "meso_i1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionInarosPrimeE", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso I1 Relic", + "icon": "items/images/en/meso_i1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_i1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddfc5221e30057500ffc", + "slug": "meso_k3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionInarosPrimeD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso K3 Relic", + "icon": "items/images/en/meso_k3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_k3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddfc5221e30057500ffd", + "slug": "meso_n10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionInarosPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N10 Relic", + "icon": "items/images/en/meso_n10_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n10_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddfd5221e30057500ffe", + "slug": "meso_p3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionInarosPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P3 Relic", + "icon": "items/images/en/meso_p3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_p3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddfe5221e30057500fff", + "slug": "meso_p2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionInarosPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P2 Relic", + "icon": "items/images/en/meso_p2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_p2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddfe5221e30057501000", + "slug": "meso_s1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionI", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S1 Relic", + "icon": "items/images/en/meso_s1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054ddff5221e30057501001", + "slug": "meso_g1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHydroidPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso G1 Relic", + "icon": "items/images/en/meso_g1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_g1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de005221e30057501002", + "slug": "meso_c3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHydroidPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C3 Relic", + "icon": "items/images/en/meso_c3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_c3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de015221e30057501003", + "slug": "meso_n5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHydroidPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N5 Relic", + "icon": "items/images/en/meso_n5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de025221e30057501004", + "slug": "meso_v1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionG", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V1 Relic", + "icon": "items/images/en/meso_v1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_v1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de045221e30057501005", + "slug": "meso_b1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionF", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B1 Relic", + "icon": "items/images/en/meso_b1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_b1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de055221e30057501006", + "slug": "meso_e2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionEquinoxPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso E2 Relic", + "icon": "items/images/en/meso_e2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_e2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de065221e30057501007", + "slug": "meso_z3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionEquinoxPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso Z3 Relic", + "icon": "items/images/en/meso_z3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_z3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de065221e30057501008", + "slug": "meso_m3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionEquinoxPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso M3 Relic", + "icon": "items/images/en/meso_m3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_m3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de075221e30057501009", + "slug": "meso_f3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionELFVaultB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso F3 Relic", + "icon": "items/images/en/meso_f3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_f3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de085221e3005750100a", + "slug": "meso_e1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionELFVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso E1 Relic", + "icon": "items/images/en/meso_e1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_e1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de095221e3005750100b", + "slug": "meso_n2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionE", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N2 Relic", + "icon": "items/images/en/meso_n2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de0a5221e3005750100c", + "slug": "meso_v2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V2 Relic", + "icon": "items/images/en/meso_v2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_v2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de0c5221e3005750100d", + "slug": "meso_r1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionChromaPrimeD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso R1 Relic", + "icon": "items/images/en/meso_r1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_r1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de0d5221e3005750100e", + "slug": "meso_d3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionChromaPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso D3 Relic", + "icon": "items/images/en/meso_d3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_d3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de0e5221e3005750100f", + "slug": "meso_t3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionChromaPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso T3 Relic", + "icon": "items/images/en/meso_t3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_t3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de0e5221e30057501010", + "slug": "meso_s8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionChromaPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S8 Relic", + "icon": "items/images/en/meso_s8_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s8_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de0f5221e30057501011", + "slug": "meso_c1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C1 Relic", + "icon": "items/images/en/meso_c1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_c1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de105221e30057501012", + "slug": "meso_e5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionBansheeMirageVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso E5 Relic", + "icon": "items/images/en/meso_e5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_e5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de115221e30057501013", + "slug": "meso_n1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N1 Relic", + "icon": "items/images/en/meso_n1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_n1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de125221e30057501014", + "slug": "meso_e3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionAtlasPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso E3 Relic", + "icon": "items/images/en/meso_e3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_e3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de135221e30057501015", + "slug": "meso_d4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionAtlasPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso D4 Relic", + "icon": "items/images/en/meso_d4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_d4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de145221e30057501016", + "slug": "meso_w1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionAtlasPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso W1 Relic", + "icon": "items/images/en/meso_w1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_w1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de145221e30057501017", + "slug": "meso_v6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionAshVaubanVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V6 Relic", + "icon": "items/images/en/meso_v6_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_v6_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de155221e30057501018", + "slug": "meso_s9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionAlertSarynPrime", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S9 Relic", + "icon": "items/images/en/meso_s9_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s9_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de165221e30057501019", + "slug": "meso_d1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso D1 Relic", + "icon": "items/images/en/meso_d1_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_d1_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6054de175221e3005750101a", + "slug": "lith_h2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionZephyrPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H2 Relic", + "icon": "items/images/en/lith_h2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_h2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de185221e3005750101b", + "slug": "lith_z1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionZephyrPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith Z1 Relic", + "icon": "items/images/en/lith_z1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_z1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de195221e3005750101c", + "slug": "lith_b1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionY", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B1 Relic", + "icon": "items/images/en/lith_b1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de1a5221e3005750101d", + "slug": "lith_a2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionX", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith A2 Relic", + "icon": "items/images/en/lith_a2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_a2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de1b5221e3005750101e", + "slug": "lith_l1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionWukongPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith L1 Relic", + "icon": "items/images/en/lith_l1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_l1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de1b5221e3005750101f", + "slug": "lith_w1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionWukongPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith W1 Relic", + "icon": "items/images/en/lith_w1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_w1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de1c5221e30057501020", + "slug": "lith_v4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionW", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V4 Relic", + "icon": "items/images/en/lith_v4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de1d5221e30057501021", + "slug": "lith_s6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionV", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S6 Relic", + "icon": "items/images/en/lith_s6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de1e5221e30057501022", + "slug": "lith_n3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionU", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N3 Relic", + "icon": "items/images/en/lith_n3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de1f5221e30057501023", + "slug": "lith_n4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionTitaniaPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N4 Relic", + "icon": "items/images/en/lith_n4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de205221e30057501024", + "slug": "lith_m5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionTitaniaPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M5 Relic", + "icon": "items/images/en/lith_m5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_m5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de215221e30057501025", + "slug": "lith_c6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionTitaniaPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C6 Relic", + "icon": "items/images/en/lith_c6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de225221e30057501026", + "slug": "lith_c5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionSarynValkyrVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C5 Relic", + "icon": "items/images/en/lith_c5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de235221e30057501027", + "slug": "lith_v6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionSarynValkyrVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V6 Relic", + "icon": "items/images/en/lith_v6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de245221e30057501028", + "slug": "lith_v3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionS", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V3 Relic", + "icon": "items/images/en/lith_v3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de255221e30057501029", + "slug": "lith_b4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionRhinoNyxVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B4 Relic", + "icon": "items/images/en/lith_b4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de275221e3005750102a", + "slug": "lith_n2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionR", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N2 Relic", + "icon": "items/images/en/lith_n2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de275221e3005750102b", + "slug": "lith_g1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionQ", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G1 Relic", + "icon": "items/images/en/lith_g1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_g1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de295221e3005750102c", + "slug": "lith_i1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionOctaviaPrimeE", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith I1 Relic", + "icon": "items/images/en/lith_i1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_i1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de295221e3005750102d", + "slug": "lith_t5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionOctaviaPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T5 Relic", + "icon": "items/images/en/lith_t5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2a5221e3005750102e", + "slug": "lith_g3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionOctaviaPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G3 Relic", + "icon": "items/images/en/lith_g3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_g3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2a5221e3005750102f", + "slug": "lith_b8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionOctaviaPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B8 Relic", + "icon": "items/images/en/lith_b8_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b8_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2b5221e30057501030", + "slug": "lith_d4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionOctaviaPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith D4 Relic", + "icon": "items/images/en/lith_d4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_d4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2c5221e30057501031", + "slug": "lith_t3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionOberonNekrosVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T3 Relic", + "icon": "items/images/en/lith_t3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2c5221e30057501032", + "slug": "lith_s9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionOberonNekrosVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S9 Relic", + "icon": "items/images/en/lith_s9_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s9_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2d5221e30057501033", + "slug": "lith_s5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionO", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S5 Relic", + "icon": "items/images/en/lith_s5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2e5221e30057501034", + "slug": "lith_c7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNyxValkyrRailjackA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith C7 Relic", + "icon": "items/images/en/lith_c7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2e5221e30057501035", + "slug": "lith_k4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNovaTrinityVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K4 Relic", + "icon": "items/images/en/lith_k4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de2f5221e30057501036", + "slug": "lith_t4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaPrimeG", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T4 Relic", + "icon": "items/images/en/lith_t4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de305221e30057501037", + "slug": "lith_n6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaPrimeF", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N6 Relic", + "icon": "items/images/en/lith_n6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de305221e30057501038", + "slug": "lith_b7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaPrimeE", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B7 Relic", + "icon": "items/images/en/lith_b7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de315221e30057501039", + "slug": "lith_p5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P5 Relic", + "icon": "items/images/en/lith_p5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_p5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de325221e3005750103a", + "slug": "lith_d3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith D3 Relic", + "icon": "items/images/en/lith_d3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_d3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de335221e3005750103b", + "slug": "lith_n5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N5 Relic", + "icon": "items/images/en/lith_n5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de335221e3005750103c", + "slug": "lith_p4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P4 Relic", + "icon": "items/images/en/lith_p4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_p4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de345221e3005750103d", + "slug": "lith_s4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionN", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S4 Relic", + "icon": "items/images/en/lith_s4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de355221e3005750103e", + "slug": "lith_s7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMiragePrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S7 Relic", + "icon": "items/images/en/lith_s7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de365221e3005750103f", + "slug": "lith_c2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMiragePrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C2 Relic", + "icon": "items/images/en/lith_c2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de385221e30057501040", + "slug": "lith_k2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K2 Relic", + "icon": "items/images/en/lith_k2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de395221e30057501041", + "slug": "lith_b6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B6 Relic", + "icon": "items/images/en/lith_b6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de3a5221e30057501042", + "slug": "lith_m3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M3 Relic", + "icon": "items/images/en/lith_m3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_m3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de3b5221e30057501043", + "slug": "lith_c4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C4 Relic", + "icon": "items/images/en/lith_c4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de3c5221e30057501044", + "slug": "lith_m2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMagNovaVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M2 Relic", + "icon": "items/images/en/lith_m2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_m2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de3d5221e30057501045", + "slug": "lith_v2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionM", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V2 Relic", + "icon": "items/images/en/lith_v2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de3f5221e30057501046", + "slug": "lith_o2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLokiVoltVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith O2 Relic", + "icon": "items/images/en/lith_o2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_o2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de405221e30057501047", + "slug": "lith_p1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLimboPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P1 Relic", + "icon": "items/images/en/lith_p1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_p1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de415221e30057501048", + "slug": "lith_t2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLimboPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T2 Relic", + "icon": "items/images/en/lith_t2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de415221e30057501049", + "slug": "lith_v5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLimboPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V5 Relic", + "icon": "items/images/en/lith_v5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de425221e3005750104a", + "slug": "lith_b3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLimboPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B3 Relic", + "icon": "items/images/en/lith_b3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de435221e3005750104b", + "slug": "lith_n1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionL", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N1 Relic", + "icon": "items/images/en/lith_n1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de455221e3005750104c", + "slug": "lith_k1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionK", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K1 Relic", + "icon": "items/images/en/lith_k1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de455221e3005750104d", + "slug": "lith_c1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionJ", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C1 Relic", + "icon": "items/images/en/lith_c1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de465221e3005750104e", + "slug": "lith_w2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionIvaraPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith W2 Relic", + "icon": "items/images/en/lith_w2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_w2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de475221e3005750104f", + "slug": "lith_s10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionInarosPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S10 Relic", + "icon": "items/images/en/lith_s10_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s10_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de485221e30057501050", + "slug": "lith_p3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionInarosPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P3 Relic", + "icon": "items/images/en/lith_p3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_p3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de495221e30057501051", + "slug": "lith_d2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionInarosPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith D2 Relic", + "icon": "items/images/en/lith_d2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_d2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de495221e30057501052", + "slug": "lith_m6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionInarosPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M6 Relic", + "icon": "items/images/en/lith_m6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_m6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de4a5221e30057501053", + "slug": "lith_s3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionI", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S3 Relic", + "icon": "items/images/en/lith_s3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de4b5221e30057501054", + "slug": "lith_h1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHydroidPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H1 Relic", + "icon": "items/images/en/lith_h1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_h1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de4c5221e30057501055", + "slug": "lith_b2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHydroidPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B2 Relic", + "icon": "items/images/en/lith_b2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de4d5221e30057501056", + "slug": "lith_t1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHydroidPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T1 Relic", + "icon": "items/images/en/lith_t1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de4e5221e30057501057", + "slug": "lith_a1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionG", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith A1 Relic", + "icon": "items/images/en/lith_a1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_a1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de4f5221e30057501058", + "slug": "lith_m1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionF", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M1 Relic", + "icon": "items/images/en/lith_m1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_m1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de505221e30057501059", + "slug": "lith_p2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionEquinoxPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P2 Relic", + "icon": "items/images/en/lith_p2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_p2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de515221e3005750105a", + "slug": "lith_a3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionEquinoxPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith A3 Relic", + "icon": "items/images/en/lith_a3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_a3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de525221e3005750105b", + "slug": "lith_m4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionEquinoxPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M4 Relic", + "icon": "items/images/en/lith_m4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_m4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de535221e3005750105c", + "slug": "lith_g2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionELFVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G2 Relic", + "icon": "items/images/en/lith_g2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_g2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de545221e3005750105d", + "slug": "lith_f2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionE", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith F2 Relic", + "icon": "items/images/en/lith_f2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_f2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de555221e3005750105e", + "slug": "lith_v1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V1 Relic", + "icon": "items/images/en/lith_v1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de565221e3005750105f", + "slug": "lith_b5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionChromaPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B5 Relic", + "icon": "items/images/en/lith_b5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_b5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de575221e30057501060", + "slug": "lith_c3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionChromaPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C3 Relic", + "icon": "items/images/en/lith_c3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de585221e30057501061", + "slug": "lith_z2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionChromaPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith Z2 Relic", + "icon": "items/images/en/lith_z2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_z2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de595221e30057501062", + "slug": "lith_o1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionChromaPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith O1 Relic", + "icon": "items/images/en/lith_o1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_o1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de5a5221e30057501063", + "slug": "lith_f1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith F1 Relic", + "icon": "items/images/en/lith_f1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_f1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de5b5221e30057501064", + "slug": "lith_m7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionBansheeMirageVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M7 Relic", + "icon": "items/images/en/lith_m7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_m7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de5c5221e30057501065", + "slug": "lith_k5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionBansheeMirageVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K5 Relic", + "icon": "items/images/en/lith_k5_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k5_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de5d5221e30057501066", + "slug": "lith_s2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S2 Relic", + "icon": "items/images/en/lith_s2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de5e5221e30057501067", + "slug": "lith_k3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAtlasPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K3 Relic", + "icon": "items/images/en/lith_k3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de5f5221e30057501068", + "slug": "lith_d1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAtlasPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith D1 Relic", + "icon": "items/images/en/lith_d1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_d1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de605221e30057501069", + "slug": "lith_l2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAtlasPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith L2 Relic", + "icon": "items/images/en/lith_l2_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_l2_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de605221e3005750106a", + "slug": "lith_s8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAtlasPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S8 Relic", + "icon": "items/images/en/lith_s8_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s8_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de615221e3005750106b", + "slug": "lith_v8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAshVaubanVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V8 Relic", + "icon": "items/images/en/lith_v8_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v8_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de625221e3005750106c", + "slug": "lith_v7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAshVaubanVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V7 Relic", + "icon": "items/images/en/lith_v7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_v7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de635221e3005750106d", + "slug": "lith_s1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S1 Relic", + "icon": "items/images/en/lith_s1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6054de645221e3005750106e", + "slug": "aquapulmo", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/HybridRareAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Aquapulmo", + "icon": "items/images/en/aquapulmo.614ee00bc189bf6e8188792cddcf15e3.png", + "thumb": "items/images/en/thumbs/aquapulmo.614ee00bc189bf6e8188792cddcf15e3.128x128.png" + } + } + }, + { + "id": "6054de655221e3005750106f", + "slug": "ostimyr", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/HybridUncommonAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Ostimyr", + "icon": "items/images/en/ostimyr.cad7b700633006fd0feb87ffec1825d2.png", + "thumb": "items/images/en/thumbs/ostimyr.cad7b700633006fd0feb87ffec1825d2.128x128.png" + } + } + }, + { + "id": "6054de665221e30057501070", + "slug": "vitreospina", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/HybridUncommonBFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Vitreospina", + "icon": "items/images/en/vitreospina.80a20c278dacce4cd8b2c9f938f129e9.png", + "thumb": "items/images/en/thumbs/vitreospina.80a20c278dacce4cd8b2c9f938f129e9.128x128.png" + } + } + }, + { + "id": "6054de665221e30057501071", + "slug": "cryptosuctus", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/InfestedCommonAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Cryptosuctus", + "icon": "items/images/en/cryptosuctus.4022e55bcff5b4fcfe01d3408b4b01f9.png", + "thumb": "items/images/en/thumbs/cryptosuctus.4022e55bcff5b4fcfe01d3408b4b01f9.128x128.png" + } + } + }, + { + "id": "6054de675221e30057501072", + "slug": "barbisteo", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/InfestedCommonBFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Barbisteo", + "icon": "items/images/en/barbisteo.84f1b278faa86c27bee4bbf1c66b8299.png", + "thumb": "items/images/en/thumbs/barbisteo.84f1b278faa86c27bee4bbf1c66b8299.128x128.png" + } + } + }, + { + "id": "6054de675221e30057501073", + "slug": "kymaeros", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/InfestedCommonCFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Kymaeros", + "icon": "items/images/en/kymaeros.0e3d7278b025ef71f33f3751f37b8df4.png", + "thumb": "items/images/en/thumbs/kymaeros.0e3d7278b025ef71f33f3751f37b8df4.128x128.png" + } + } + }, + { + "id": "6054de685221e30057501074", + "slug": "amniophysi", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/InfestedCommonDFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Amniophysi", + "icon": "items/images/en/amniophysi.4a06c8e524a38ad11635f4c98c01c298.png", + "thumb": "items/images/en/thumbs/amniophysi.4a06c8e524a38ad11635f4c98c01c298.128x128.png" + } + } + }, + { + "id": "6054de695221e30057501075", + "slug": "lobotriscid", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/InfestedCommonEFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Lobotriscid", + "icon": "items/images/en/lobotriscid.a0dcd2f81b406e8c72f3761a91361f63.png", + "thumb": "items/images/en/thumbs/lobotriscid.a0dcd2f81b406e8c72f3761a91361f63.128x128.png" + } + } + }, + { + "id": "6054de695221e30057501076", + "slug": "flagellocanth", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/InfestedRareAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Flagellocanth", + "icon": "items/images/en/flagellocanth.0f6b528ec60c200c4bd28e2b1e527692.png", + "thumb": "items/images/en/thumbs/flagellocanth.0f6b528ec60c200c4bd28e2b1e527692.128x128.png" + } + } + }, + { + "id": "6054de6a5221e30057501077", + "slug": "glutinox", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/InfestedUncommonAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Glutinox", + "icon": "items/images/en/glutinox.6ba4ab5ace94a138d289c5314401d5c9.png", + "thumb": "items/images/en/thumbs/glutinox.6ba4ab5ace94a138d289c5314401d5c9.128x128.png" + } + } + }, + { + "id": "6054de6b5221e30057501078", + "slug": "myxostomata", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/OrokinLegendaryAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Myxostomata", + "icon": "items/images/en/myxostomata.8e6d7580c8aa36b60c5116ee56b94483.png", + "thumb": "items/images/en/thumbs/myxostomata.8e6d7580c8aa36b60c5116ee56b94483.128x128.png" + } + } + }, + { + "id": "6054de6b5221e30057501079", + "slug": "duroid", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/OrokinRareAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Duroid", + "icon": "items/images/en/duroid.d383babc8e0d5dccbd1d8c0d54093fb9.png", + "thumb": "items/images/en/thumbs/duroid.d383babc8e0d5dccbd1d8c0d54093fb9.128x128.png" + } + } + }, + { + "id": "6054de6c5221e3005750107a", + "slug": "chondricord", + "gameRef": "/Lotus/Types/Items/Fish/Deimos/OrokinUncommonAFishItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Chondricord", + "icon": "items/images/en/chondricord.840ef965f6d424431214c65439c347c8.png", + "thumb": "items/images/en/thumbs/chondricord.840ef965f6d424431214c65439c347c8.128x128.png" + } + } + }, + { + "id": "6054de6c5221e3005750107b", + "slug": "charc_eel", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/BothCommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Charc Eel", + "icon": "items/images/en/charc_eel.41e212b6fe01e186d698fdbf459356ff.png", + "thumb": "items/images/en/thumbs/charc_eel.41e212b6fe01e186d698fdbf459356ff.128x128.png" + } + } + }, + { + "id": "6054de6e5221e3005750107c", + "slug": "goopolla", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/BothCommonFishBItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Goopolla", + "icon": "items/images/en/goopolla.bd04f241b0451d1551fa642a4f7ee5ba.png", + "thumb": "items/images/en/thumbs/goopolla.bd04f241b0451d1551fa642a4f7ee5ba.128x128.png" + } + } + }, + { + "id": "6054de6f5221e3005750107d", + "slug": "murkray", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/BothRareFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Murkray", + "icon": "items/images/en/murkray.459e5a03226a2c0cfcebf26bfc6ac560.png", + "thumb": "items/images/en/thumbs/murkray.459e5a03226a2c0cfcebf26bfc6ac560.128x128.png" + } + } + }, + { + "id": "6054de775221e3005750107e", + "slug": "sharrac", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/BothUncommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Sharrac", + "icon": "items/images/en/sharrac.ee2d8aa7ef4d514d607058ee1ad29295.png", + "thumb": "items/images/en/thumbs/sharrac.ee2d8aa7ef4d514d607058ee1ad29295.128x128.png" + } + } + }, + { + "id": "6054de785221e3005750107f", + "slug": "karkina", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/BothUncommonFishBItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Karkina", + "icon": "items/images/en/karkina.8e31a023f6fea55fca0f5f20d8e296a8.png", + "thumb": "items/images/en/thumbs/karkina.8e31a023f6fea55fca0f5f20d8e296a8.128x128.png" + } + } + }, + { + "id": "6054de795221e30057501080", + "slug": "mawfish", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/DayCommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Mawfish", + "icon": "items/images/en/mawfish.5f814c64b17f3209eb4cc2df2efdbca0.png", + "thumb": "items/images/en/thumbs/mawfish.5f814c64b17f3209eb4cc2df2efdbca0.128x128.png" + } + } + }, + { + "id": "6054de7a5221e30057501081", + "slug": "khut_khut", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/DayCommonFishBItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Khut-Khut", + "icon": "items/images/en/khut_khut.9a217476a6d8b76b5ef03a4d281ce504.png", + "thumb": "items/images/en/thumbs/khut_khut.9a217476a6d8b76b5ef03a4d281ce504.128x128.png" + } + } + }, + { + "id": "6054de7b5221e30057501082", + "slug": "yogwun", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/DayCommonFishCItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Yogwun", + "icon": "items/images/en/yogwun.414590414a035d3f173860e662950d60.png", + "thumb": "items/images/en/thumbs/yogwun.414590414a035d3f173860e662950d60.128x128.png" + } + } + }, + { + "id": "6054de7c5221e30057501083", + "slug": "tralok", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/DayUncommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Tralok", + "icon": "items/images/en/tralok.22c468b53ea71bc7a6687c60b851f85e.png", + "thumb": "items/images/en/thumbs/tralok.22c468b53ea71bc7a6687c60b851f85e.128x128.png" + } + } + }, + { + "id": "6054de7d5221e30057501084", + "slug": "mortus_lungfish", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/DayUncommonFishBItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Mortus Lungfish", + "icon": "items/images/en/mortus_lungfish.d4a6763f7d3cb41442eef571c9b0a6e3.png", + "thumb": "items/images/en/thumbs/mortus_lungfish.d4a6763f7d3cb41442eef571c9b0a6e3.128x128.png" + } + } + }, + { + "id": "6054de7e5221e30057501085", + "slug": "glappid", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/NightLegendaryFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Glappid", + "icon": "items/images/en/glappid.c08d5af5e630b52b36f8ebce6dd1df3f.png", + "thumb": "items/images/en/thumbs/glappid.c08d5af5e630b52b36f8ebce6dd1df3f.128x128.png" + } + } + }, + { + "id": "6054de845221e30057501086", + "slug": "norg", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/NightRareFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Norg", + "icon": "items/images/en/norg.6ed3a518e958e16e5f1e162a9ea829b7.png", + "thumb": "items/images/en/thumbs/norg.6ed3a518e958e16e5f1e162a9ea829b7.128x128.png" + } + } + }, + { + "id": "6054de8d5221e30057501087", + "slug": "cuthol", + "gameRef": "/Lotus/Types/Items/Fish/Eidolon/NightRareFishBItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small", + "medium", + "large" + ], + "i18n": { + "en": { + "name": "Cuthol", + "icon": "items/images/en/cuthol.f8c5a1e7678b2010c9850660a7404cb8.png", + "thumb": "items/images/en/thumbs/cuthol.f8c5a1e7678b2010c9850660a7404cb8.128x128.png" + } + } + }, + { + "id": "6054de935221e30057501088", + "slug": "mirewinder", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/CorpusBothUncommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Mirewinder", + "icon": "items/images/en/mirewinder.0c98cb981ea9d1170c1ae014557588fc.png", + "thumb": "items/images/en/thumbs/mirewinder.0c98cb981ea9d1170c1ae014557588fc.128x128.png" + } + } + }, + { + "id": "6054de945221e30057501089", + "slug": "sapcaddy", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/CorpusCoolCommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Sapcaddy", + "icon": "items/images/en/sapcaddy.202e75dc588c1f56b883bf34edd33447.png", + "thumb": "items/images/en/thumbs/sapcaddy.202e75dc588c1f56b883bf34edd33447.128x128.png" + } + } + }, + { + "id": "6054de955221e3005750108a", + "slug": "eye_eye", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/CorpusCoolUncommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Eye-Eye", + "icon": "items/images/en/eye_eye.fb04eaae06d8e2b7dc34b9a851e9f4af.png", + "thumb": "items/images/en/thumbs/eye_eye.fb04eaae06d8e2b7dc34b9a851e9f4af.128x128.png" + } + } + }, + { + "id": "6054de965221e3005750108b", + "slug": "echowinder", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/CorpusWarmCommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Echowinder", + "icon": "items/images/en/echowinder.9fc57880582fbf57f7d35a0a4bc46e4c.png", + "thumb": "items/images/en/thumbs/echowinder.9fc57880582fbf57f7d35a0a4bc46e4c.128x128.png" + } + } + }, + { + "id": "6054de985221e3005750108c", + "slug": "brickie", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/CorpusWarmCommonFishBItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Brickie", + "icon": "items/images/en/brickie.5d0e1b2df1abb9b26752402e0f17ac15.png", + "thumb": "items/images/en/thumbs/brickie.5d0e1b2df1abb9b26752402e0f17ac15.128x128.png" + } + } + }, + { + "id": "6054de995221e3005750108d", + "slug": "kriller", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/CorpusWarmUncommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Kriller", + "icon": "items/images/en/kriller.314ce2b01ba74cd88b027d353eda1ade.png", + "thumb": "items/images/en/thumbs/kriller.314ce2b01ba74cd88b027d353eda1ade.128x128.png" + } + } + }, + { + "id": "6054de9a5221e3005750108e", + "slug": "synathid", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/OrokinBothLegendaryFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Synathid", + "icon": "items/images/en/synathid.fd490dd2666dac32bcbe393c3533d04c.png", + "thumb": "items/images/en/thumbs/synathid.fd490dd2666dac32bcbe393c3533d04c.128x128.png" + } + } + }, + { + "id": "6054de9d5221e3005750108f", + "slug": "charamote", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/OrokinBothRareFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Charamote", + "icon": "items/images/en/charamote.30062a02c0c3afeb972e8b17c220a1ec.png", + "thumb": "items/images/en/thumbs/charamote.30062a02c0c3afeb972e8b17c220a1ec.128x128.png" + } + } + }, + { + "id": "6054de9f5221e30057501090", + "slug": "tromyzon", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/OrokinCoolRareFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Tromyzon", + "icon": "items/images/en/tromyzon.b596391db46a92ee471fb3b94f265881.png", + "thumb": "items/images/en/thumbs/tromyzon.b596391db46a92ee471fb3b94f265881.128x128.png" + } + } + }, + { + "id": "6054dea25221e30057501091", + "slug": "scrubber", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/SolarisBothCommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Scrubber", + "icon": "items/images/en/scrubber.08b2a0760d639950f6d5410534949913.png", + "thumb": "items/images/en/thumbs/scrubber.08b2a0760d639950f6d5410534949913.128x128.png" + } + } + }, + { + "id": "6054dea25221e30057501092", + "slug": "tink", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/SolarisCoolCommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Tink", + "icon": "items/images/en/tink.ad7f29534e180cafb86952f2c5eaf1fd.png", + "thumb": "items/images/en/thumbs/tink.ad7f29534e180cafb86952f2c5eaf1fd.128x128.png" + } + } + }, + { + "id": "6054dea35221e30057501093", + "slug": "recaster", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/SolarisCoolUncommonFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Recaster", + "icon": "items/images/en/recaster.d3e1f9906910aa1149bce2194b6e8607.png", + "thumb": "items/images/en/thumbs/recaster.d3e1f9906910aa1149bce2194b6e8607.128x128.png" + } + } + }, + { + "id": "6054dea55221e30057501094", + "slug": "longwinder", + "gameRef": "/Lotus/Types/Items/Fish/Solaris/SolarisWarmRareFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "basic", + "adorned", + "magnificent" + ], + "i18n": { + "en": { + "name": "Longwinder", + "icon": "items/images/en/longwinder.4c808577089eadb98dcb9dddd73445da.png", + "thumb": "items/images/en/thumbs/longwinder.4c808577089eadb98dcb9dddd73445da.128x128.png" + } + } + }, + { + "id": "6055de865221e30083f6f108", + "slug": "hemorrhage", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponBleedOnImpactPistolMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Hemorrhage", + "icon": "items/images/en/hemorrhage.9fa6a7835706ed24963b83ea11e38950.png", + "thumb": "items/images/en/thumbs/hemorrhage.9fa6a7835706ed24963b83ea11e38950.128x128.png" + } + } + }, + { + "id": "6055de865221e30083f6f109", + "slug": "auto_omni", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/RepairShip", + "tags": [ + "mod", + "common", + "sentinel", + "nautilus" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Auto Omni", + "icon": "items/images/en/auto_omni.87bf9b3a39e78d394edbebe9ccd3f6e9.png", + "thumb": "items/images/en/thumbs/auto_omni.87bf9b3a39e78d394edbebe9ccd3f6e9.128x128.png" + } + } + }, + { + "id": "6055de865221e30083f6f10a", + "slug": "votive_onslaught", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/WarfanCmbTwoMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "warfans" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Votive Onslaught", + "icon": "items/images/en/votive_onslaught.ffc5c641a7d5d23e510fc27faaf7dc44.png", + "thumb": "items/images/en/thumbs/votive_onslaught.ffc5c641a7d5d23e510fc27faaf7dc44.128x128.png" + } + } + }, + { + "id": "6055de865221e30083f6f10b", + "slug": "cordon", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/GatherEnemies", + "tags": [ + "mod", + "common", + "sentinel", + "nautilus" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cordon", + "icon": "items/images/en/cordon.76aa1dcb061e2e0fea2e9265b2f5e95e.png", + "thumb": "items/images/en/thumbs/cordon.76aa1dcb061e2e0fea2e9265b2f5e95e.128x128.png" + } + } + }, + { + "id": "6055de865221e30083f6f10c", + "slug": "internal_bleeding", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponBleedOnImpactProcRifleMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Internal Bleeding", + "icon": "items/images/en/internal_bleeding.c0a7b613fed84922cb82ced77350cd88.png", + "thumb": "items/images/en/thumbs/internal_bleeding.c0a7b613fed84922cb82ced77350cd88.128x128.png" + } + } + }, + { + "id": "6056347f90a69e004e862873", + "slug": "fortifying_fire", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Engineering/LavanShieldOnCrit", + "tags": [ + "mod", + "rare", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Fortifying Fire", + "icon": "items/images/en/fortifying_fire.7646e3be1f427b918676c9ecac9fa23a.png", + "thumb": "items/images/en/thumbs/fortifying_fire.7646e3be1f427b918676c9ecac9fa23a.128x128.png" + } + } + }, + { + "id": "6056348090a69e004e862874", + "slug": "nautilus_cerebrum", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/EmpyreanSentinelCerebrum", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Nautilus Cerebrum", + "icon": "items/images/en/nautilus_cerebrum.4d2546740e4772a35db251115721c6b7.png", + "thumb": "items/images/en/thumbs/nautilus_cerebrum.4d2546740e4772a35db251115721c6b7.128x128.png", + "subIcon": "sub_icons/sentinel/generic_cerebrum_128x128.png" + } + } + }, + { + "id": "6056348090a69e004e862875", + "slug": "nautilus_blueprint", + "gameRef": "/Lotus/Types/Recipes/SentinelRecipes/EmpyreanSentinelBlueprint", + "tags": [ + "sentinel", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nautilus Blueprint", + "icon": "items/images/en/nautilus_blueprint.4d2546740e4772a35db251115721c6b7.png", + "thumb": "items/images/en/thumbs/nautilus_blueprint.4d2546740e4772a35db251115721c6b7.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6056348090a69e004e862876", + "slug": "protective_shots", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanProtectiveShots", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Protective Shots", + "icon": "items/images/en/protective_shots.5084394b3db9fed24856164e4d58b2d2.png", + "thumb": "items/images/en/thumbs/protective_shots.5084394b3db9fed24856164e4d58b2d2.128x128.png" + } + } + }, + { + "id": "6056348190a69e004e862877", + "slug": "crimson_fugue", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanDamageOnKill", + "tags": [ + "mod", + "rare", + "railjack" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Crimson Fugue", + "icon": "items/images/en/crimson_fugue.54c9d8f1ffb1e92ac7f11aa81e1fcd60.png", + "thumb": "items/images/en/thumbs/crimson_fugue.54c9d8f1ffb1e92ac7f11aa81e1fcd60.128x128.png" + } + } + }, + { + "id": "6056348190a69e004e862878", + "slug": "scourging_warheads", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanBypassShieldOrdnance", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Scourging Warheads", + "icon": "items/images/en/scourging_warheads.9f20153949e94da1cc4b46831737f85d.png", + "thumb": "items/images/en/thumbs/scourging_warheads.9f20153949e94da1cc4b46831737f85d.128x128.png" + } + } + }, + { + "id": "6056348190a69e004e862879", + "slug": "worms_torment", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarGrineerKiller", + "tags": [ + "mod", + "rare", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Worm's Torment", + "icon": "items/images/en/worms_torment.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/worms_torment.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "6056348290a69e004e86287a", + "slug": "defensive_fire", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Engineering/LavanMaxShieldOnKill", + "tags": [ + "mod", + "rare", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Defensive Fire", + "icon": "items/images/en/defensive_fire.647277a72e91904d4d8a54aec86927a1.png", + "thumb": "items/images/en/thumbs/defensive_fire.647277a72e91904d4d8a54aec86927a1.128x128.png" + } + } + }, + { + "id": "6056348290a69e004e86287b", + "slug": "orgone_tuning_matrix", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Engineering/LavanEngineerMatrix", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Orgone Tuning Matrix", + "icon": "items/images/en/orgone_tuning_matrix.ba36d4f2426e952f7eea2c1fbe906234.png", + "thumb": "items/images/en/thumbs/orgone_tuning_matrix.ba36d4f2426e952f7eea2c1fbe906234.128x128.png" + } + } + }, + { + "id": "6056348390a69e004e86287c", + "slug": "indomitable_matrix", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Piloting/ZektiSiegeMatrixAura", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Indomitable Matrix", + "icon": "items/images/en/indomitable_matrix.af23e4f4a5eee388d846aa018d14fcbc.png", + "thumb": "items/images/en/thumbs/indomitable_matrix.af23e4f4a5eee388d846aa018d14fcbc.128x128.png" + } + } + }, + { + "id": "6056348490a69e004e86287d", + "slug": "nautilus_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/EmpyreanSentinelPowerSuit", + "tags": [ + "sentinel", + "set" + ], + "i18n": { + "en": { + "name": "Nautilus Set", + "icon": "items/images/en/nautilus_set.4d2546740e4772a35db251115721c6b7.png", + "thumb": "items/images/en/thumbs/nautilus_set.4d2546740e4772a35db251115721c6b7.128x128.png" + } + } + }, + { + "id": "6056348590a69e004e86287e", + "slug": "ironclad_matrix", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Engineering/VidarDefensiveMatrix", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ironclad Matrix", + "icon": "items/images/en/ironclad_matrix.f3d713baa7175aee4fe361c7f6d56e0c.png", + "thumb": "items/images/en/thumbs/ironclad_matrix.f3d713baa7175aee4fe361c7f6d56e0c.128x128.png" + } + } + }, + { + "id": "6056348590a69e004e86287f", + "slug": "granums_nemesis", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarCorpusKiller", + "tags": [ + "mod", + "rare", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Granum's Nemesis", + "icon": "items/images/en/granums_nemesis.fd671126fd4051e8e3addc13ae56d1f0.png", + "thumb": "items/images/en/thumbs/granums_nemesis.fd671126fd4051e8e3addc13ae56d1f0.128x128.png" + } + } + }, + { + "id": "6056348590a69e004e862880", + "slug": "onslaught_matrix", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/VidarOffensiveMatrix", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Onslaught Matrix", + "icon": "items/images/en/onslaught_matrix.d0eda7ff030de77395f89442ffdf190e.png", + "thumb": "items/images/en/thumbs/onslaught_matrix.d0eda7ff030de77395f89442ffdf190e.128x128.png" + } + } + }, + { + "id": "6056348590a69e004e862881", + "slug": "waveband_disruptor", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Gunnery/LavanCritBypassShieldTurret", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Waveband Disruptor", + "icon": "items/images/en/waveband_disruptor.a5b6017f6387b3a4eb1bc2cd9ebfaeb7.png", + "thumb": "items/images/en/thumbs/waveband_disruptor.a5b6017f6387b3a4eb1bc2cd9ebfaeb7.128x128.png" + } + } + }, + { + "id": "6056348590a69e004e862882", + "slug": "nautilus_carapace", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/EmpyreanSentinelCarapace", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Nautilus Carapace", + "icon": "items/images/en/nautilus_carapace.4d2546740e4772a35db251115721c6b7.png", + "thumb": "items/images/en/thumbs/nautilus_carapace.4d2546740e4772a35db251115721c6b7.128x128.png", + "subIcon": "sub_icons/sentinel/generic_carapace_128x128.png" + } + } + }, + { + "id": "6056348690a69e004e862883", + "slug": "raider_matrix", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Piloting/LavanHijackMatrixAura", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Raider Matrix", + "icon": "items/images/en/raider_matrix.d358607448a682ae4bdbed1118b867a7.png", + "thumb": "items/images/en/thumbs/raider_matrix.d358607448a682ae4bdbed1118b867a7.128x128.png" + } + } + }, + { + "id": "6056348690a69e004e862884", + "slug": "phoenix_blaze", + "gameRef": "/Lotus/Upgrades/Mods/Railjack/Abilities/CrewShipPhoenixAbilityCard", + "tags": [ + "mod", + "uncommon", + "railjack" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Phoenix Blaze", + "icon": "items/images/en/phoenix_blaze.b9f6a99be2f106b9da55dd9f01f888b0.png", + "thumb": "items/images/en/thumbs/phoenix_blaze.b9f6a99be2f106b9da55dd9f01f888b0.128x128.png" + } + } + }, + { + "id": "6056348690a69e004e862885", + "slug": "nautilus_systems", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/EmpyreanSentinelSystems", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Nautilus Systems", + "icon": "items/images/en/nautilus_systems.4d2546740e4772a35db251115721c6b7.png", + "thumb": "items/images/en/thumbs/nautilus_systems.4d2546740e4772a35db251115721c6b7.128x128.png", + "subIcon": "sub_icons/sentinel/generic_systems_128x128.png" + } + } + }, + { + "id": "60575dd590a69e0070a89ed1", + "slug": "carmine_penta_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CarminePentaReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Carmine Penta Receiver", + "icon": "items/images/en/carmine_penta_receiver.c1aca6866f8ca8647358966756a8a81b.png", + "thumb": "items/images/en/thumbs/carmine_penta_receiver.c1aca6866f8ca8647358966756a8a81b.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "60575dd590a69e0070a89ed2", + "slug": "carmine_penta_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CarminePentaStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Carmine Penta Stock", + "icon": "items/images/en/carmine_penta_stock.c1aca6866f8ca8647358966756a8a81b.png", + "thumb": "items/images/en/thumbs/carmine_penta_stock.c1aca6866f8ca8647358966756a8a81b.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "60575dd590a69e0070a89ed3", + "slug": "carmine_penta_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CarminePentaBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Carmine Penta Barrel", + "icon": "items/images/en/carmine_penta_barrel.c1aca6866f8ca8647358966756a8a81b.png", + "thumb": "items/images/en/thumbs/carmine_penta_barrel.c1aca6866f8ca8647358966756a8a81b.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "60575dd690a69e0070a89ed4", + "slug": "carmine_penta_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/CarminePentaBlueprint", + "tags": [ + "weapon", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Carmine Penta Blueprint", + "icon": "items/images/en/carmine_penta_blueprint.c1aca6866f8ca8647358966756a8a81b.png", + "thumb": "items/images/en/thumbs/carmine_penta_blueprint.c1aca6866f8ca8647358966756a8a81b.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "60575dd690a69e0070a89ed5", + "slug": "carmine_penta_set", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/GrenadeLauncher/CarminePenta", + "tags": [ + "weapon", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Carmine Penta Set", + "icon": "items/images/en/carmine_penta_set.c1aca6866f8ca8647358966756a8a81b.png", + "thumb": "items/images/en/thumbs/carmine_penta_set.c1aca6866f8ca8647358966756a8a81b.128x128.png" + } + } + }, + { + "id": "605b1de867ea0b004939c993", + "slug": "athodai_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AthodaiPistolBlueprint", + "tags": [ + "weapon", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Athodai Blueprint", + "icon": "items/images/en/athodai_blueprint.df278ff7a927e6fa6e2c3a20f4ccdcfb.png", + "thumb": "items/images/en/thumbs/athodai_blueprint.df278ff7a927e6fa6e2c3a20f4ccdcfb.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "605b1de967ea0b004939c994", + "slug": "athodai_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AthodaiPistolBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Athodai Barrel", + "icon": "items/images/en/athodai_barrel.df278ff7a927e6fa6e2c3a20f4ccdcfb.png", + "thumb": "items/images/en/thumbs/athodai_barrel.df278ff7a927e6fa6e2c3a20f4ccdcfb.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "605b1de967ea0b004939c995", + "slug": "athodai_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AthodaiPistolReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Athodai Receiver", + "icon": "items/images/en/athodai_receiver.df278ff7a927e6fa6e2c3a20f4ccdcfb.png", + "thumb": "items/images/en/thumbs/athodai_receiver.df278ff7a927e6fa6e2c3a20f4ccdcfb.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "605b1de967ea0b004939c996", + "slug": "athodai_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnJetTurbine/TnJetTurbinePistolWeapon", + "tags": [ + "weapon", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Athodai Set", + "icon": "items/images/en/athodai_set.df278ff7a927e6fa6e2c3a20f4ccdcfb.png", + "thumb": "items/images/en/thumbs/athodai_set.df278ff7a927e6fa6e2c3a20f4ccdcfb.128x128.png" + } + } + }, + { + "id": "6070924a84a7d7024402d51e", + "slug": "halikar_wraith", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnBoomerang/HalikarWraithWeapon", + "tags": [ + "melee", + "weapon" + ], + "i18n": { + "en": { + "name": "Halikar Wraith", + "icon": "items/images/en/halikar_wraith.8bb2ffb98fe8bc6b152413dd77e2e6ce.png", + "thumb": "items/images/en/thumbs/halikar_wraith.8bb2ffb98fe8bc6b152413dd77e2e6ce.128x128.png" + } + } + }, + { + "id": "60783deb84a7d703418582cf", + "slug": "epitaph_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/WraithSidearmReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Epitaph Receiver", + "icon": "items/images/en/epitaph_receiver.b3a75cdcef1c7ba2971d2c550f8390e3.png", + "thumb": "items/images/en/thumbs/epitaph_receiver.b3a75cdcef1c7ba2971d2c550f8390e3.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "60783dec84a7d703418582d0", + "slug": "epitaph_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnWraitheSidearm/TnWraitheSidearmWeapon", + "tags": [ + "weapon", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Epitaph Set", + "icon": "items/images/en/epitaph_set.b3a75cdcef1c7ba2971d2c550f8390e3.png", + "thumb": "items/images/en/thumbs/epitaph_set.b3a75cdcef1c7ba2971d2c550f8390e3.128x128.png" + } + } + }, + { + "id": "60783dec84a7d703418582d1", + "slug": "epitaph_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/WraithSidearmBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Epitaph Barrel", + "icon": "items/images/en/epitaph_barrel.b3a75cdcef1c7ba2971d2c550f8390e3.png", + "thumb": "items/images/en/thumbs/epitaph_barrel.b3a75cdcef1c7ba2971d2c550f8390e3.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "60783dec84a7d703418582d2", + "slug": "epitaph_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WraithSidearmBlueprint", + "tags": [ + "weapon", + "secondary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Epitaph Blueprint", + "icon": "items/images/en/epitaph_blueprint.b3a75cdcef1c7ba2971d2c550f8390e3.png", + "thumb": "items/images/en/thumbs/epitaph_blueprint.b3a75cdcef1c7ba2971d2c550f8390e3.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "60896628ea93740269271780", + "slug": "deimos_depths_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosCalamity", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Depths Scene", + "icon": "items/images/en/deimos_depths_scene.4acffcc10d90cb2198ee6b2e86a0eff2.png", + "thumb": "items/images/en/thumbs/deimos_depths_scene.4acffcc10d90cb2198ee6b2e86a0eff2.128x128.png" + } + } + }, + { + "id": "60896629ea93740269271781", + "slug": "deimos_heart_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosHeart", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Heart Scene", + "icon": "items/images/en/deimos_heart_scene.279e37a5190d903f028fadfe4545a8df.png", + "thumb": "items/images/en/thumbs/deimos_heart_scene.279e37a5190d903f028fadfe4545a8df.128x128.png" + } + } + }, + { + "id": "60896629ea93740269271782", + "slug": "deimos_cenote_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosCenote", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Cenote Scene", + "icon": "items/images/en/deimos_cenote_scene.fa1f76e4efce34aae395e9b0160e5543.png", + "thumb": "items/images/en/thumbs/deimos_cenote_scene.fa1f76e4efce34aae395e9b0160e5543.128x128.png" + } + } + }, + { + "id": "6089662aea93740269271784", + "slug": "deimos_crypt_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosBurialChamber", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Crypt Scene", + "icon": "items/images/en/deimos_crypt_scene.959f8376bcd1486bd151d49563a64854.png", + "thumb": "items/images/en/thumbs/deimos_crypt_scene.959f8376bcd1486bd151d49563a64854.128x128.png" + } + } + }, + { + "id": "6089662bea93740269271785", + "slug": "infested_ship_hologram_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileInfestedPurify02Objective", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Infested Ship Hologram Scene", + "icon": "items/images/en/infested_ship_hologram_scene.6e1e70f34ce8a45ce62184743519bfc8.png", + "thumb": "items/images/en/thumbs/infested_ship_hologram_scene.6e1e70f34ce8a45ce62184743519bfc8.128x128.png" + } + } + }, + { + "id": "6089662bea93740269271786", + "slug": "the_cold_below_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileWraithQuestArena", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "The Cold Below Scene", + "icon": "items/images/en/the_cold_below_scene.fda298d759abaf241e0a01294db43f7c.png", + "thumb": "items/images/en/thumbs/the_cold_below_scene.fda298d759abaf241e0a01294db43f7c.128x128.png" + } + } + }, + { + "id": "6089662cea93740269271787", + "slug": "deimos_forsaken_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosForsaken", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Forsaken Scene", + "icon": "items/images/en/deimos_forsaken_scene.785adad6c221ef706d8bbacecc47ff79.png", + "thumb": "items/images/en/thumbs/deimos_forsaken_scene.785adad6c221ef706d8bbacecc47ff79.128x128.png" + } + } + }, + { + "id": "6089662cea93740269271788", + "slug": "deimos_membrane_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosSchism", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Membrane Scene", + "icon": "items/images/en/deimos_membrane_scene.aee61e07c711d652e1b1dba7b35ef72b.png", + "thumb": "items/images/en/thumbs/deimos_membrane_scene.aee61e07c711d652e1b1dba7b35ef72b.128x128.png" + } + } + }, + { + "id": "6089662dea93740269271789", + "slug": "deimos_verge_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDeimosSpawn", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Deimos Verge Scene", + "icon": "items/images/en/deimos_verge_scene.0eecba76839c9c2254cb98b4c6626a81.png", + "thumb": "items/images/en/thumbs/deimos_verge_scene.0eecba76839c9c2254cb98b4c6626a81.128x128.png" + } + } + }, + { + "id": "6089662dea9374026927178a", + "slug": "axi_g5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionChromaZephyrVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G5 Relic", + "icon": "items/images/en/axi_g5_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_g5_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6089662dea9374026927178b", + "slug": "neo_k3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionChromaZephyrVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K3 Relic", + "icon": "items/images/en/neo_k3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_k3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6089662dea9374026927178c", + "slug": "neo_z8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionChromaZephyrVaultB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z8 Relic", + "icon": "items/images/en/neo_z8_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_z8_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6089662eea9374026927178d", + "slug": "meso_r4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionChromaZephyrVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso R4 Relic", + "icon": "items/images/en/meso_r4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_r4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6089662eea9374026927178e", + "slug": "lith_c8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionChromaZephyrVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C8 Relic", + "icon": "items/images/en/lith_c8_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c8_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6089662eea9374026927178f", + "slug": "lith_t6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionChromaZephyrVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T6 Relic", + "icon": "items/images/en/lith_t6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6089662eea93740269271790", + "slug": "saturn_six_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileWolfSixPrison", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Saturn Six Scene", + "icon": "items/images/en/saturn_six_scene.8a6c52ceaa557d0cf0e5980361cc30fd.png", + "thumb": "items/images/en/thumbs/saturn_six_scene.8a6c52ceaa557d0cf0e5980361cc30fd.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6f6", + "slug": "meso_p5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaraPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P5 Relic", + "icon": "items/images/en/meso_p5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_p5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6f7", + "slug": "lith_k6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaraPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K6 Relic", + "icon": "items/images/en/lith_k6_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k6_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6f8", + "slug": "axi_g6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaraPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G6 Relic", + "icon": "items/images/en/axi_g6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_g6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6f9", + "slug": "volnus_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VolnusPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Volnus Prime Handle", + "icon": "items/images/en/volnus_prime_handle.61e00a9ff67ea0fb1ce0be39e6263ea2.png", + "thumb": "items/images/en/thumbs/volnus_prime_handle.61e00a9ff67ea0fb1ce0be39e6263ea2.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6fa", + "slug": "volnus_prime_head", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VolnusPrimeHead", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Volnus Prime Head", + "icon": "items/images/en/volnus_prime_head.61e00a9ff67ea0fb1ce0be39e6263ea2.png", + "thumb": "items/images/en/thumbs/volnus_prime_head.61e00a9ff67ea0fb1ce0be39e6263ea2.128x128.png", + "subIcon": "sub_icons/weapon/prime_head_128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6fb", + "slug": "neo_t4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGaraPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T4 Relic", + "icon": "items/images/en/neo_t4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_t4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6fc", + "slug": "meso_t5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaraPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso T5 Relic", + "icon": "items/images/en/meso_t5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_t5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6fd", + "slug": "meso_z4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaraPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso Z4 Relic", + "icon": "items/images/en/meso_z4_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_z4_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6fe", + "slug": "neo_v10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGaraPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo V10 Relic", + "icon": "items/images/en/neo_v10_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_v10_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c6ff", + "slug": "gara_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaraPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gara Prime Blueprint", + "icon": "items/images/en/gara_prime_blueprint.e0359bcb2d3e747c46edd23083f39de8.png", + "thumb": "items/images/en/thumbs/gara_prime_blueprint.e0359bcb2d3e747c46edd23083f39de8.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c700", + "slug": "volnus_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PrimeVolnus/VolnusPrimeWeapon", + "tags": [ + "weapon", + "prime", + "set", + "melee" + ], + "i18n": { + "en": { + "name": "Volnus Prime Set", + "icon": "items/images/en/volnus_prime_set.61e00a9ff67ea0fb1ce0be39e6263ea2.png", + "thumb": "items/images/en/thumbs/volnus_prime_set.61e00a9ff67ea0fb1ce0be39e6263ea2.128x128.png" + } + } + }, + { + "id": "60ad4a1bf1904300d012c701", + "slug": "gara_prime_set", + "gameRef": "/Lotus/Powersuits/Glass/GaraPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Gara Prime Set", + "icon": "items/images/en/gara_prime_set.e0359bcb2d3e747c46edd23083f39de8.png", + "thumb": "items/images/en/thumbs/gara_prime_set.e0359bcb2d3e747c46edd23083f39de8.128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c702", + "slug": "gara_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaraPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gara Prime Neuroptics Blueprint", + "icon": "items/images/en/gara_prime_neuroptics.e0359bcb2d3e747c46edd23083f39de8.png", + "thumb": "items/images/en/thumbs/gara_prime_neuroptics.e0359bcb2d3e747c46edd23083f39de8.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c703", + "slug": "gara_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaraPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gara Prime Systems Blueprint", + "icon": "items/images/en/gara_prime_systems.e0359bcb2d3e747c46edd23083f39de8.png", + "thumb": "items/images/en/thumbs/gara_prime_systems.e0359bcb2d3e747c46edd23083f39de8.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c704", + "slug": "astilla_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AstillaPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Astilla Prime Blueprint", + "icon": "items/images/en/astilla_prime_blueprint.4bad71b95376c38d100a5d8caa581266.png", + "thumb": "items/images/en/thumbs/astilla_prime_blueprint.4bad71b95376c38d100a5d8caa581266.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c705", + "slug": "axi_n7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaraPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N7 Relic", + "icon": "items/images/en/axi_n7_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_n7_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c706", + "slug": "astilla_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AstillaPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Astilla Prime Receiver", + "icon": "items/images/en/astilla_prime_receiver.4bad71b95376c38d100a5d8caa581266.png", + "thumb": "items/images/en/thumbs/astilla_prime_receiver.4bad71b95376c38d100a5d8caa581266.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c707", + "slug": "astilla_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AstillaPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Astilla Prime Barrel", + "icon": "items/images/en/astilla_prime_barrel.4bad71b95376c38d100a5d8caa581266.png", + "thumb": "items/images/en/thumbs/astilla_prime_barrel.4bad71b95376c38d100a5d8caa581266.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c708", + "slug": "astilla_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeAstilla/AstillaPrimeWeapon", + "tags": [ + "weapon", + "prime", + "set", + "primary" + ], + "i18n": { + "en": { + "name": "Astilla Prime Set", + "icon": "items/images/en/astilla_prime_set.4bad71b95376c38d100a5d8caa581266.png", + "thumb": "items/images/en/thumbs/astilla_prime_set.4bad71b95376c38d100a5d8caa581266.128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c709", + "slug": "lith_a4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaraPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith A4 Relic", + "icon": "items/images/en/lith_a4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_a4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c70a", + "slug": "axi_i1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaraPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi I1 Relic", + "icon": "items/images/en/axi_i1_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_i1_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c70b", + "slug": "astilla_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AstillaPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Astilla Prime Stock", + "icon": "items/images/en/astilla_prime_stock.4bad71b95376c38d100a5d8caa581266.png", + "thumb": "items/images/en/thumbs/astilla_prime_stock.4bad71b95376c38d100a5d8caa581266.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "60ad4a1cf1904300d012c70c", + "slug": "volnus_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/VolnusPrimeBlueprint", + "tags": [ + "weapon", + "prime", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Volnus Prime Blueprint", + "icon": "items/images/en/volnus_prime_blueprint.61e00a9ff67ea0fb1ce0be39e6263ea2.png", + "thumb": "items/images/en/thumbs/volnus_prime_blueprint.61e00a9ff67ea0fb1ce0be39e6263ea2.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "60ad4a1df1904300d012c70d", + "slug": "neo_a5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGaraPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A5 Relic", + "icon": "items/images/en/neo_a5_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_a5_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "60ad4a1df1904300d012c70e", + "slug": "gara_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaraPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gara Prime Chassis Blueprint", + "icon": "items/images/en/gara_prime_chassis.e0359bcb2d3e747c46edd23083f39de8.png", + "thumb": "items/images/en/thumbs/gara_prime_chassis.e0359bcb2d3e747c46edd23083f39de8.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "60cca19052f60b004dfea04a", + "slug": "lith_g4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaraPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G4 Relic", + "icon": "items/images/en/lith_g4_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_g4_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "60cca19052f60b004dfea04b", + "slug": "repair_dispensary", + "gameRef": "/Lotus/Powersuits/Odalisk/OdaliskDispensaryAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "protea" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Repair Dispensary", + "icon": "items/images/en/repair_dispensary.45801ecbadeb1ed105c7322cab736dc2.png", + "thumb": "items/images/en/thumbs/repair_dispensary.45801ecbadeb1ed105c7322cab736dc2.128x128.png" + } + } + }, + { + "id": "60cca19052f60b004dfea04d", + "slug": "primed_tactical_pump", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponReloadSpeedModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Tactical Pump", + "icon": "items/images/en/primed_tactical_pump.eee08b75f81f2885d578e228448f75b2.png", + "thumb": "items/images/en/thumbs/primed_tactical_pump.eee08b75f81f2885d578e228448f75b2.128x128.png" + } + } + }, + { + "id": "60cca19052f60b004dfea04e", + "slug": "airburst_rounds", + "gameRef": "/Lotus/Powersuits/Tengu/TenguBurstAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "zephyr" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Airburst Rounds", + "icon": "items/images/en/airburst_rounds.91fb63fbc494c4cfbc99d2d4f5358b49.png", + "thumb": "items/images/en/thumbs/airburst_rounds.91fb63fbc494c4cfbc99d2d4f5358b49.128x128.png" + } + } + }, + { + "id": "60cca19152f60b004dfea04f", + "slug": "neo_d3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGaraPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D3 Relic", + "icon": "items/images/en/neo_d3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_d3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "60cca19152f60b004dfea050", + "slug": "fused_reservoir", + "gameRef": "/Lotus/Powersuits/Wisp/WispReservoirAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "wisp" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fused Reservoir", + "icon": "items/images/en/fused_reservoir.13910c19e5be465680397c59d2486047.png", + "thumb": "items/images/en/thumbs/fused_reservoir.13910c19e5be465680397c59d2486047.128x128.png" + } + } + }, + { + "id": "60cca19152f60b004dfea051", + "slug": "hearty_nourishment", + "gameRef": "/Lotus/Powersuits/Devourer/DevourerConsumeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "grendel" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Hearty Nourishment", + "icon": "items/images/en/hearty_nourishment.c6553554c1443c8bf0778ed714061871.png", + "thumb": "items/images/en/thumbs/hearty_nourishment.c6553554c1443c8bf0778ed714061871.128x128.png" + } + } + }, + { + "id": "60cca19152f60b004dfea052", + "slug": "axi_t7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaraPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T7 Relic", + "icon": "items/images/en/axi_t7_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t7_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "60df11f0169993009bbb0d11", + "slug": "prisma_machete", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/PrismaMachete", + "tags": [ + "melee", + "weapon" + ], + "i18n": { + "en": { + "name": "Prisma Machete", + "icon": "items/images/en/prisma_machete.077ffe0833496d83db56de828d5b45ec.png", + "thumb": "items/images/en/thumbs/prisma_machete.077ffe0833496d83db56de828d5b45ec.128x128.png" + } + } + }, + { + "id": "60df162816999300b9dd13c1", + "slug": "opticor_vandal", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpBFG/Vandal/VandalCrpBFG", + "tags": [ + "primary", + "weapon" + ], + "i18n": { + "en": { + "name": "Opticor Vandal", + "icon": "items/images/en/opticor_vandal.c01ce09e43ba41dae7478179ee3c229d.png", + "thumb": "items/images/en/thumbs/opticor_vandal.c01ce09e43ba41dae7478179ee3c229d.128x128.png" + } + } + }, + { + "id": "60e5b8fb4794450053e9993d", + "slug": "galvanized_hell", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponFireIterationsSPMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Hell", + "icon": "items/images/en/galvanized_hell.b411e995f8116a7ac6adbce1128b7689.png", + "thumb": "items/images/en/thumbs/galvanized_hell.b411e995f8116a7ac6adbce1128b7689.128x128.png" + } + } + }, + { + "id": "60e5b8fc4794450053e9993e", + "slug": "malicious_code", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionTerrifyMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "i18n": { + "en": { + "name": "Malicious Code", + "icon": "items/images/en/malicious_code.4dd2ce62a4ad80921eec32295055d406.png", + "thumb": "items/images/en/thumbs/malicious_code.4dd2ce62a4ad80921eec32295055d406.128x128.png" + } + } + }, + { + "id": "60e5b8fc4794450053e9993f", + "slug": "cela_bracket_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartLegsABlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Cela Bracket Blueprint", + "icon": "items/images/en/cela_bracket_blueprint.b2b33f61627ad4068822a84b8231e1ba.png", + "thumb": "items/images/en/thumbs/cela_bracket_blueprint.b2b33f61627ad4068822a84b8231e1ba.128x128.png" + } + } + }, + { + "id": "60e5b8fc4794450053e99940", + "slug": "evasive_denial", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetEvasionPrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Evasive Denial", + "icon": "items/images/en/evasive_denial.b72d1c6306e9491932392eb59abe7310.png", + "thumb": "items/images/en/thumbs/evasive_denial.b72d1c6306e9491932392eb59abe7310.128x128.png" + } + } + }, + { + "id": "60e5b8fc4794450053e99941", + "slug": "galvanized_diffusion", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponFireIterationsSPMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Diffusion", + "icon": "items/images/en/galvanized_diffusion.95f3194b73e688fda9383851b7f09d63.png", + "thumb": "items/images/en/thumbs/galvanized_diffusion.95f3194b73e688fda9383851b7f09d63.128x128.png" + } + } + }, + { + "id": "60e5b8fc4794450053e99942", + "slug": "swift_mercy", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/SwiftExecuteMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "i18n": { + "en": { + "name": "Swift Mercy", + "icon": "items/images/en/swift_mercy.9a76af5896526d70d79e6ac4ba2f68bf.png", + "thumb": "items/images/en/thumbs/swift_mercy.9a76af5896526d70d79e6ac4ba2f68bf.128x128.png" + } + } + }, + { + "id": "60e5b8fc4794450053e99943", + "slug": "wanz_stabilizer_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartTailABlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Wanz Stabilizer Blueprint", + "icon": "items/images/en/wanz_stabilizer_blueprint.29e04868bcda45a036f075012bd49bc0.png", + "thumb": "items/images/en/thumbs/wanz_stabilizer_blueprint.29e04868bcda45a036f075012bd49bc0.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e99944", + "slug": "galvanized_aptitude", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponStatusChanceSPMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Aptitude", + "icon": "items/images/en/galvanized_aptitude.4efa17fe5ff1b28b63d47f786a4680ef.png", + "thumb": "items/images/en/thumbs/galvanized_aptitude.4efa17fe5ff1b28b63d47f786a4680ef.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e99945", + "slug": "zubb_bracket_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartLegsCBlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Zubb Bracket Blueprint", + "icon": "items/images/en/zubb_bracket_blueprint.ab48daa9caa1e0779d86ae8a6674edd2.png", + "thumb": "items/images/en/thumbs/zubb_bracket_blueprint.ab48daa9caa1e0779d86ae8a6674edd2.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e99946", + "slug": "hec_hound_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartHeadCBlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Hec Hound Blueprint", + "icon": "items/images/en/hec_hound_blueprint.159543a78311e20aa3ae5142c4f54a4b.png", + "thumb": "items/images/en/thumbs/hec_hound_blueprint.159543a78311e20aa3ae5142c4f54a4b.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e99947", + "slug": "galvanized_scope", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/CritChanceWhileAimingRifleSPMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Scope", + "icon": "items/images/en/galvanized_scope.40e96c1ddd7156854a1d5fc84ab986ce.png", + "thumb": "items/images/en/thumbs/galvanized_scope.40e96c1ddd7156854a1d5fc84ab986ce.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e99948", + "slug": "galvanized_acceleration", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponProjectileSpeedSPMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Acceleration", + "icon": "items/images/en/galvanized_acceleration.940aef6227855f74835eaa62c0671fa1.png", + "thumb": "items/images/en/thumbs/galvanized_acceleration.940aef6227855f74835eaa62c0671fa1.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e99949", + "slug": "power_drain", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionDrainPowerMod", + "tags": [ + "mod", + "uncommon", + "parazon" + ], + "i18n": { + "en": { + "name": "Power Drain", + "icon": "items/images/en/power_drain.228c179d1f62f564826c09ab6c5abd48.png", + "thumb": "items/images/en/thumbs/power_drain.228c179d1f62f564826c09ab6c5abd48.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e9994a", + "slug": "counterbalance", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponRecoilReductionMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Counterbalance", + "icon": "items/images/en/counterbalance.d6eea5cf44dc7f219e1ae1af20563510.png", + "thumb": "items/images/en/thumbs/counterbalance.d6eea5cf44dc7f219e1ae1af20563510.128x128.png" + } + } + }, + { + "id": "60e5b8fd4794450053e9994b", + "slug": "hinta_stabilizer", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetParts/ZanukaPetPartTailB", + "tags": [ + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Hinta Stabilizer", + "icon": "items/images/en/hinta_stabilizer.788fd43cb395faacf145f8ed45aad5a1.png", + "thumb": "items/images/en/thumbs/hinta_stabilizer.788fd43cb395faacf145f8ed45aad5a1.128x128.png" + } + } + }, + { + "id": "60e5b8fe4794450053e9994c", + "slug": "repo_audit", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetDisarmPulsePrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Repo Audit", + "icon": "items/images/en/repo_audit.2ec213871337071fee003cce84c8a64c.png", + "thumb": "items/images/en/thumbs/repo_audit.2ec213871337071fee003cce84c8a64c.128x128.png" + } + } + }, + { + "id": "60e5b8fe4794450053e9994d", + "slug": "galvanized_crosshairs", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/CritChanceWhileAimingPistolSPMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Crosshairs", + "icon": "items/images/en/galvanized_crosshairs.9366d80f8e8db9216eb77d9975dab06c.png", + "thumb": "items/images/en/thumbs/galvanized_crosshairs.9366d80f8e8db9216eb77d9975dab06c.128x128.png" + } + } + }, + { + "id": "60e5b8fe4794450053e9994e", + "slug": "garmr_core_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartBodyBBlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Garmr Core Blueprint", + "icon": "items/images/en/garmr_core_blueprint.fe6c29c36cade7c41919bcfd5d32557a.png", + "thumb": "items/images/en/thumbs/garmr_core_blueprint.fe6c29c36cade7c41919bcfd5d32557a.128x128.png" + } + } + }, + { + "id": "60e5b8fe4794450053e9994f", + "slug": "focused_prospectus", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetMegaLaserPrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Focused Prospectus", + "icon": "items/images/en/focused_prospectus.951f51ad44c948f1d53073dc200bea03.png", + "thumb": "items/images/en/thumbs/focused_prospectus.951f51ad44c948f1d53073dc200bea03.128x128.png" + } + } + }, + { + "id": "60e5b8fe4794450053e99950", + "slug": "dorma_hound_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartHeadABlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Dorma Hound Blueprint", + "icon": "items/images/en/dorma_hound_blueprint.5f0f35b851d0e88a1668374a2c164077.png", + "thumb": "items/images/en/thumbs/dorma_hound_blueprint.5f0f35b851d0e88a1668374a2c164077.128x128.png" + } + } + }, + { + "id": "60e5b8fe4794450053e99951", + "slug": "hard_reset", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Assassin/OnExecutionReviveCompanionMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "i18n": { + "en": { + "name": "Hard Reset", + "icon": "items/images/en/hard_reset.b0d53f38119f05a0b6f7e4cb3723bad8.png", + "thumb": "items/images/en/thumbs/hard_reset.b0d53f38119f05a0b6f7e4cb3723bad8.128x128.png" + } + } + }, + { + "id": "60e5b8fe4794450053e99952", + "slug": "bhaira_hound_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartHeadBBlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Bhaira Hound Blueprint", + "icon": "items/images/en/bhaira_hound_blueprint.43e52dbfdceae31a093c03087aa2749f.png", + "thumb": "items/images/en/thumbs/bhaira_hound_blueprint.43e52dbfdceae31a093c03087aa2749f.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e99953", + "slug": "galvanized_shot", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponStatusChanceSPMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Shot", + "icon": "items/images/en/galvanized_shot.0ddad1d822cf2b02257890bdb6f81fdd.png", + "thumb": "items/images/en/thumbs/galvanized_shot.0ddad1d822cf2b02257890bdb6f81fdd.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e99954", + "slug": "reflex_denial", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetMagneticRepulsePrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Reflex Denial", + "icon": "items/images/en/reflex_denial.77e47267a53294f95a2d66c592e7d69e.png", + "thumb": "items/images/en/thumbs/reflex_denial.77e47267a53294f95a2d66c592e7d69e.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e99955", + "slug": "adlet_core_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartBodyABlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Adlet Core Blueprint", + "icon": "items/images/en/adlet_core_blueprint.88651365af6eb6c11fb413c531b60b1a.png", + "thumb": "items/images/en/thumbs/adlet_core_blueprint.88651365af6eb6c11fb413c531b60b1a.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e99956", + "slug": "aerial_prospectus", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetPhotonStrikePrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Aerial Prospectus", + "icon": "items/images/en/aerial_prospectus.25ea36ce137b4e8f386e9a42eb6451bd.png", + "thumb": "items/images/en/thumbs/aerial_prospectus.25ea36ce137b4e8f386e9a42eb6451bd.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e99957", + "slug": "synergized_prospectus", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetTeslaShotPrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Synergized Prospectus", + "icon": "items/images/en/synergized_prospectus.561ff3bdd2f876c1a260355ca566047f.png", + "thumb": "items/images/en/thumbs/synergized_prospectus.561ff3bdd2f876c1a260355ca566047f.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e99958", + "slug": "frak_stabilizer_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartTailCBlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Frak Stabilizer Blueprint", + "icon": "items/images/en/frak_stabilizer_blueprint.e9f586e238d53a401a522d8a4d85999b.png", + "thumb": "items/images/en/thumbs/frak_stabilizer_blueprint.e9f586e238d53a401a522d8a4d85999b.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e99959", + "slug": "raiju_core_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartBodyCBlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Raiju Core Blueprint", + "icon": "items/images/en/raiju_core_blueprint.cee762f4a8cca77942a542d6720bf8e1.png", + "thumb": "items/images/en/thumbs/raiju_core_blueprint.cee762f4a8cca77942a542d6720bf8e1.128x128.png" + } + } + }, + { + "id": "60e5b8ff4794450053e9995a", + "slug": "firewall", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Cipher/DamageReductionOnHackMod", + "tags": [ + "mod", + "uncommon", + "parazon" + ], + "i18n": { + "en": { + "name": "Firewall", + "icon": "items/images/en/firewall.36c6514f61606df11d2385138b5a9f7b.png", + "thumb": "items/images/en/thumbs/firewall.36c6514f61606df11d2385138b5a9f7b.128x128.png" + } + } + }, + { + "id": "60e5b9004794450053e9995b", + "slug": "galvanized_savvy", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponStatusChanceSPMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Savvy", + "icon": "items/images/en/galvanized_savvy.9ed8a3cd9bcddc9b48ca6a28c5e56682.png", + "thumb": "items/images/en/thumbs/galvanized_savvy.9ed8a3cd9bcddc9b48ca6a28c5e56682.128x128.png" + } + } + }, + { + "id": "60e5b9004794450053e9995c", + "slug": "urga_bracket_blueprint", + "gameRef": "/Lotus/Types/Recipes/ZanukaPetParts/ZanukaPetPartLegsBBlueprint", + "tags": [ + "blueprint", + "secondary", + "hound" + ], + "i18n": { + "en": { + "name": "Urga Bracket Blueprint", + "icon": "items/images/en/urga_bracket_blueprint.5876bce02551ba77e7920f7e7c7092de.png", + "thumb": "items/images/en/thumbs/urga_bracket_blueprint.5876bce02551ba77e7920f7e7c7092de.128x128.png" + } + } + }, + { + "id": "60e5b9004794450053e9995d", + "slug": "null_audit", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetStealEximusPrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Null Audit", + "icon": "items/images/en/null_audit.92612ee891efb1a2494f0a975b1a5940.png", + "thumb": "items/images/en/thumbs/null_audit.92612ee891efb1a2494f0a975b1a5940.128x128.png" + } + } + }, + { + "id": "60e5b9004794450053e9995e", + "slug": "oull", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/ImmortalWildcardMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Oull", + "icon": "items/images/en/oull.5e6a9b7cd07dfa6cd299006523c3f802.png", + "thumb": "items/images/en/thumbs/oull.5e6a9b7cd07dfa6cd299006523c3f802.128x128.png" + } + } + }, + { + "id": "60e5b9004794450053e9995f", + "slug": "diversified_denial", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetClonePrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Diversified Denial", + "icon": "items/images/en/diversified_denial.eacd7fdaeb67e4dbece6fa7b81c4bf0f.png", + "thumb": "items/images/en/thumbs/diversified_denial.eacd7fdaeb67e4dbece6fa7b81c4bf0f.128x128.png" + } + } + }, + { + "id": "60e5b9004794450053e99960", + "slug": "equilibrium_audit", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPrecepts/ZanukaPetAntiMeleePrecept", + "tags": [ + "mod", + "rare", + "sentinel", + "hound" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Equilibrium Audit", + "icon": "items/images/en/equilibrium_audit.38c489ece2eb11b1be3f60602a9b56b0.png", + "thumb": "items/images/en/thumbs/equilibrium_audit.38c489ece2eb11b1be3f60602a9b56b0.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99961", + "slug": "galvanized_chamber", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFireIterationsSPMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Chamber", + "icon": "items/images/en/galvanized_chamber.d33b025e74a9afe9a90404ec8308df63.png", + "thumb": "items/images/en/thumbs/galvanized_chamber.d33b025e74a9afe9a90404ec8308df63.128x128.png" + } + } + }, + { + "id": "60e70f78479445008f27256b", + "slug": "new_loka_combat_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/NLCombatEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "New Loka Combat Emote", + "icon": "items/images/en/new_loka_combat_emote.e69660d40c398fa97f6436612fa2fd05.png", + "thumb": "items/images/en/thumbs/new_loka_combat_emote.e69660d40c398fa97f6436612fa2fd05.128x128.png" + } + } + }, + { + "id": "60e70f78479445008f27256c", + "slug": "cephalon_suda_piloting_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/CSPilotingEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Cephalon Suda Piloting Emote", + "icon": "items/images/en/cephalon_suda_piloting_emote.eb25f3771144d9f9c4d7381c8b33d386.png", + "thumb": "items/images/en/thumbs/cephalon_suda_piloting_emote.eb25f3771144d9f9c4d7381c8b33d386.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f27256d", + "slug": "red_veil_chest_piece", + "gameRef": "/Lotus/Upgrades/Skins/Armor/RedVeilArmor/RedVeilCArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Red Veil Chest Piece", + "icon": "items/images/en/red_veil_chest_piece.0cedf1ecd264d43ae420c5096cbdb8a8.png", + "thumb": "items/images/en/thumbs/red_veil_chest_piece.0cedf1ecd264d43ae420c5096cbdb8a8.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f27256e", + "slug": "perrin_piloting_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/PSPilotingEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Perrin Piloting Emote", + "icon": "items/images/en/perrin_piloting_emote.a099eab4723de418d41bf1db1a478d3f.png", + "thumb": "items/images/en/thumbs/perrin_piloting_emote.a099eab4723de418d41bf1db1a478d3f.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f27256f", + "slug": "suda_chest_piece", + "gameRef": "/Lotus/Upgrades/Skins/Armor/CephArmor/CephArmorC", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Suda Chest Piece", + "icon": "items/images/en/suda_chest_piece.194d7c17a06f68ff403a949d3085e289.png", + "thumb": "items/images/en/thumbs/suda_chest_piece.194d7c17a06f68ff403a949d3085e289.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f272570", + "slug": "arbiters_piloting_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/AHPilotingEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Arbiters Piloting Emote", + "icon": "items/images/en/arbiters_piloting_emote.d63ff0680b57af6c8cfb21d699374b9f.png", + "thumb": "items/images/en/thumbs/arbiters_piloting_emote.d63ff0680b57af6c8cfb21d699374b9f.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f272571", + "slug": "red_veil_knee_guards", + "gameRef": "/Lotus/Upgrades/Skins/Armor/RedVeilArmor/RedVeilLArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Red Veil Knee Guards", + "icon": "items/images/en/red_veil_knee_guards.81e51f8f477594964c832ee03908f549.png", + "thumb": "items/images/en/thumbs/red_veil_knee_guards.81e51f8f477594964c832ee03908f549.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f272572", + "slug": "secondary_merciless", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryDamageOnKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Merciless", + "icon": "items/images/en/secondary_merciless.3269867879aabaa2cb4c47af6302ea4e.png", + "thumb": "items/images/en/thumbs/secondary_merciless.3269867879aabaa2cb4c47af6302ea4e.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f272573", + "slug": "primary_merciless", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryDamageOnKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Merciless", + "icon": "items/images/en/primary_merciless.baca700cca91762be6465c5f52584fa7.png", + "thumb": "items/images/en/thumbs/primary_merciless.baca700cca91762be6465c5f52584fa7.128x128.png" + } + } + }, + { + "id": "60e70f79479445008f272574", + "slug": "meridian_chest_plate", + "gameRef": "/Lotus/Upgrades/Skins/Armor/GrnSteelMeridianArmor/GrnSteelMeridianCArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Meridian Chest Plate", + "icon": "items/images/en/meridian_chest_plate.cfd18c36942cccc4c759369e348090d3.png", + "thumb": "items/images/en/thumbs/meridian_chest_plate.cfd18c36942cccc4c759369e348090d3.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f272575", + "slug": "meridian_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Meridian Armor Set", + "icon": "items/images/en/meridian_armor_set.cd1d665185d07b8996c4f4d6b6c1aa4e.webp", + "thumb": "items/images/en/thumbs/meridian_armor_set.cd1d665185d07b8996c4f4d6b6c1aa4e.128x128.webp" + } + } + }, + { + "id": "60e70f7a479445008f272576", + "slug": "meridian_arm_spurs", + "gameRef": "/Lotus/Upgrades/Skins/Armor/GrnSteelMeridianArmor/GrnSteelMeridianAArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Meridian Arm Spurs", + "icon": "items/images/en/meridian_arm_spurs.539a328fd70059e66ee74c8decec6b36.png", + "thumb": "items/images/en/thumbs/meridian_arm_spurs.539a328fd70059e66ee74c8decec6b36.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f272577", + "slug": "cephalon_suda_gunnery_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/CSGunneryEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Cephalon Suda Gunnery Emote", + "icon": "items/images/en/cephalon_suda_gunnery_emote.6f2addd04f36d411e4eb9ced2a22f10e.png", + "thumb": "items/images/en/thumbs/cephalon_suda_gunnery_emote.6f2addd04f36d411e4eb9ced2a22f10e.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f272578", + "slug": "solaris_leg_spurs", + "gameRef": "/Lotus/Upgrades/Skins/Armor/SolarisUnitedArmor/SolarisUnitedLArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Solaris Leg Spurs", + "icon": "items/images/en/solaris_leg_spurs.c966ea8e3ab6554916129ac0cb540964.png", + "thumb": "items/images/en/thumbs/solaris_leg_spurs.c966ea8e3ab6554916129ac0cb540964.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f272579", + "slug": "lokan_knee_spurs", + "gameRef": "/Lotus/Upgrades/Skins/Armor/NLokaArmor/NLokaLArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Lokan Knee Spurs", + "icon": "items/images/en/lokan_knee_spurs.8a7c25d472af612432b65790c6fec05a.png", + "thumb": "items/images/en/thumbs/lokan_knee_spurs.8a7c25d472af612432b65790c6fec05a.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f27257a", + "slug": "arbiters_combat_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/AHCombatEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Arbiters Combat Emote", + "icon": "items/images/en/arbiters_combat_emote.4c3ad2b674ec8aaac8aff78b4c238a19.png", + "thumb": "items/images/en/thumbs/arbiters_combat_emote.4c3ad2b674ec8aaac8aff78b4c238a19.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f27257b", + "slug": "steel_meridian_combat_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/SMCombatEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Steel Meridian Combat Emote", + "icon": "items/images/en/steel_meridian_combat_emote.96715bf1a467fae9a0173adf2dca39f0.png", + "thumb": "items/images/en/thumbs/steel_meridian_combat_emote.96715bf1a467fae9a0173adf2dca39f0.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f27257c", + "slug": "steel_meridian_piloting_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/SMPilotingEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Steel Meridian Piloting Emote", + "icon": "items/images/en/steel_meridian_piloting_emote.e044b94c8dac6e9e34e464bf3ec2de07.png", + "thumb": "items/images/en/thumbs/steel_meridian_piloting_emote.e044b94c8dac6e9e34e464bf3ec2de07.128x128.png" + } + } + }, + { + "id": "60e70f7a479445008f27257d", + "slug": "secondary_dexterity", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryDamageOnMeleeKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Dexterity", + "icon": "items/images/en/secondary_dexterity.8fa0cf692f8f0e2f900e4175c5613460.png", + "thumb": "items/images/en/thumbs/secondary_dexterity.8fa0cf692f8f0e2f900e4175c5613460.128x128.png" + } + } + }, + { + "id": "60e70f7b479445008f27257e", + "slug": "lokan_arm_plates", + "gameRef": "/Lotus/Upgrades/Skins/Armor/NLokaArmor/NLokaAArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Lokan Arm Plates", + "icon": "items/images/en/lokan_arm_plates.2f95530445f9c3c5d696ac5b5a39fd73.png", + "thumb": "items/images/en/thumbs/lokan_arm_plates.2f95530445f9c3c5d696ac5b5a39fd73.128x128.png" + } + } + }, + { + "id": "60e70f7b479445008f27257f", + "slug": "suda_leg_spurs", + "gameRef": "/Lotus/Upgrades/Skins/Armor/CephArmor/CephArmorL", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Suda Leg Spurs", + "icon": "items/images/en/suda_leg_spurs.045eb759600d9d6977ca121f39bf9026.png", + "thumb": "items/images/en/thumbs/suda_leg_spurs.045eb759600d9d6977ca121f39bf9026.128x128.png" + } + } + }, + { + "id": "60e70f7b479445008f272580", + "slug": "steel_meridian_endurance_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/SMSurvivabilityEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Steel Meridian Endurance Emote", + "icon": "items/images/en/steel_meridian_endurance_emote.741528d08c2c142e4761b97fa57daa5e.png", + "thumb": "items/images/en/thumbs/steel_meridian_endurance_emote.741528d08c2c142e4761b97fa57daa5e.128x128.png" + } + } + }, + { + "id": "60e70f7b479445008f272581", + "slug": "perrin_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Perrin Armor Set", + "icon": "items/images/en/perrin_armor_set.dba2300bcb77e22365ec94eb0ef1a36b.webp", + "thumb": "items/images/en/thumbs/perrin_armor_set.dba2300bcb77e22365ec94eb0ef1a36b.128x128.webp" + } + } + }, + { + "id": "60e70f7b479445008f272582", + "slug": "ostron_chest_guard", + "gameRef": "/Lotus/Upgrades/Skins/Armor/OstronCrewArmor/OstronCrewArmorC", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Ostron Chest Guard", + "icon": "items/images/en/ostron_chest_guard.aa95b7acc34aa43b0bd0c43fba0336c9.png", + "thumb": "items/images/en/thumbs/ostron_chest_guard.aa95b7acc34aa43b0bd0c43fba0336c9.128x128.png" + } + } + }, + { + "id": "60e70f7b479445008f272583", + "slug": "cephalon_suda_endurance_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/CSSurvivabilityEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Cephalon Suda Endurance Emote", + "icon": "items/images/en/cephalon_suda_endurance_emote.f9853af4ccec89cdc35e4f18a442e24e.png", + "thumb": "items/images/en/thumbs/cephalon_suda_endurance_emote.f9853af4ccec89cdc35e4f18a442e24e.128x128.png" + } + } + }, + { + "id": "60e70f7c479445008f272584", + "slug": "perrin_leg_guards", + "gameRef": "/Lotus/Upgrades/Skins/Armor/PerrinSequenceArmor/PerrinSequenceArmorL", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Perrin Leg Guards", + "icon": "items/images/en/perrin_leg_guards.a128743cda781f66a61f8da2026f8ff1.png", + "thumb": "items/images/en/thumbs/perrin_leg_guards.a128743cda781f66a61f8da2026f8ff1.128x128.png" + } + } + }, + { + "id": "60e70f7c479445008f272585", + "slug": "hexis_chest_plate", + "gameRef": "/Lotus/Upgrades/Skins/Armor/ArbiterOfHexisArmor/ArbiterOfHexisArmorC", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Hexis Chest Plate", + "icon": "items/images/en/hexis_chest_plate.91ded728996ed7166d3578801fff614d.png", + "thumb": "items/images/en/thumbs/hexis_chest_plate.91ded728996ed7166d3578801fff614d.128x128.png" + } + } + }, + { + "id": "60e70f7c479445008f272586", + "slug": "suda_arm_spurs", + "gameRef": "/Lotus/Upgrades/Skins/Armor/CephArmor/CephArmorA", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Suda Arm Spurs", + "icon": "items/images/en/suda_arm_spurs.11721de60cad9380b494606c8e55a195.png", + "thumb": "items/images/en/thumbs/suda_arm_spurs.11721de60cad9380b494606c8e55a195.128x128.png" + } + } + }, + { + "id": "60e70f7c479445008f272587", + "slug": "suda_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Suda Armor Set", + "icon": "items/images/en/suda_armor_set.9bf5ef65cf73d16a9ba34f5495e51d3b.webp", + "thumb": "items/images/en/thumbs/suda_armor_set.9bf5ef65cf73d16a9ba34f5495e51d3b.128x128.webp" + } + } + }, + { + "id": "60e70f7c479445008f272588", + "slug": "perrin_chest_piece", + "gameRef": "/Lotus/Upgrades/Skins/Armor/PerrinSequenceArmor/PerrinSequenceArmorC", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Perrin Chest Piece", + "icon": "items/images/en/perrin_chest_piece.5b1c0b4eb019648f9c930714f94ca496.png", + "thumb": "items/images/en/thumbs/perrin_chest_piece.5b1c0b4eb019648f9c930714f94ca496.128x128.png" + } + } + }, + { + "id": "60e70f7d479445008f272589", + "slug": "perrin_endurance_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/PSSurvivabilityEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Perrin Endurance Emote", + "icon": "items/images/en/perrin_endurance_emote.3fc9dfb6f03017ca6070fef94518ecb4.png", + "thumb": "items/images/en/thumbs/perrin_endurance_emote.3fc9dfb6f03017ca6070fef94518ecb4.128x128.png" + } + } + }, + { + "id": "60e70f7d479445008f27258a", + "slug": "hexis_arm_plates", + "gameRef": "/Lotus/Upgrades/Skins/Armor/ArbiterOfHexisArmor/ArbiterOfHexisArmorA", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Hexis Arm Plates", + "icon": "items/images/en/hexis_arm_plates.aaf6be0c9918abf318d0c9f819333366.png", + "thumb": "items/images/en/thumbs/hexis_arm_plates.aaf6be0c9918abf318d0c9f819333366.128x128.png" + } + } + }, + { + "id": "60e70f7d479445008f27258b", + "slug": "solaris_chest_marker", + "gameRef": "/Lotus/Upgrades/Skins/Armor/SolarisUnitedArmor/SolarisUnitedCArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Solaris Chest Marker", + "icon": "items/images/en/solaris_chest_marker.645812f0e574141d6793983a23e7694f.png", + "thumb": "items/images/en/thumbs/solaris_chest_marker.645812f0e574141d6793983a23e7694f.128x128.png" + } + } + }, + { + "id": "60e70f7d479445008f27258c", + "slug": "solaris_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Solaris Armor Set", + "icon": "items/images/en/solaris_armor_set.8cfce4ab2aadc626c059ff60110cb081.webp", + "thumb": "items/images/en/thumbs/solaris_armor_set.8cfce4ab2aadc626c059ff60110cb081.128x128.webp" + } + } + }, + { + "id": "60e70f7d479445008f27258d", + "slug": "red_veil_engineering_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/RVEngineeringEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Red Veil Engineering Emote", + "icon": "items/images/en/red_veil_engineering_emote.5a55c653dbb51c6aab0e26bb5bd4d862.png", + "thumb": "items/images/en/thumbs/red_veil_engineering_emote.5a55c653dbb51c6aab0e26bb5bd4d862.128x128.png" + } + } + }, + { + "id": "60e70f7d479445008f27258e", + "slug": "new_loka_engineering_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/NLEngineeringEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "New Loka Engineering Emote", + "icon": "items/images/en/new_loka_engineering_emote.fb5ce487aa7da897b62301112e288f1c.png", + "thumb": "items/images/en/thumbs/new_loka_engineering_emote.fb5ce487aa7da897b62301112e288f1c.128x128.png" + } + } + }, + { + "id": "60e70f7d479445008f27258f", + "slug": "red_veil_arm_insignia", + "gameRef": "/Lotus/Upgrades/Skins/Armor/RedVeilArmor/RedVeilAArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Red Veil Arm Insignia", + "icon": "items/images/en/red_veil_arm_insignia.42c61941b3a7e8aba62db752a3ede4ff.png", + "thumb": "items/images/en/thumbs/red_veil_arm_insignia.42c61941b3a7e8aba62db752a3ede4ff.128x128.png" + } + } + }, + { + "id": "60e70f7d479445008f272590", + "slug": "lokan_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Lokan Armor Set", + "icon": "items/images/en/lokan_armor_set.7a223687bebf9fbf973aac719847ce3c.webp", + "thumb": "items/images/en/thumbs/lokan_armor_set.7a223687bebf9fbf973aac719847ce3c.128x128.webp" + } + } + }, + { + "id": "60e70f7e479445008f272591", + "slug": "new_loka_piloting_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/NLPilotingEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "New Loka Piloting Emote", + "icon": "items/images/en/new_loka_piloting_emote.ab06959ebfdb4b68477380418d2322e0.png", + "thumb": "items/images/en/thumbs/new_loka_piloting_emote.ab06959ebfdb4b68477380418d2322e0.128x128.png" + } + } + }, + { + "id": "60e70f7e479445008f272592", + "slug": "solaris_arm_guards", + "gameRef": "/Lotus/Upgrades/Skins/Armor/SolarisUnitedArmor/SolarisUnitedAArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Solaris Arm Guards", + "icon": "items/images/en/solaris_arm_guards.3bfe209e892067b37b8870c742867b14.png", + "thumb": "items/images/en/thumbs/solaris_arm_guards.3bfe209e892067b37b8870c742867b14.128x128.png" + } + } + }, + { + "id": "60e70f7e479445008f272593", + "slug": "arbiters_engineering_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/AHEngineeringEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Arbiters Engineering Emote", + "icon": "items/images/en/arbiters_engineering_emote.03f12e3b2ced32fef8293e5af0b1422b.png", + "thumb": "items/images/en/thumbs/arbiters_engineering_emote.03f12e3b2ced32fef8293e5af0b1422b.128x128.png" + } + } + }, + { + "id": "60e70f7e479445008f272594", + "slug": "ostron_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Ostron Armor Set", + "icon": "items/images/en/ostron_armor_set.8cfce4ab2aadc626c059ff60110cb081.webp", + "thumb": "items/images/en/thumbs/ostron_armor_set.8cfce4ab2aadc626c059ff60110cb081.128x128.webp" + } + } + }, + { + "id": "60e70f7e479445008f272595", + "slug": "perrin_arm_guards", + "gameRef": "/Lotus/Upgrades/Skins/Armor/PerrinSequenceArmor/PerrinSequenceArmorA", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Perrin Arm Guards", + "icon": "items/images/en/perrin_arm_guards.f737ca539ee7cd3a68720debdea92336.png", + "thumb": "items/images/en/thumbs/perrin_arm_guards.f737ca539ee7cd3a68720debdea92336.128x128.png" + } + } + }, + { + "id": "60e70f7e479445008f272596", + "slug": "lokan_chest_piece", + "gameRef": "/Lotus/Upgrades/Skins/Armor/NLokaArmor/NLokaCArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Lokan Chest Piece", + "icon": "items/images/en/lokan_chest_piece.6bc7f18d86eeb472bf20f0f708bd7ff1.png", + "thumb": "items/images/en/thumbs/lokan_chest_piece.6bc7f18d86eeb472bf20f0f708bd7ff1.128x128.png" + } + } + }, + { + "id": "60e70f7e479445008f272597", + "slug": "hexis_spurs", + "gameRef": "/Lotus/Upgrades/Skins/Armor/ArbiterOfHexisArmor/ArbiterOfHexisArmorL", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Hexis Spurs", + "icon": "items/images/en/hexis_spurs.052d37e05fd10c42e1f684aa4a082c42.png", + "thumb": "items/images/en/thumbs/hexis_spurs.052d37e05fd10c42e1f684aa4a082c42.128x128.png" + } + } + }, + { + "id": "60e70f7e479445008f272598", + "slug": "cephalon_suda_engineering_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/CSEngineeringEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Cephalon Suda Engineering Emote", + "icon": "items/images/en/cephalon_suda_engineering_emote.411720fbb47cd60a3633ccb2c61c2a88.png", + "thumb": "items/images/en/thumbs/cephalon_suda_engineering_emote.411720fbb47cd60a3633ccb2c61c2a88.128x128.png" + } + } + }, + { + "id": "60e70f7f479445008f272599", + "slug": "hexis_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Hexis Armor Set", + "icon": "items/images/en/hexis_armor_set.cf3f7e3ad665aee1b47dceb5ce703e8a.webp", + "thumb": "items/images/en/thumbs/hexis_armor_set.cf3f7e3ad665aee1b47dceb5ce703e8a.128x128.webp" + } + } + }, + { + "id": "60e70f7f479445008f27259a", + "slug": "arbiters_gunnery_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/AHGunneryEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Arbiters Gunnery Emote", + "icon": "items/images/en/arbiters_gunnery_emote.d7aa8c3e9b7bc58ef19bbbb26360a42c.png", + "thumb": "items/images/en/thumbs/arbiters_gunnery_emote.d7aa8c3e9b7bc58ef19bbbb26360a42c.128x128.png" + } + } + }, + { + "id": "60e70f7f479445008f27259b", + "slug": "new_loka_endurance_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/NLSurvivabilityEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "New Loka Endurance Emote", + "icon": "items/images/en/new_loka_endurance_emote.5981303031cf8b2bcd19ffbd7faf85e6.png", + "thumb": "items/images/en/thumbs/new_loka_endurance_emote.5981303031cf8b2bcd19ffbd7faf85e6.128x128.png" + } + } + }, + { + "id": "60e70f7f479445008f27259c", + "slug": "arbiters_endurance_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/AHSurvivabilityEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Arbiters Endurance Emote", + "icon": "items/images/en/arbiters_endurance_emote.d2de419a9966c40ed2184371897351f8.png", + "thumb": "items/images/en/thumbs/arbiters_endurance_emote.d2de419a9966c40ed2184371897351f8.128x128.png" + } + } + }, + { + "id": "60e70f7f479445008f27259d", + "slug": "secondary_deadhead", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryDamageOnNoMelee", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Deadhead", + "icon": "items/images/en/secondary_deadhead.c688ab21ab8b336bce4bc4467a3e7010.png", + "thumb": "items/images/en/thumbs/secondary_deadhead.c688ab21ab8b336bce4bc4467a3e7010.128x128.png" + } + } + }, + { + "id": "60e70f7f479445008f27259e", + "slug": "steel_meridian_gunnery_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/SMGunneryEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Steel Meridian Gunnery Emote", + "icon": "items/images/en/steel_meridian_gunnery_emote.7aaec34224506d2d8ac21c3dbcabfd83.png", + "thumb": "items/images/en/thumbs/steel_meridian_gunnery_emote.7aaec34224506d2d8ac21c3dbcabfd83.128x128.png" + } + } + }, + { + "id": "60e70f7f479445008f27259f", + "slug": "ostron_leg_guards", + "gameRef": "/Lotus/Upgrades/Skins/Armor/OstronCrewArmor/OstronCrewArmorL", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Ostron Leg Guards", + "icon": "items/images/en/ostron_leg_guards.7f5c6e196d90b41b1eb6a1fde6678985.png", + "thumb": "items/images/en/thumbs/ostron_leg_guards.7f5c6e196d90b41b1eb6a1fde6678985.128x128.png" + } + } + }, + { + "id": "60e70f80479445008f2725a0", + "slug": "meridian_leg_spurs", + "gameRef": "/Lotus/Upgrades/Skins/Armor/GrnSteelMeridianArmor/GrnSteelMeridianLArmor", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Meridian Leg Spurs", + "icon": "items/images/en/meridian_leg_spurs.78e2fe85210a73fe12bbcad6629ac2ec.png", + "thumb": "items/images/en/thumbs/meridian_leg_spurs.78e2fe85210a73fe12bbcad6629ac2ec.128x128.png" + } + } + }, + { + "id": "60e70f80479445008f2725a1", + "slug": "ostron_arm_guards", + "gameRef": "/Lotus/Upgrades/Skins/Armor/OstronCrewArmor/OstronCrewArmorA", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Ostron Arm Guards", + "icon": "items/images/en/ostron_arm_guards.df666e6b25e56f6dd6f7f0ad80318977.png", + "thumb": "items/images/en/thumbs/ostron_arm_guards.df666e6b25e56f6dd6f7f0ad80318977.128x128.png" + } + } + }, + { + "id": "60e70f80479445008f2725a2", + "slug": "cephalon_suda_combat_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/CSCombatEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Cephalon Suda Combat Emote", + "icon": "items/images/en/cephalon_suda_combat_emote.4bed116939895f9f358ef31d5f45f646.png", + "thumb": "items/images/en/thumbs/cephalon_suda_combat_emote.4bed116939895f9f358ef31d5f45f646.128x128.png" + } + } + }, + { + "id": "60e70f80479445008f2725a3", + "slug": "red_veil_piloting_emote", + "gameRef": "/Lotus/Types/Items/Emotes/Syndicate/RVPilotingEmote", + "tags": [ + "syndicate", + "emote" + ], + "i18n": { + "en": { + "name": "Red Veil Piloting Emote", + "icon": "items/images/en/red_veil_piloting_emote.910324ce7dfef7ec73e66d023d3397d6.png", + "thumb": "items/images/en/thumbs/red_veil_piloting_emote.910324ce7dfef7ec73e66d023d3397d6.128x128.png" + } + } + }, + { + "id": "60e70f80479445008f2725a4", + "slug": "primary_deadhead", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryDamageOnNoMelee", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Deadhead", + "icon": "items/images/en/primary_deadhead.75738d3c111067da8e673bf8000a6710.png", + "thumb": "items/images/en/thumbs/primary_deadhead.75738d3c111067da8e673bf8000a6710.128x128.png" + } + } + }, + { + "id": "60e70f80479445008f2725a5", + "slug": "red_veil_armor_set", + "gameRef": "", + "tags": [ + "skin" + ], + "i18n": { + "en": { + "name": "Red Veil Armor Set", + "icon": "items/images/en/red_veil_armor_set.f90e9e6a2c0e587feeb5fb1777fd2790.webp", + "thumb": "items/images/en/thumbs/red_veil_armor_set.f90e9e6a2c0e587feeb5fb1777fd2790.128x128.webp" + } + } + }, + { + "id": "60e70f80479445008f2725a6", + "slug": "primary_dexterity", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryDamageOnMeleeKill", + "tags": [ + "arcane_enhancement", + "rare" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Dexterity", + "icon": "items/images/en/primary_dexterity.accc2c9a2780152f354696b2549814bc.png", + "thumb": "items/images/en/thumbs/primary_dexterity.accc2c9a2780152f354696b2549814bc.128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf5fa", + "slug": "ambassador_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpArSniperBarrel", + "tags": [ + "component", + "weapon" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ambassador Barrel", + "icon": "items/images/en/ambassador_barrel.7ccc0f5c1047f5a0cd9f02de8d40b06f.png", + "thumb": "items/images/en/thumbs/ambassador_barrel.7ccc0f5c1047f5a0cd9f02de8d40b06f.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf5fb", + "slug": "ambassador_set", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpArSniper/CrpArSniperRifle", + "tags": [ + "primary", + "weapon", + "set" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ambassador Set", + "icon": "items/images/en/ambassador_set.7ccc0f5c1047f5a0cd9f02de8d40b06f.png", + "thumb": "items/images/en/thumbs/ambassador_set.7ccc0f5c1047f5a0cd9f02de8d40b06f.128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf5fc", + "slug": "ambassador_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpArSniperReceiver", + "tags": [ + "component", + "weapon" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ambassador Receiver", + "icon": "items/images/en/ambassador_receiver.7ccc0f5c1047f5a0cd9f02de8d40b06f.png", + "thumb": "items/images/en/thumbs/ambassador_receiver.7ccc0f5c1047f5a0cd9f02de8d40b06f.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf5fd", + "slug": "ambassador_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CrpArSniperStock", + "tags": [ + "component", + "weapon" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ambassador Stock", + "icon": "items/images/en/ambassador_stock.7ccc0f5c1047f5a0cd9f02de8d40b06f.png", + "thumb": "items/images/en/thumbs/ambassador_stock.7ccc0f5c1047f5a0cd9f02de8d40b06f.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf5fe", + "slug": "ambassador_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/CrpArSniperBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ambassador Blueprint", + "icon": "items/images/en/ambassador_blueprint.7ccc0f5c1047f5a0cd9f02de8d40b06f.png", + "thumb": "items/images/en/thumbs/ambassador_blueprint.7ccc0f5c1047f5a0cd9f02de8d40b06f.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6139101830dd5b004b7f9093", + "slug": "nidus_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NidusPrimeBlueprint", + "tags": [ + "blueprint", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Nidus Prime Blueprint", + "icon": "items/images/en/nidus_prime_blueprint.1cf479b37c98ce42340156c9c005e91e.png", + "thumb": "items/images/en/thumbs/nidus_prime_blueprint.1cf479b37c98ce42340156c9c005e91e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6139101830dd5b004b7f9094", + "slug": "meso_b5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNidusPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B5 Relic", + "icon": "items/images/en/meso_b5_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_b5_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6139101830dd5b004b7f9095", + "slug": "neo_n17_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNidusPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N17 Relic", + "icon": "items/images/en/neo_n17_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n17_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6139101830dd5b004b7f9096", + "slug": "strun_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeStrun/PrimeStrunWeapon", + "tags": [ + "primary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Strun Prime Set", + "icon": "items/images/en/strun_prime_set.e7f858160a34886c105633deab6b343e.png", + "thumb": "items/images/en/thumbs/strun_prime_set.e7f858160a34886c105633deab6b343e.128x128.png" + } + } + }, + { + "id": "6139101830dd5b004b7f9097", + "slug": "meso_s10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNidusPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S10 Relic", + "icon": "items/images/en/meso_s10_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s10_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f9098", + "slug": "lith_k7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNidusPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K7 Relic", + "icon": "items/images/en/lith_k7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f9099", + "slug": "lith_n8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNidusPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N8 Relic", + "icon": "items/images/en/lith_n8_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n8_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f909a", + "slug": "neo_p3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNidusPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo P3 Relic", + "icon": "items/images/en/neo_p3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_p3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f909b", + "slug": "magnus_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeMagnus/PrimeMagnusWeapon", + "tags": [ + "secondary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Magnus Prime Set", + "icon": "items/images/en/magnus_prime_set.0a344c24cc5add7707d6bb7c65e585b2.png", + "thumb": "items/images/en/thumbs/magnus_prime_set.0a344c24cc5add7707d6bb7c65e585b2.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f909c", + "slug": "primed_magazine_warp", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/WeaponClipMaxModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Magazine Warp", + "icon": "items/images/en/primed_magazine_warp.3633879e6484d0e271c64b1b04752966.png", + "thumb": "items/images/en/thumbs/primed_magazine_warp.3633879e6484d0e271c64b1b04752966.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f909d", + "slug": "axi_m2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNidusPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi M2 Relic", + "icon": "items/images/en/axi_m2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_m2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f909e", + "slug": "nidus_prime_set", + "gameRef": "/Lotus/Powersuits/Infestation/InfestationPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Nidus Prime Set", + "icon": "items/images/en/nidus_prime_set.1cf479b37c98ce42340156c9c005e91e.png", + "thumb": "items/images/en/thumbs/nidus_prime_set.1cf479b37c98ce42340156c9c005e91e.128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f909f", + "slug": "strun_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/StrunPrimeBlueprint", + "tags": [ + "primary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Strun Prime Blueprint", + "icon": "items/images/en/strun_prime_blueprint.e7f858160a34886c105633deab6b343e.png", + "thumb": "items/images/en/thumbs/strun_prime_blueprint.e7f858160a34886c105633deab6b343e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6139101930dd5b004b7f90a0", + "slug": "axi_i2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNidusPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi I2 Relic", + "icon": "items/images/en/axi_i2_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_i2_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a1", + "slug": "butchers_revelry", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/SawBladeCmbOneMeleeTree", + "tags": [ + "mod", + "rare", + "stance", + "assault_saw" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Butcher's Revelry", + "icon": "items/images/en/butchers_revelry.24aab9b17deb8cbf91c5918edeb2345c.png", + "thumb": "items/images/en/thumbs/butchers_revelry.24aab9b17deb8cbf91c5918edeb2345c.128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a2", + "slug": "magnus_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/MagnusPrimeBlueprint", + "tags": [ + "secondary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Magnus Prime Blueprint", + "icon": "items/images/en/magnus_prime_blueprint.0a344c24cc5add7707d6bb7c65e585b2.png", + "thumb": "items/images/en/thumbs/magnus_prime_blueprint.0a344c24cc5add7707d6bb7c65e585b2.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a3", + "slug": "lith_n7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNidusPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N7 Relic", + "icon": "items/images/en/lith_n7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a4", + "slug": "strun_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StrunPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Strun Prime Receiver", + "icon": "items/images/en/strun_prime_receiver.e7f858160a34886c105633deab6b343e.png", + "thumb": "items/images/en/thumbs/strun_prime_receiver.e7f858160a34886c105633deab6b343e.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a5", + "slug": "meso_b6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNidusPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B6 Relic", + "icon": "items/images/en/meso_b6_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_b6_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a6", + "slug": "neo_t5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNidusPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T5 Relic", + "icon": "items/images/en/neo_t5_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_t5_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a7", + "slug": "strun_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StrunPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Strun Prime Barrel", + "icon": "items/images/en/strun_prime_barrel.e7f858160a34886c105633deab6b343e.png", + "thumb": "items/images/en/thumbs/strun_prime_barrel.e7f858160a34886c105633deab6b343e.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a8", + "slug": "nidus_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NidusPrimeSystemsBlueprint", + "tags": [ + "blueprint", + "component", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Nidus Prime Systems Blueprint", + "icon": "items/images/en/nidus_prime_systems.1cf479b37c98ce42340156c9c005e91e.png", + "thumb": "items/images/en/thumbs/nidus_prime_systems.1cf479b37c98ce42340156c9c005e91e.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90a9", + "slug": "strun_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/StrunPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Strun Prime Stock", + "icon": "items/images/en/strun_prime_stock.e7f858160a34886c105633deab6b343e.png", + "thumb": "items/images/en/thumbs/strun_prime_stock.e7f858160a34886c105633deab6b343e.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90aa", + "slug": "lith_t7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNidusPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T7 Relic", + "icon": "items/images/en/lith_t7_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t7_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90ab", + "slug": "axi_a14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNidusPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A14 Relic", + "icon": "items/images/en/axi_a14_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_a14_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90ac", + "slug": "nidus_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NidusPrimeHelmetBlueprint", + "tags": [ + "blueprint", + "component", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Nidus Prime Neuroptics Blueprint", + "icon": "items/images/en/nidus_prime_neuroptics.1cf479b37c98ce42340156c9c005e91e.png", + "thumb": "items/images/en/thumbs/nidus_prime_neuroptics.1cf479b37c98ce42340156c9c005e91e.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "6139101a30dd5b004b7f90ad", + "slug": "nidus_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/NidusPrimeChassisBlueprint", + "tags": [ + "blueprint", + "component", + "warframe", + "prime" + ], + "i18n": { + "en": { + "name": "Nidus Prime Chassis Blueprint", + "icon": "items/images/en/nidus_prime_chassis.1cf479b37c98ce42340156c9c005e91e.png", + "thumb": "items/images/en/thumbs/nidus_prime_chassis.1cf479b37c98ce42340156c9c005e91e.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "6139101b30dd5b004b7f90ae", + "slug": "magnus_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/MagnusPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Magnus Prime Receiver", + "icon": "items/images/en/magnus_prime_receiver.0a344c24cc5add7707d6bb7c65e585b2.png", + "thumb": "items/images/en/thumbs/magnus_prime_receiver.0a344c24cc5add7707d6bb7c65e585b2.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "6139101b30dd5b004b7f90af", + "slug": "magnus_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/MagnusPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Magnus Prime Barrel", + "icon": "items/images/en/magnus_prime_barrel.0a344c24cc5add7707d6bb7c65e585b2.png", + "thumb": "items/images/en/thumbs/magnus_prime_barrel.0a344c24cc5add7707d6bb7c65e585b2.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "6139101b30dd5b004b7f90b0", + "slug": "neo_n16_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNidusPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N16 Relic", + "icon": "items/images/en/neo_n16_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n16_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "61460dcce330e600455dcea0", + "slug": "ghoulsaw_blade_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GrnGhoulSawBlade", + "tags": [ + "weapon", + "component" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ghoulsaw Blade", + "icon": "items/images/en/ghoulsaw_blade.f9a355d3f35098841d346d536abd801c.png", + "thumb": "items/images/en/thumbs/ghoulsaw_blade.f9a355d3f35098841d346d536abd801c.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "61460dcce330e600455dcea1", + "slug": "ghoulsaw_grip_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GrnGhoulSawHandle", + "tags": [ + "weapon", + "component" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ghoulsaw Grip", + "icon": "items/images/en/ghoulsaw_grip.f9a355d3f35098841d346d536abd801c.png", + "thumb": "items/images/en/thumbs/ghoulsaw_grip.f9a355d3f35098841d346d536abd801c.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "61460dcce330e600455dcea2", + "slug": "ghoulsaw_engine_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GrnGhoulSawEngine", + "tags": [ + "weapon", + "component" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ghoulsaw Engine", + "icon": "items/images/en/ghoulsaw_engine.f9a355d3f35098841d346d536abd801c.png", + "thumb": "items/images/en/thumbs/ghoulsaw_engine.f9a355d3f35098841d346d536abd801c.128x128.png", + "subIcon": "sub_icons/weapon/generic_engine_128x128.png" + } + } + }, + { + "id": "61460dcde330e600455dcea3", + "slug": "ghoulsaw_set", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnGhoulSaw/GrnGhoulSawPlayer", + "tags": [ + "melee", + "weapon", + "set" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ghoulsaw Set", + "icon": "items/images/en/ghoulsaw_set.f9a355d3f35098841d346d536abd801c.png", + "thumb": "items/images/en/thumbs/ghoulsaw_set.f9a355d3f35098841d346d536abd801c.128x128.png" + } + } + }, + { + "id": "61460dcde330e600455dcea4", + "slug": "ghoulsaw_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GrnGhoulSawChassis", + "tags": [ + "weapon", + "component" + ], + "subtypes": [ + "blueprint", + "crafted" + ], + "i18n": { + "en": { + "name": "Ghoulsaw Chassis", + "icon": "items/images/en/ghoulsaw_chassis.f9a355d3f35098841d346d536abd801c.png", + "thumb": "items/images/en/thumbs/ghoulsaw_chassis.f9a355d3f35098841d346d536abd801c.128x128.png", + "subIcon": "sub_icons/weapon/generic_chassis_128x128.png" + } + } + }, + { + "id": "61460dcde330e600455dcea5", + "slug": "ghoulsaw_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/GrnGhoulSawBlueprint", + "tags": [ + "melee", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Ghoulsaw Blueprint", + "icon": "items/images/en/ghoulsaw_blueprint.f9a355d3f35098841d346d536abd801c.png", + "thumb": "items/images/en/thumbs/ghoulsaw_blueprint.f9a355d3f35098841d346d536abd801c.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "614f83a3e330e60063b618fa", + "slug": "primed_ammo_stock", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/Expert/WeaponClipMaxModExpert", + "tags": [ + "mod", + "legendary", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Ammo Stock", + "icon": "items/images/en/primed_ammo_stock.7caa4ea837a78b6d24b78a0bb46a1dce.png", + "thumb": "items/images/en/thumbs/primed_ammo_stock.7caa4ea837a78b6d24b78a0bb46a1dce.128x128.png" + } + } + }, + { + "id": "6169ab3bc02a2f0045919275", + "slug": "vastilok", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GunBlade/GrnGunBlade/GrnGunblade", + "tags": [ + "melee", + "weapon" + ], + "i18n": { + "en": { + "name": "Vastilok", + "icon": "items/images/en/vastilok.0d6a0cdb886e051eab8f6b4e26df3e99.png", + "thumb": "items/images/en/thumbs/vastilok.0d6a0cdb886e051eab8f6b4e26df3e99.128x128.png" + } + } + }, + { + "id": "61a25ff968fd79003fe3fd53", + "slug": "vampiric_grasp", + "gameRef": "/Lotus/Powersuits/BrokenFrame/GraspAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "xaku" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vampiric Grasp", + "icon": "items/images/en/vampiric_grasp.37e2edd4178998409b909bbf41bdad66.png", + "thumb": "items/images/en/thumbs/vampiric_grasp.37e2edd4178998409b909bbf41bdad66.128x128.png" + } + } + }, + { + "id": "61a25ff968fd79003fe3fd54", + "slug": "champions_blessing", + "gameRef": "/Lotus/Powersuits/Trinity/BlessingAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "trinity" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Champion's Blessing", + "icon": "items/images/en/champions_blessing.df69afba3b546fb6e42461d932603c01.png", + "thumb": "items/images/en/thumbs/champions_blessing.df69afba3b546fb6e42461d932603c01.128x128.png" + } + } + }, + { + "id": "61a25ff968fd79003fe3fd55", + "slug": "lith_l3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLimboTrinityVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith L3 Relic", + "icon": "items/images/en/lith_l3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_l3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd56", + "slug": "swift_bite", + "gameRef": "/Lotus/Powersuits/Alchemist/SerpentAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "lavos" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Swift Bite", + "icon": "items/images/en/swift_bite.be0fac81e2b971c912af6d44c88b4842.png", + "thumb": "items/images/en/thumbs/swift_bite.be0fac81e2b971c912af6d44c88b4842.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd57", + "slug": "meso_b7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMesaHydroidVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B7 Relic", + "icon": "items/images/en/meso_b7_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_b7_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd58", + "slug": "meso_p6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLimboTrinityVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P6 Relic", + "icon": "items/images/en/meso_p6_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_p6_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd59", + "slug": "neo_a6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMesaHydroidVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A6 Relic", + "icon": "items/images/en/neo_a6_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_a6_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd5a", + "slug": "neo_h3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMesaHydroidVaultB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo H3 Relic", + "icon": "items/images/en/neo_h3_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_h3_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd5b", + "slug": "lith_r1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaHydroidVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith R1 Relic", + "icon": "items/images/en/lith_r1_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_r1_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd5c", + "slug": "the_relentless_lost", + "gameRef": "/Lotus/Powersuits/BrokenFrame/EmbraceAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "xaku" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "The Relentless Lost", + "icon": "items/images/en/the_relentless_lost.91e155f5c17760b97b47dd8b5db03d71.png", + "thumb": "items/images/en/thumbs/the_relentless_lost.91e155f5c17760b97b47dd8b5db03d71.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd5d", + "slug": "lith_k8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLimboTrinityVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K8 Relic", + "icon": "items/images/en/lith_k8_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_k8_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd5e", + "slug": "neo_d4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLimboTrinityVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D4 Relic", + "icon": "items/images/en/neo_d4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_d4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd5f", + "slug": "axi_d3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLimboTrinityVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi D3 Relic", + "icon": "items/images/en/axi_d3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_d3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd60", + "slug": "axi_m3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMesaHydroidVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi M3 Relic", + "icon": "items/images/en/axi_m3_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_m3_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "61a25ffa68fd79003fe3fd61", + "slug": "lith_n9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaHydroidVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N9 Relic", + "icon": "items/images/en/lith_n9_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_n9_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb1", + "slug": "axi_p4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHarrowPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi P4 Relic", + "icon": "items/images/en/axi_p4_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_p4_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb2", + "slug": "knell_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeKnell/PrimeKnellWeapon", + "tags": [ + "secondary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Knell Prime Set", + "icon": "items/images/en/knell_prime_set.bde803a974cb2f30577f31b4b2961efb.png", + "thumb": "items/images/en/thumbs/knell_prime_set.bde803a974cb2f30577f31b4b2961efb.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb3", + "slug": "boreals_contempt", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Boreal/BorealMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "polearms" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Boreal's Contempt", + "icon": "items/images/en/boreals_contempt.3722d4914db38a3d0c12be96eedc04bd.png", + "thumb": "items/images/en/thumbs/boreals_contempt.3722d4914db38a3d0c12be96eedc04bd.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb4", + "slug": "niras_anguish", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Nira/NiraExilusMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Nira's Anguish", + "icon": "items/images/en/niras_anguish.823c093e41268b5481548e919b708d60.png", + "thumb": "items/images/en/thumbs/niras_anguish.823c093e41268b5481548e919b708d60.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb5", + "slug": "meso_a3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHarrowPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso A3 Relic", + "icon": "items/images/en/meso_a3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_a3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb6", + "slug": "axi_s9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHarrowPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S9 Relic", + "icon": "items/images/en/axi_s9_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_s9_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb7", + "slug": "amars_contempt", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Amar/AmarMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "dual_daggers" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Amar's Contempt", + "icon": "items/images/en/amars_contempt.6524becca1727855eeeb5a4c64aed1af.png", + "thumb": "items/images/en/thumbs/amars_contempt.6524becca1727855eeeb5a4c64aed1af.128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb8", + "slug": "scourge_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ScourgePrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Scourge Prime Blade", + "icon": "items/images/en/scourge_prime_blade.0a3ad76487e9722f613f6e57e3983cbd.png", + "thumb": "items/images/en/thumbs/scourge_prime_blade.0a3ad76487e9722f613f6e57e3983cbd.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "61bb64fb3132ff00482b5fb9", + "slug": "lith_t8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T8 Relic", + "icon": "items/images/en/lith_t8_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t8_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61bb64fc3132ff00482b5fba", + "slug": "harrow_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HarrowPrimeBlueprint", + "tags": [ + "warframe", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Harrow Prime Blueprint", + "icon": "items/images/en/harrow_prime_blueprint.532d5a9a035beaca81c15bbaa4001a1d.png", + "thumb": "items/images/en/thumbs/harrow_prime_blueprint.532d5a9a035beaca81c15bbaa4001a1d.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "61bb64fc3132ff00482b5fbb", + "slug": "harrow_prime_set", + "gameRef": "/Lotus/Powersuits/Priest/HarrowPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Harrow Prime Set", + "icon": "items/images/en/harrow_prime_set.532d5a9a035beaca81c15bbaa4001a1d.png", + "thumb": "items/images/en/thumbs/harrow_prime_set.532d5a9a035beaca81c15bbaa4001a1d.128x128.png" + } + } + }, + { + "id": "61bb64fc3132ff00482b5fbc", + "slug": "meso_g3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHarrowPrimeD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso G3 Relic", + "icon": "items/images/en/meso_g3_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_g3_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "61bb64fc3132ff00482b5fbd", + "slug": "meso_i2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHarrowPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso I2 Relic", + "icon": "items/images/en/meso_i2_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_i2_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "61bb64fc3132ff00482b5fbe", + "slug": "amars_anguish", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Amar/AmarExilusMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Amar's Anguish", + "icon": "items/images/en/amars_anguish.7ce47cf13b6ff894df2eaf142af0caf2.png", + "thumb": "items/images/en/thumbs/amars_anguish.7ce47cf13b6ff894df2eaf142af0caf2.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fbf", + "slug": "niras_hatred", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Nira/NiraWarframeMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Nira's Hatred", + "icon": "items/images/en/niras_hatred.9c92948ae9386ff17f5de0b1320879a1.png", + "thumb": "items/images/en/thumbs/niras_hatred.9c92948ae9386ff17f5de0b1320879a1.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc0", + "slug": "knell_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KnellPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Knell Prime Barrel", + "icon": "items/images/en/knell_prime_barrel.bde803a974cb2f30577f31b4b2961efb.png", + "thumb": "items/images/en/thumbs/knell_prime_barrel.bde803a974cb2f30577f31b4b2961efb.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc1", + "slug": "axi_t8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHarrowPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T8 Relic", + "icon": "items/images/en/axi_t8_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_t8_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc2", + "slug": "lith_h3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H3 Relic", + "icon": "items/images/en/lith_h3_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_h3_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc3", + "slug": "axi_c7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHarrowPrimeE", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C7 Relic", + "icon": "items/images/en/axi_c7_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_c7_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc4", + "slug": "harrow_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HarrowPrimeHelmetBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Harrow Prime Neuroptics Blueprint", + "icon": "items/images/en/harrow_prime_neuroptics.532d5a9a035beaca81c15bbaa4001a1d.png", + "thumb": "items/images/en/thumbs/harrow_prime_neuroptics.532d5a9a035beaca81c15bbaa4001a1d.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc5", + "slug": "scourge_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ScourgePrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Scourge Prime Barrel", + "icon": "items/images/en/scourge_prime_barrel.0a3ad76487e9722f613f6e57e3983cbd.png", + "thumb": "items/images/en/thumbs/scourge_prime_barrel.0a3ad76487e9722f613f6e57e3983cbd.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc6", + "slug": "knell_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/KnellPrimeBlueprint", + "tags": [ + "secondary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Knell Prime Blueprint", + "icon": "items/images/en/knell_prime_blueprint.bde803a974cb2f30577f31b4b2961efb.png", + "thumb": "items/images/en/thumbs/knell_prime_blueprint.bde803a974cb2f30577f31b4b2961efb.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc7", + "slug": "boreals_hatred", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Boreal/BorealWarframeMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Boreal's Hatred", + "icon": "items/images/en/boreals_hatred.de83eb54e55037ec026c099b9ad00d89.png", + "thumb": "items/images/en/thumbs/boreals_hatred.de83eb54e55037ec026c099b9ad00d89.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc8", + "slug": "lith_s11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowPrimeE", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S11 Relic", + "icon": "items/images/en/lith_s11_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_s11_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fc9", + "slug": "neo_k4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHarrowPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K4 Relic", + "icon": "items/images/en/neo_k4_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_k4_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fca", + "slug": "neo_n18_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHarrowPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N18 Relic", + "icon": "items/images/en/neo_n18_relic.404dc9ef087cc16ca255f5b5fd17fff0.png", + "thumb": "items/images/en/thumbs/neo_n18_relic.404dc9ef087cc16ca255f5b5fd17fff0.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fcb", + "slug": "amars_hatred", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Amar/AmarWarframeMod", + "tags": [ + "mod", + "uncommon", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Amar's Hatred", + "icon": "items/images/en/amars_hatred.1401c99cc4f1f12e4eabfcce31af8cc6.png", + "thumb": "items/images/en/thumbs/amars_hatred.1401c99cc4f1f12e4eabfcce31af8cc6.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fcc", + "slug": "lith_t9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T9 Relic", + "icon": "items/images/en/lith_t9_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_t9_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61bb64fd3132ff00482b5fcd", + "slug": "boreals_anguish", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Boreal/BorealExilusMod", + "tags": [ + "mod", + "common", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Boreal's Anguish", + "icon": "items/images/en/boreals_anguish.ae0eb69e47835a77fea6a004619445a7.png", + "thumb": "items/images/en/thumbs/boreals_anguish.ae0eb69e47835a77fea6a004619445a7.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fce", + "slug": "harrow_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HarrowPrimeChassisBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Harrow Prime Chassis Blueprint", + "icon": "items/images/en/harrow_prime_chassis.532d5a9a035beaca81c15bbaa4001a1d.png", + "thumb": "items/images/en/thumbs/harrow_prime_chassis.532d5a9a035beaca81c15bbaa4001a1d.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fcf", + "slug": "scourge_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeScourge/PrimeScourgeWeapon", + "tags": [ + "primary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Scourge Prime Set", + "icon": "items/images/en/scourge_prime_set.0a3ad76487e9722f613f6e57e3983cbd.png", + "thumb": "items/images/en/thumbs/scourge_prime_set.0a3ad76487e9722f613f6e57e3983cbd.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd0", + "slug": "niras_contempt", + "gameRef": "/Lotus/Upgrades/Mods/Sets/Nira/NiraMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "whips" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Nira's Contempt", + "icon": "items/images/en/niras_contempt.c1a78ebf90902f2e90bdb759931a17a0.png", + "thumb": "items/images/en/thumbs/niras_contempt.c1a78ebf90902f2e90bdb759931a17a0.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd1", + "slug": "axi_k6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHarrowPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K6 Relic", + "icon": "items/images/en/axi_k6_relic.a74c06f0cae21bdb8933685c867385f8.png", + "thumb": "items/images/en/thumbs/axi_k6_relic.a74c06f0cae21bdb8933685c867385f8.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd2", + "slug": "harrow_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HarrowPrimeSystemsBlueprint", + "tags": [ + "warframe", + "component", + "blueprint", + "prime" + ], + "i18n": { + "en": { + "name": "Harrow Prime Systems Blueprint", + "icon": "items/images/en/harrow_prime_systems.532d5a9a035beaca81c15bbaa4001a1d.png", + "thumb": "items/images/en/thumbs/harrow_prime_systems.532d5a9a035beaca81c15bbaa4001a1d.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd3", + "slug": "lith_c9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C9 Relic", + "icon": "items/images/en/lith_c9_relic.4c2cd55afd4007566866d226c86e0fdd.png", + "thumb": "items/images/en/thumbs/lith_c9_relic.4c2cd55afd4007566866d226c86e0fdd.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd4", + "slug": "scourge_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ScourgePrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Scourge Prime Handle", + "icon": "items/images/en/scourge_prime_handle.0a3ad76487e9722f613f6e57e3983cbd.png", + "thumb": "items/images/en/thumbs/scourge_prime_handle.0a3ad76487e9722f613f6e57e3983cbd.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd5", + "slug": "knell_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/KnellPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Knell Prime Receiver", + "icon": "items/images/en/knell_prime_receiver.bde803a974cb2f30577f31b4b2961efb.png", + "thumb": "items/images/en/thumbs/knell_prime_receiver.bde803a974cb2f30577f31b4b2961efb.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd6", + "slug": "scourge_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/ScourgePrimeBlueprint", + "tags": [ + "primary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Scourge Prime Blueprint", + "icon": "items/images/en/scourge_prime_blueprint.0a3ad76487e9722f613f6e57e3983cbd.png", + "thumb": "items/images/en/thumbs/scourge_prime_blueprint.0a3ad76487e9722f613f6e57e3983cbd.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd7", + "slug": "meso_s11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHarrowPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S11 Relic", + "icon": "items/images/en/meso_s11_relic.32eb1e727be665c175084b03829b8015.png", + "thumb": "items/images/en/thumbs/meso_s11_relic.32eb1e727be665c175084b03829b8015.128x128.png" + } + } + }, + { + "id": "6214e88fe3c4660048a8b97e", + "slug": "thermal_transfer", + "gameRef": "/Lotus/Powersuits/Runner/RunnerTransferAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "gauss" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Thermal Transfer", + "icon": "items/images/en/thermal_transfer.5d70e7595448afc2590b68af46b7f8db.png", + "thumb": "items/images/en/thumbs/thermal_transfer.5d70e7595448afc2590b68af46b7f8db.128x128.png" + } + } + }, + { + "id": "6214e88fe3c4660048a8b97f", + "slug": "neo_p4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHarrowPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo P4 Relic", + "icon": "items/images/en/neo_p4_relic.f9ba081b382cff74afb459b8c4dd9480.png", + "thumb": "items/images/en/thumbs/neo_p4_relic.f9ba081b382cff74afb459b8c4dd9480.128x128.png" + } + } + }, + { + "id": "6214e890e3c4660048a8b980", + "slug": "gourmand", + "gameRef": "/Lotus/Powersuits/Devourer/DevourerDevourAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "grendel" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gourmand", + "icon": "items/images/en/gourmand.299ab0e425a33165565271a30f38ccc3.png", + "thumb": "items/images/en/thumbs/gourmand.299ab0e425a33165565271a30f38ccc3.128x128.png" + } + } + }, + { + "id": "6214e890e3c4660048a8b981", + "slug": "praghasa_throne_room_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileTNWBallasThroneRoomEnding", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Praghasa Throne Room Scene", + "icon": "items/images/en/praghasa_throne_room_scene.f971332d748ac185c486fb0faba19e88.png", + "thumb": "items/images/en/thumbs/praghasa_throne_room_scene.f971332d748ac185c486fb0faba19e88.128x128.png" + } + } + }, + { + "id": "6214e890e3c4660048a8b982", + "slug": "surging_blades", + "gameRef": "/Lotus/Powersuits/Yareli/YareliDisksAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "yareli" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Surging Blades", + "icon": "items/images/en/surging_blades.bbc3a9a4fa5386c0e3813b0652c3b20f.png", + "thumb": "items/images/en/thumbs/surging_blades.bbc3a9a4fa5386c0e3813b0652c3b20f.128x128.png" + } + } + }, + { + "id": "6214e890e3c4660048a8b983", + "slug": "biting_frost", + "gameRef": "/Lotus/Powersuits/Frost/FrostPassiveAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "frost" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Biting Frost", + "icon": "items/images/en/biting_frost.57f924dc30744246ab2cac245b1b5ef9.png", + "thumb": "items/images/en/thumbs/biting_frost.57f924dc30744246ab2cac245b1b5ef9.128x128.png" + } + } + }, + { + "id": "6214e890e3c4660048a8b984", + "slug": "lith_n10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowPrimeF", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N10 Relic", + "icon": "items/images/en/lith_n10_relic.45368e35e7b9f9d4b611a1d195f21087.png", + "thumb": "items/images/en/thumbs/lith_n10_relic.45368e35e7b9f9d4b611a1d195f21087.128x128.png" + } + } + }, + { + "id": "622c032966a58f0048549b1a", + "slug": "primed_sniper_ammo_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Expert/WeaponSnipersConvertAmmoModExpert", + "tags": [ + "mod", + "legendary", + "sniper" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Sniper Ammo Mutation", + "icon": "items/images/en/primed_sniper_ammo_mutation.c03bd7dc7932247caeb35a1b2db935f0.png", + "thumb": "items/images/en/thumbs/primed_sniper_ammo_mutation.c03bd7dc7932247caeb35a1b2db935f0.128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d479", + "slug": "garuda_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GarudaPrimeChassisBlueprint", + "tags": [ + "blueprint", + "component", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Garuda Prime Chassis Blueprint", + "icon": "items/images/en/garuda_prime_chassis.283072e865cfc5da28d322b15a2065fa.png", + "thumb": "items/images/en/thumbs/garuda_prime_chassis.283072e865cfc5da28d322b15a2065fa.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d47a", + "slug": "corvas_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/PrimeCorvas/PrimeCorvasWeapon", + "tags": [ + "archwing", + "primary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Corvas Prime Set", + "icon": "items/images/en/corvas_prime_set.f6bd98b0b4a2491580a40775708b21f4.png", + "thumb": "items/images/en/thumbs/corvas_prime_set.f6bd98b0b4a2491580a40775708b21f4.128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d47b", + "slug": "lith_n11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGarudaPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N11 Relic", + "icon": "items/images/en/lith_n11_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_n11_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d47c", + "slug": "nagantaka_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeNagantaka/PrimeNagantakaWeapon", + "tags": [ + "primary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Nagantaka Prime Set", + "icon": "items/images/en/nagantaka_prime_set.f1af5a1cf53058c86df2c4969f37ea27.png", + "thumb": "items/images/en/thumbs/nagantaka_prime_set.f1af5a1cf53058c86df2c4969f37ea27.128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d47d", + "slug": "axi_k7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGarudaPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K7 Relic", + "icon": "items/images/en/axi_k7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_k7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d47e", + "slug": "lith_s12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGarudaPrimeE", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S12 Relic", + "icon": "items/images/en/lith_s12_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_s12_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d47f", + "slug": "corvas_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CorvasPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Corvas Prime Barrel", + "icon": "items/images/en/corvas_prime_barrel.f6bd98b0b4a2491580a40775708b21f4.png", + "thumb": "items/images/en/thumbs/corvas_prime_barrel.f6bd98b0b4a2491580a40775708b21f4.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d480", + "slug": "corvas_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/CorvasPrimeBlueprint", + "tags": [ + "archwing", + "primary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Corvas Prime Blueprint", + "icon": "items/images/en/corvas_prime_blueprint.f6bd98b0b4a2491580a40775708b21f4.png", + "thumb": "items/images/en/thumbs/corvas_prime_blueprint.f6bd98b0b4a2491580a40775708b21f4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d481", + "slug": "nagantaka_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NagantakaPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Nagantaka Prime Receiver", + "icon": "items/images/en/nagantaka_prime_receiver.f1af5a1cf53058c86df2c4969f37ea27.png", + "thumb": "items/images/en/thumbs/nagantaka_prime_receiver.f1af5a1cf53058c86df2c4969f37ea27.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d482", + "slug": "nagantaka_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/NagantakaPrimeBlueprint", + "tags": [ + "primary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nagantaka Prime Blueprint", + "icon": "items/images/en/nagantaka_prime_blueprint.f1af5a1cf53058c86df2c4969f37ea27.png", + "thumb": "items/images/en/thumbs/nagantaka_prime_blueprint.f1af5a1cf53058c86df2c4969f37ea27.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d483", + "slug": "lith_h4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGarudaPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H4 Relic", + "icon": "items/images/en/lith_h4_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_h4_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d484", + "slug": "corvas_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CorvasPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Corvas Prime Stock", + "icon": "items/images/en/corvas_prime_stock.f6bd98b0b4a2491580a40775708b21f4.png", + "thumb": "items/images/en/thumbs/corvas_prime_stock.f6bd98b0b4a2491580a40775708b21f4.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d485", + "slug": "nagantaka_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NagantakaPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Nagantaka Prime Stock", + "icon": "items/images/en/nagantaka_prime_stock.f1af5a1cf53058c86df2c4969f37ea27.png", + "thumb": "items/images/en/thumbs/nagantaka_prime_stock.f1af5a1cf53058c86df2c4969f37ea27.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "6242037666a58f0108c3d486", + "slug": "garuda_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GarudaPrimeSystemsBlueprint", + "tags": [ + "blueprint", + "component", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Garuda Prime Systems Blueprint", + "icon": "items/images/en/garuda_prime_systems.283072e865cfc5da28d322b15a2065fa.png", + "thumb": "items/images/en/thumbs/garuda_prime_systems.283072e865cfc5da28d322b15a2065fa.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d487", + "slug": "meso_g4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGarudaPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso G4 Relic", + "icon": "items/images/en/meso_g4_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_g4_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d488", + "slug": "axi_s11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGarudaPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S11 Relic", + "icon": "items/images/en/axi_s11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_s11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d489", + "slug": "lith_z3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGarudaPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith Z3 Relic", + "icon": "items/images/en/lith_z3_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_z3_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d48a", + "slug": "corvas_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CorvasPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Corvas Prime Receiver", + "icon": "items/images/en/corvas_prime_receiver.f6bd98b0b4a2491580a40775708b21f4.png", + "thumb": "items/images/en/thumbs/corvas_prime_receiver.f6bd98b0b4a2491580a40775708b21f4.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d48b", + "slug": "axi_s10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGarudaPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S10 Relic", + "icon": "items/images/en/axi_s10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_s10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d48c", + "slug": "lith_g5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGarudaPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G5 Relic", + "icon": "items/images/en/lith_g5_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_g5_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d48d", + "slug": "meso_p7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGarudaPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P7 Relic", + "icon": "items/images/en/meso_p7_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p7_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d48e", + "slug": "lith_n12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGarudaPrimeF", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N12 Relic", + "icon": "items/images/en/lith_n12_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_n12_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d48f", + "slug": "nagantaka_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NagantakaPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Nagantaka Prime Barrel", + "icon": "items/images/en/nagantaka_prime_barrel.f1af5a1cf53058c86df2c4969f37ea27.png", + "thumb": "items/images/en/thumbs/nagantaka_prime_barrel.f1af5a1cf53058c86df2c4969f37ea27.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d490", + "slug": "garuda_prime_set", + "gameRef": "/Lotus/Powersuits/Garuda/GarudaPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Garuda Prime Set", + "icon": "items/images/en/garuda_prime_set.283072e865cfc5da28d322b15a2065fa.png", + "thumb": "items/images/en/thumbs/garuda_prime_set.283072e865cfc5da28d322b15a2065fa.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d491", + "slug": "neo_n20_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGarudaPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N20 Relic", + "icon": "items/images/en/neo_n20_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_n20_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d492", + "slug": "garuda_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GarudaPrimeHelmetBlueprint", + "tags": [ + "blueprint", + "component", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Garuda Prime Neuroptics Blueprint", + "icon": "items/images/en/garuda_prime_neuroptics.283072e865cfc5da28d322b15a2065fa.png", + "thumb": "items/images/en/thumbs/garuda_prime_neuroptics.283072e865cfc5da28d322b15a2065fa.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d493", + "slug": "meso_n12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGarudaPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N12 Relic", + "icon": "items/images/en/meso_n12_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_n12_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "6242037766a58f0108c3d494", + "slug": "axi_g7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGarudaPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G7 Relic", + "icon": "items/images/en/axi_g7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_g7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6242037866a58f0108c3d495", + "slug": "neo_c2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGarudaPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo C2 Relic", + "icon": "items/images/en/neo_c2_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_c2_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6242037866a58f0108c3d496", + "slug": "neo_m4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGarudaPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo M4 Relic", + "icon": "items/images/en/neo_m4_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_m4_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6242037866a58f0108c3d497", + "slug": "garuda_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GarudaPrimeBlueprint", + "tags": [ + "blueprint", + "prime", + "warframe" + ], + "i18n": { + "en": { + "name": "Garuda Prime Blueprint", + "icon": "items/images/en/garuda_prime_blueprint.283072e865cfc5da28d322b15a2065fa.png", + "thumb": "items/images/en/thumbs/garuda_prime_blueprint.283072e865cfc5da28d322b15a2065fa.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "626a109cf40db6004517215c", + "slug": "zariman_chrysalith_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarParkHub", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Chrysalith Scene", + "icon": "items/images/en/zariman_chrysalith_scene.add7a8699f1c4035d636f2c6349d169d.png", + "thumb": "items/images/en/thumbs/zariman_chrysalith_scene.add7a8699f1c4035d636f2c6349d169d.128x128.png" + } + } + }, + { + "id": "626a109cf40db6004517215d", + "slug": "zariman_reliquary_drive_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarVoidEngine", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Reliquary Drive Scene", + "icon": "items/images/en/zariman_reliquary_drive_scene.8bdd62e104e7605681efb47703b04dab.png", + "thumb": "items/images/en/thumbs/zariman_reliquary_drive_scene.8bdd62e104e7605681efb47703b04dab.128x128.png" + } + } + }, + { + "id": "626a109df40db6004517215e", + "slug": "zariman_lunaro_court_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarLunaroCourt", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Lunaro Court Scene", + "icon": "items/images/en/zariman_lunaro_court_scene.c144d0beee8748fbd4ffde2fa8b6eb27.png", + "thumb": "items/images/en/thumbs/zariman_lunaro_court_scene.c144d0beee8748fbd4ffde2fa8b6eb27.128x128.png" + } + } + }, + { + "id": "626a1978f40db600660a1d7a", + "slug": "emergence_dissipate", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/EnergyOnGhostDissipate", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Emergence Dissipate", + "icon": "items/images/en/emergence_dissipate.83218167b319a330d85249791386f866.png", + "thumb": "items/images/en/thumbs/emergence_dissipate.83218167b319a330d85249791386f866.128x128.png" + } + } + }, + { + "id": "626a1978f40db600660a1d7b", + "slug": "molt_vigor", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/WarframeOnOperatorAbilityPowerStrength", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Molt Vigor", + "icon": "items/images/en/molt_vigor.51b7ce183f508eb27c3df9efa59c1341.png", + "thumb": "items/images/en/thumbs/molt_vigor.51b7ce183f508eb27c3df9efa59c1341.128x128.png" + } + } + }, + { + "id": "626a1979f40db600660a1d7c", + "slug": "galeforce_dawn", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/HeavyScytheCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "heavy_scythe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Galeforce Dawn", + "icon": "items/images/en/galeforce_dawn.43b80804db2df60f946063545350586b.png", + "thumb": "items/images/en/thumbs/galeforce_dawn.43b80804db2df60f946063545350586b.128x128.png" + } + } + }, + { + "id": "626a1979f40db600660a1d7d", + "slug": "zariman_cargo_bay_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarCargoBay", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Cargo Bay Scene", + "icon": "items/images/en/zariman_cargo_bay_scene.33903d055a83700c4d837ad71e6ef5e5.png", + "thumb": "items/images/en/thumbs/zariman_cargo_bay_scene.33903d055a83700c4d837ad71e6ef5e5.128x128.png" + } + } + }, + { + "id": "626a1979f40db600660a1d7e", + "slug": "zariman_schoolyard_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarSchool", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Schoolyard Scene", + "icon": "items/images/en/zariman_classroom_scene.4dc36a5bf318f5971c0a1f5fc21a0a1e.png", + "thumb": "items/images/en/thumbs/zariman_classroom_scene.4dc36a5bf318f5971c0a1f5fc21a0a1e.128x128.png" + } + } + }, + { + "id": "626a1979f40db600660a1d7f", + "slug": "zariman_angel_roost_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarParkC", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Angel Roost Scene", + "icon": "items/images/en/zariman_angel_roost_scene.d8f4c9cad50917c9192cb3c10e4a2257.png", + "thumb": "items/images/en/thumbs/zariman_angel_roost_scene.d8f4c9cad50917c9192cb3c10e4a2257.128x128.png" + } + } + }, + { + "id": "626a1979f40db600660a1d80", + "slug": "zariman_serenity_levels_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarParkB", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Serenity Levels Scene", + "icon": "items/images/en/zariman_serenity_levels_scene.d946430ebf3c96a783ca03fe773cc8d0.png", + "thumb": "items/images/en/thumbs/zariman_serenity_levels_scene.d946430ebf3c96a783ca03fe773cc8d0.128x128.png" + } + } + }, + { + "id": "626a1979f40db600660a1d81", + "slug": "emergence_renewed", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/OperatorOnEnergyDepletedRegenEnergy", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Emergence Renewed", + "icon": "items/images/en/emergence_renewed.a5f55caadd8f27ff5acbe25bbd9b00a7.png", + "thumb": "items/images/en/thumbs/emergence_renewed.a5f55caadd8f27ff5acbe25bbd9b00a7.128x128.png" + } + } + }, + { + "id": "626a197af40db600660a1d82", + "slug": "zariman_dormizone_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarApartment", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Dormizone Scene", + "icon": "items/images/en/zariman_dormizone_scene.81b26fbb7a0b65d70b1f2701114b13ba.png", + "thumb": "items/images/en/thumbs/zariman_dormizone_scene.81b26fbb7a0b65d70b1f2701114b13ba.128x128.png" + } + } + }, + { + "id": "626a197af40db600660a1d83", + "slug": "eternal_eradicate", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/OperatorOnOperatorAbilityIncreaseDamage", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Eternal Eradicate", + "icon": "items/images/en/eternal_eradicate.75f8c32b70d1fa1fc211942ce7c3119e.png", + "thumb": "items/images/en/thumbs/eternal_eradicate.75f8c32b70d1fa1fc211942ce7c3119e.128x128.png" + } + } + }, + { + "id": "626a197af40db600660a1d84", + "slug": "zariman_hall_of_legems_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarIndoctrinationHall", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Hall Of Legems Scene", + "icon": "items/images/en/zariman_hall_of_legems_scene.41d7445d14b9b9e0be2b0af1db83e247.png", + "thumb": "items/images/en/thumbs/zariman_hall_of_legems_scene.41d7445d14b9b9e0be2b0af1db83e247.128x128.png" + } + } + }, + { + "id": "626a197af40db600660a1d85", + "slug": "zariman_brig_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarCellBlock", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Brig Scene", + "icon": "items/images/en/zariman_brig_scene.3e639e5e5131d895f931ed76bd217538.png", + "thumb": "items/images/en/thumbs/zariman_brig_scene.3e639e5e5131d895f931ed76bd217538.128x128.png" + } + } + }, + { + "id": "626a197af40db600660a1d86", + "slug": "zariman_albrecht_park_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarParkA", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Albrecht Park Scene", + "icon": "items/images/en/zariman_albrecht_park_scene.0360a82d8604ff94f3611d88708d1b11.png", + "thumb": "items/images/en/thumbs/zariman_albrecht_park_scene.0360a82d8604ff94f3611d88708d1b11.128x128.png" + } + } + }, + { + "id": "626a197af40db600660a1d87", + "slug": "molt_efficiency", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/WarframeOnShieldUptimePowerDuration", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Molt Efficiency", + "icon": "items/images/en/molt_efficiency.c76d07229a6c7e12bff54ac2f56f47b5.png", + "thumb": "items/images/en/thumbs/molt_efficiency.c76d07229a6c7e12bff54ac2f56f47b5.128x128.png" + } + } + }, + { + "id": "626a197bf40db600660a1d88", + "slug": "emergence_savior", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/OperatorOnDeathInvulnerability", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Emergence Savior", + "icon": "items/images/en/emergence_savior.d3cab5acf5703d92987d92188478d65d.png", + "thumb": "items/images/en/thumbs/emergence_savior.d3cab5acf5703d92987d92188478d65d.128x128.png" + } + } + }, + { + "id": "626a197bf40db600660a1d89", + "slug": "zariman_agri_zone_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarHydroponics", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Agri-Zone Scene", + "icon": "items/images/en/zariman_agri_zone_scene.18e0817eb3c054857511f49dbcf35fbe.png", + "thumb": "items/images/en/thumbs/zariman_agri_zone_scene.18e0817eb3c054857511f49dbcf35fbe.128x128.png" + } + } + }, + { + "id": "626a197bf40db600660a1d8a", + "slug": "zariman_docking_bay_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarShuttleBay", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Docking Bay Scene", + "icon": "items/images/en/zariman_docking_bay_scene.9a8e685306bed46042de91012e8d896b.png", + "thumb": "items/images/en/thumbs/zariman_docking_bay_scene.9a8e685306bed46042de91012e8d896b.128x128.png" + } + } + }, + { + "id": "626a197bf40db600660a1d8b", + "slug": "cascadia_overcharge", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/SecondaryOnOvershieldCritChance", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Cascadia Overcharge", + "icon": "items/images/en/cascadia_overcharge.d5f7bf0949071f325145d596e35b3087.png", + "thumb": "items/images/en/thumbs/cascadia_overcharge.d5f7bf0949071f325145d596e35b3087.128x128.png" + } + } + }, + { + "id": "626a197cf40db600660a1d8c", + "slug": "range_advantage", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveAkjagaraAugmentMod", + "tags": [ + "mod", + "rare", + "secondary", + "akjagara" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Range Advantage", + "icon": "items/images/en/range_advantage.e36eff9c43daa410b7874fdda2870e53.png", + "thumb": "items/images/en/thumbs/range_advantage.e36eff9c43daa410b7874fdda2870e53.128x128.png" + } + } + }, + { + "id": "626a197df40db600660a1d8d", + "slug": "combat_reload", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveTigrisAugmentMod", + "tags": [ + "mod", + "rare", + "primary", + "tigris" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Combat Reload", + "icon": "items/images/en/combat_reload.bb9f21c1fd571b29f89e4e78b552deb4.png", + "thumb": "items/images/en/thumbs/combat_reload.bb9f21c1fd571b29f89e4e78b552deb4.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d8e", + "slug": "zariman_habitation_zone_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarLivingQuarters", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Habitation Zone Scene", + "icon": "items/images/en/zariman_habitation_zone_scene.0dfee67c9c789791c84953bc79060979.png", + "thumb": "items/images/en/thumbs/zariman_habitation_zone_scene.0dfee67c9c789791c84953bc79060979.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d8f", + "slug": "zariman_amphitheatre_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Zariman/PhotoboothTileZarAmphitheatre", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Zariman Amphitheatre Scene", + "icon": "items/images/en/zariman_amphitheatre_scene.a8cbde206b7206247673918740f9ff94.png", + "thumb": "items/images/en/thumbs/zariman_amphitheatre_scene.a8cbde206b7206247673918740f9ff94.128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d09", + "slug": "laetum_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/Evolving/ZarimanHeavyPistolBlueprint", + "tags": [ + "secondary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Laetum Blueprint", + "icon": "items/images/en/laetum_blueprint.7d096a802a809499e0ce83f41f712f78.png", + "thumb": "items/images/en/thumbs/laetum_blueprint.7d096a802a809499e0ce83f41f712f78.128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d0a", + "slug": "aeolak_receiver_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DuviriRifleReceiverBlueprint", + "tags": [ + "weapon", + "blueprint", + "component" + ], + "i18n": { + "en": { + "name": "Aeolak Receiver Blueprint", + "icon": "items/images/en/aeolak_receiver.6bea718eeee31f702d625029e035b646.png", + "thumb": "items/images/en/thumbs/aeolak_receiver.6bea718eeee31f702d625029e035b646.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d0b", + "slug": "hespar_handle_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DuviriHeavyScytheHandleBlueprint", + "tags": [ + "weapon", + "blueprint", + "component" + ], + "i18n": { + "en": { + "name": "Hespar Handle Blueprint", + "icon": "items/images/en/hespar_handle.58bd4fbd6ed4930402342b2662d68ac4.png", + "thumb": "items/images/en/thumbs/hespar_handle.58bd4fbd6ed4930402342b2662d68ac4.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d0c", + "slug": "praedos_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/Evolving/ZarimanTonfaWeaponBlueprint", + "tags": [ + "melee", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Praedos Blueprint", + "icon": "items/images/en/praedos_blueprint.e1da5767a0e93a169cc678f1a8bff20f.png", + "thumb": "items/images/en/thumbs/praedos_blueprint.e1da5767a0e93a169cc678f1a8bff20f.128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d0d", + "slug": "aeolak_barrel_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DuviriRifleBarrelBlueprint", + "tags": [ + "weapon", + "blueprint", + "component" + ], + "i18n": { + "en": { + "name": "Aeolak Barrel Blueprint", + "icon": "items/images/en/aeolak_barrel.6bea718eeee31f702d625029e035b646.png", + "thumb": "items/images/en/thumbs/aeolak_barrel.6bea718eeee31f702d625029e035b646.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d0e", + "slug": "aeolak_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnRifleErsatz/TnRifleErsatzWeapon", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Aeolak Set", + "icon": "items/images/en/aeolak_set.6bea718eeee31f702d625029e035b646.png", + "thumb": "items/images/en/thumbs/aeolak_set.6bea718eeee31f702d625029e035b646.128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d0f", + "slug": "hespar_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/HeavyScythe/DuviriScythe/DuviriHeavyScytheWeapon", + "tags": [ + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Hespar Set", + "icon": "items/images/en/hespar_set.58bd4fbd6ed4930402342b2662d68ac4.png", + "thumb": "items/images/en/thumbs/hespar_set.58bd4fbd6ed4930402342b2662d68ac4.128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d10", + "slug": "hespar_blade_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DuviriHeavyScytheBladeBlueprint", + "tags": [ + "weapon", + "blueprint", + "component" + ], + "i18n": { + "en": { + "name": "Hespar Blade Blueprint", + "icon": "items/images/en/hespar_blade.268fbb0047e804439e816cea91dfb08c.png", + "thumb": "items/images/en/thumbs/hespar_blade.268fbb0047e804439e816cea91dfb08c.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d11", + "slug": "aeolak_stock_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DuviriRifleStockBlueprint", + "tags": [ + "weapon", + "blueprint", + "component" + ], + "i18n": { + "en": { + "name": "Aeolak Stock Blueprint", + "icon": "items/images/en/aeolak_stock.6bea718eeee31f702d625029e035b646.png", + "thumb": "items/images/en/thumbs/aeolak_stock.6bea718eeee31f702d625029e035b646.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "626ca573f40db600829c9d12", + "slug": "phenmor_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/Evolving/ZarimanSemiAutoRifleBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Phenmor Blueprint", + "icon": "items/images/en/phenmor_blueprint.4fa10f6dededc5af9b3515370302432a.png", + "thumb": "items/images/en/thumbs/phenmor_blueprint.4fa10f6dededc5af9b3515370302432a.128x128.png" + } + } + }, + { + "id": "62a2b833a554aa00a86de35c", + "slug": "eternal_onslaught", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/AmpOnEnergyDepletedCritChance", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Eternal Onslaught", + "icon": "items/images/en/eternal_onslaught.d9c808039b68dd997cc6dee543c8b0ab.png", + "thumb": "items/images/en/thumbs/eternal_onslaught.d9c808039b68dd997cc6dee543c8b0ab.128x128.png" + } + } + }, + { + "id": "62a2b833a554aa00a86de35d", + "slug": "dog_days_night_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileBeachNight", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Dog Days Night Scene", + "icon": "items/images/en/dog_days_night_scene.bd6d8351ca7fa4040eba2fe1fddcbfed.png", + "thumb": "items/images/en/thumbs/dog_days_night_scene.bd6d8351ca7fa4040eba2fe1fddcbfed.128x128.png" + } + } + }, + { + "id": "62a2b943fbd62c0038ef9a2d", + "slug": "innodem_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/Evolving/ZarimanDaggerWeaponBlueprint", + "tags": [ + "melee", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Innodem Blueprint", + "icon": "items/images/en/innodem_blueprint.2a892f04f30e5f12bd5689a2fd467aeb.png", + "thumb": "items/images/en/thumbs/innodem_blueprint.2a892f04f30e5f12bd5689a2fd467aeb.128x128.png" + } + } + }, + { + "id": "62a2baeafbd62c00450b71d7", + "slug": "felarx_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/Evolving/ZarimanPumpShotgunBlueprint", + "tags": [ + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Felarx Blueprint", + "icon": "items/images/en/felarx_blueprint.053e1cdbccea41a95d0e3db9964665ff.png", + "thumb": "items/images/en/thumbs/felarx_blueprint.053e1cdbccea41a95d0e3db9964665ff.128x128.png" + } + } + }, + { + "id": "62a2baebfbd62c00450b71d8", + "slug": "molt_reconstruct", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/HealAlliesOnEnergySpent", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Molt Reconstruct", + "icon": "items/images/en/molt_reconstruct.3c470837973134be1c9db91e0bdceeb0.png", + "thumb": "items/images/en/thumbs/molt_reconstruct.3c470837973134be1c9db91e0bdceeb0.128x128.png" + } + } + }, + { + "id": "62a2baebfbd62c00450b71d9", + "slug": "molt_augmented", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PowerStrengthOnKill", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Molt Augmented", + "icon": "items/images/en/molt_augmented.9def654a0d24b7f085940dfc8ef843b5.png", + "thumb": "items/images/en/thumbs/molt_augmented.9def654a0d24b7f085940dfc8ef843b5.128x128.png" + } + } + }, + { + "id": "62a2baebfbd62c00450b71da", + "slug": "parallax_set", + "gameRef": "/Lotus/Types/Items/Ships/ZarimanShip", + "tags": [ + "set" + ], + "i18n": { + "en": { + "name": "Parallax Set", + "icon": "items/images/en/parallax_set.75e7e972c395cb8f385c810b9c73b55c.png", + "thumb": "items/images/en/thumbs/parallax_set.75e7e972c395cb8f385c810b9c73b55c.128x128.png" + } + } + }, + { + "id": "62a2baebfbd62c00450b71db", + "slug": "eternal_logistics", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/AmpOnVoidSlingAmpAmmoEfficiency", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Eternal Logistics", + "icon": "items/images/en/eternal_logistics.f12227878bbb95901bd6aba5aa902acf.png", + "thumb": "items/images/en/thumbs/eternal_logistics.f12227878bbb95901bd6aba5aa902acf.128x128.png" + } + } + }, + { + "id": "62a2baebfbd62c00450b71dd", + "slug": "parallax_avionics_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/ZarimanShip/ZarimanShipAvionicsBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Parallax Avionics Blueprint", + "icon": "items/images/en/parallax_avionics.75e7e972c395cb8f385c810b9c73b55c.png", + "thumb": "items/images/en/thumbs/parallax_avionics.75e7e972c395cb8f385c810b9c73b55c.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_avionics_128x128.png" + } + } + }, + { + "id": "62a2baecfbd62c00450b71de", + "slug": "parallax_engines_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/ZarimanShip/ZarimanShipEnginesBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Parallax Engines Blueprint", + "icon": "items/images/en/parallax_engines.75e7e972c395cb8f385c810b9c73b55c.png", + "thumb": "items/images/en/thumbs/parallax_engines.75e7e972c395cb8f385c810b9c73b55c.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_engines_128x128.png" + } + } + }, + { + "id": "62a2baecfbd62c00450b71df", + "slug": "parallax_fuselage_blueprint", + "gameRef": "/Lotus/Types/Recipes/LandingCraftRecipes/ZarimanShip/ZarimanShipFuselageBlueprint", + "tags": [ + "blueprint" + ], + "i18n": { + "en": { + "name": "Parallax Fuselage Blueprint", + "icon": "items/images/en/parallax_fuselage.75e7e972c395cb8f385c810b9c73b55c.png", + "thumb": "items/images/en/thumbs/parallax_fuselage.75e7e972c395cb8f385c810b9c73b55c.128x128.png", + "subIcon": "sub_icons/landingCraft/generic_fuselage_128x128.png" + } + } + }, + { + "id": "62af145c5d2dab0054229038", + "slug": "cascadia_empowered", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/SecondaryOnStatusProcBonusDamage", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Cascadia Empowered", + "icon": "items/images/en/cascadia_empowered.677ddc0966a5d8662883735fb42d2ec3.png", + "thumb": "items/images/en/thumbs/cascadia_empowered.677ddc0966a5d8662883735fb42d2ec3.128x128.png" + } + } + }, + { + "id": "62af145c5d2dab0054229039", + "slug": "prisma_shade_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/PrismaShadePowerSuit", + "tags": [ + "sentinel", + "set" + ], + "i18n": { + "en": { + "name": "Prisma Shade Set", + "icon": "items/images/en/prisma_shade_set.cc1c7bc7c621300a6af014b735ec3430.png", + "thumb": "items/images/en/thumbs/prisma_shade_set.cc1c7bc7c621300a6af014b735ec3430.128x128.png" + } + } + }, + { + "id": "62af145c5d2dab005422903a", + "slug": "fractalized_reset", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/PrimaryOnAbilityReloadSpeed", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Fractalized Reset", + "icon": "items/images/en/fractalized_reset.234df692ab2ebf6bd1e73f1f115547fa.png", + "thumb": "items/images/en/thumbs/fractalized_reset.234df692ab2ebf6bd1e73f1f115547fa.128x128.png" + } + } + }, + { + "id": "62af145d5d2dab005422903c", + "slug": "cascadia_flare", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryDamageOnHeatProc", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Cascadia Flare", + "icon": "items/images/en/cascadia_flare.256fbbf670c8acdcc8468ed035cc6efe.png", + "thumb": "items/images/en/thumbs/cascadia_flare.256fbbf670c8acdcc8468ed035cc6efe.128x128.png" + } + } + }, + { + "id": "62af145d5d2dab005422903f", + "slug": "prisma_burst_laser", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/PrismaBurstLaserPistol", + "tags": [ + "sentinel", + "primary" + ], + "i18n": { + "en": { + "name": "Prisma Burst Laser", + "icon": "items/images/en/prisma_burst_laser.f4a86f6ebcd9df7e028c911d259ac431.png", + "thumb": "items/images/en/thumbs/prisma_burst_laser.f4a86f6ebcd9df7e028c911d259ac431.128x128.png" + } + } + }, + { + "id": "62af145e5d2dab0054229040", + "slug": "cascadia_accuracy", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Zariman/SecondaryOnRollCritChanceOnHeadshot", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Cascadia Accuracy", + "icon": "items/images/en/cascadia_accuracy.51f25b4bd629c3c34226da11b9831d57.png", + "thumb": "items/images/en/thumbs/cascadia_accuracy.51f25b4bd629c3c34226da11b9831d57.128x128.png" + } + } + }, + { + "id": "62d3078580f54c00b5ddf5cc", + "slug": "crescent_vulpaphyla_imprint", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/HornedInfestedCatbrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Crescent Vulpaphyla Imprint", + "icon": "items/images/en/crescent_vulpaphyla_imprint.2fe775933f0220d758828ecc7e04cc3f.png", + "thumb": "items/images/en/thumbs/crescent_vulpaphyla_imprint.2fe775933f0220d758828ecc7e04cc3f.128x128.png" + } + } + }, + { + "id": "62d3078580f54c00b5ddf5cd", + "slug": "sly_vulpaphyla_imprint", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/VulpineInfestedCatbrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Sly Vulpaphyla Imprint", + "icon": "items/images/en/sly_vulpaphyla_imprint.34f6989d4510346445a34ddd2d6bdb84.png", + "thumb": "items/images/en/thumbs/sly_vulpaphyla_imprint.34f6989d4510346445a34ddd2d6bdb84.128x128.png" + } + } + }, + { + "id": "62d3078580f54c00b5ddf5ce", + "slug": "medjay_predasite_imprint", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/MedjayPredatorKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Medjay Predasite Imprint", + "icon": "items/images/en/medjay_predasite_imprint.8897027ffce368a72168cac8fe1a0aa0.png", + "thumb": "items/images/en/thumbs/medjay_predasite_imprint.8897027ffce368a72168cac8fe1a0aa0.128x128.png" + } + } + }, + { + "id": "62d3078680f54c00b5ddf5cf", + "slug": "vizier_predasite_imprint", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/VizierPredatorKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Vizier Predasite Imprint", + "icon": "items/images/en/vizier_predasite_imprint.c1b460f3819b94a8bd5f18ff72361361.png", + "thumb": "items/images/en/thumbs/vizier_predasite_imprint.c1b460f3819b94a8bd5f18ff72361361.128x128.png" + } + } + }, + { + "id": "62d3078680f54c00b5ddf5d0", + "slug": "panzer_vulpaphyla_imprint", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/ArmoredInfestedCatbrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Panzer Vulpaphyla Imprint", + "icon": "items/images/en/panzer_vulpaphyla_imprint.4619c7c40efcd74ec4b8c29ff9f52b4a.png", + "thumb": "items/images/en/thumbs/panzer_vulpaphyla_imprint.4619c7c40efcd74ec4b8c29ff9f52b4a.128x128.png" + } + } + }, + { + "id": "62d3078680f54c00b5ddf5d1", + "slug": "pharaoh_predasite_imprint", + "gameRef": "/Lotus/Types/Friendly/Pets/CreaturePets/PharaohPredatorKubrowPetPowerSuit", + "tags": [ + "kubrow", + "pet", + "imprint" + ], + "i18n": { + "en": { + "name": "Pharaoh Predasite Imprint", + "icon": "items/images/en/pharaoh_predasite_imprint.bbae682e5bcf50e30380da7b9be7945e.png", + "thumb": "items/images/en/thumbs/pharaoh_predasite_imprint.bbae682e5bcf50e30380da7b9be7945e.128x128.png" + } + } + }, + { + "id": "62d3493f75156700ce450de7", + "slug": "hystrix_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/HystrixPrimeBlueprint", + "tags": [ + "secondary", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Hystrix Prime Blueprint", + "icon": "items/images/en/hystrix_prime_blueprint.1ac7d440197ca107e3df6646cb58a43d.png", + "thumb": "items/images/en/thumbs/hystrix_prime_blueprint.1ac7d440197ca107e3df6646cb58a43d.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "62d3493f75156700ce450de8", + "slug": "axi_k10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionKhoraPrimeE", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K10 Relic", + "icon": "items/images/en/axi_k10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_k10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "62d3493f75156700ce450de9", + "slug": "axi_n8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionKhoraPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N8 Relic", + "icon": "items/images/en/axi_n8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_n8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "62d3493f75156700ce450dea", + "slug": "meso_o5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionKhoraPrimeE", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso O5 Relic", + "icon": "items/images/en/meso_o5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_o5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "62d3493f75156700ce450deb", + "slug": "meso_p8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionKhoraPrimeD", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P8 Relic", + "icon": "items/images/en/meso_p8_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p8_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "62d3493f75156700ce450dec", + "slug": "neo_n21_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionKhoraPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N21 Relic", + "icon": "items/images/en/neo_n21_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_n21_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "62d3493f75156700ce450ded", + "slug": "khora_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/KhoraPrimeChassisBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Khora Prime Chassis Blueprint", + "icon": "items/images/en/khora_prime_chassis_blueprint.12b9da415ed4f659296947b5c7157dc0.png", + "thumb": "items/images/en/thumbs/khora_prime_chassis_blueprint.12b9da415ed4f659296947b5c7157dc0.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450dee", + "slug": "dual_keres_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeDualKeres/PrimeDualKeresWeapon", + "tags": [ + "prime", + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Dual Keres Prime Set", + "icon": "items/images/en/dual_keres_prime_set.ea70ac30dab8db745193cb166b246efc.png", + "thumb": "items/images/en/thumbs/dual_keres_prime_set.ea70ac30dab8db745193cb166b246efc.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450def", + "slug": "axi_k9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionKhoraPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K9 Relic", + "icon": "items/images/en/axi_k9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_k9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df0", + "slug": "hystrix_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeHystrix/PrimeHystrixWeapon", + "tags": [ + "secondary", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Hystrix Prime Set", + "icon": "items/images/en/hystrix_prime_set.1ac7d440197ca107e3df6646cb58a43d.png", + "thumb": "items/images/en/thumbs/hystrix_prime_set.1ac7d440197ca107e3df6646cb58a43d.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df1", + "slug": "axi_g8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionKhoraPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G8 Relic", + "icon": "items/images/en/axi_g8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_g8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df2", + "slug": "meso_h3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionKhoraPrimeB", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H3 Relic", + "icon": "items/images/en/meso_h3_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_h3_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df3", + "slug": "dual_keres_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DualKeresPrimeHandle", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Dual Keres Prime Handle", + "icon": "items/images/en/dual_keres_prime_handle.ea70ac30dab8db745193cb166b246efc.png", + "thumb": "items/images/en/thumbs/dual_keres_prime_handle.ea70ac30dab8db745193cb166b246efc.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df4", + "slug": "khora_prime_set", + "gameRef": "/Lotus/Powersuits/Khora/KhoraPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Khora Prime Set", + "icon": "items/images/en/khora_prime_set.12b9da415ed4f659296947b5c7157dc0.png", + "thumb": "items/images/en/thumbs/khora_prime_set.12b9da415ed4f659296947b5c7157dc0.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df5", + "slug": "khora_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/KhoraPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Khora Prime Blueprint", + "icon": "items/images/en/khora_prime_blueprint.12b9da415ed4f659296947b5c7157dc0.png", + "thumb": "items/images/en/thumbs/khora_prime_blueprint.12b9da415ed4f659296947b5c7157dc0.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df6", + "slug": "neo_g4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionKhoraPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo G4 Relic", + "icon": "items/images/en/neo_g4_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_g4_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df7", + "slug": "hystrix_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/HystrixPrimeReceiver", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Hystrix Prime Receiver", + "icon": "items/images/en/hystrix_prime_receiver.1ac7d440197ca107e3df6646cb58a43d.png", + "thumb": "items/images/en/thumbs/hystrix_prime_receiver.1ac7d440197ca107e3df6646cb58a43d.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df8", + "slug": "neo_d5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionKhoraPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D5 Relic", + "icon": "items/images/en/neo_d5_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_d5_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450df9", + "slug": "lith_k9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionKhoraPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K9 Relic", + "icon": "items/images/en/lith_k9_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_k9_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "62d3494075156700ce450dfa", + "slug": "axi_k8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionKhoraPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K8 Relic", + "icon": "items/images/en/axi_k8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_k8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450dfb", + "slug": "vile_discharge", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveEmbolistAugmentMod", + "tags": [ + "mod", + "rare", + "secondary", + "embolist" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vile Discharge", + "icon": "items/images/en/vile_discharge.f79e889a984d749579a3282409b02a1d.png", + "thumb": "items/images/en/thumbs/vile_discharge.f79e889a984d749579a3282409b02a1d.128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450dfc", + "slug": "meso_h2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionKhoraPrimeA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H2 Relic", + "icon": "items/images/en/meso_h2_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_h2_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450dfd", + "slug": "hystrix_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/HystrixPrimeBarrel", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Hystrix Prime Barrel", + "icon": "items/images/en/hystrix_prime_barrel.1ac7d440197ca107e3df6646cb58a43d.png", + "thumb": "items/images/en/thumbs/hystrix_prime_barrel.1ac7d440197ca107e3df6646cb58a43d.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450dfe", + "slug": "meso_v7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionKhoraPrimeC", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V7 Relic", + "icon": "items/images/en/meso_v7_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_v7_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450dff", + "slug": "khora_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/KhoraPrimeHelmetBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Khora Prime Neuroptics Blueprint", + "icon": "items/images/en/khora_prime_neuroptics_blueprint.12b9da415ed4f659296947b5c7157dc0.png", + "thumb": "items/images/en/thumbs/khora_prime_neuroptics_blueprint.12b9da415ed4f659296947b5c7157dc0.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450e00", + "slug": "dual_keres_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/DualKeresPrimeBlueprint", + "tags": [ + "prime", + "melee", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Dual Keres Prime Blueprint", + "icon": "items/images/en/dual_keres_prime_blueprint.ea70ac30dab8db745193cb166b246efc.png", + "thumb": "items/images/en/thumbs/dual_keres_prime_blueprint.ea70ac30dab8db745193cb166b246efc.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450e01", + "slug": "neo_s15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionKhoraPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S15 Relic", + "icon": "items/images/en/neo_s15_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_s15_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450e02", + "slug": "axi_s12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionKhoraPrimeF", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S12 Relic", + "icon": "items/images/en/axi_s12_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_s12_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450e03", + "slug": "critical_precision", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveTiberonAugmentMod", + "tags": [ + "mod", + "rare", + "primary", + "tiberon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Critical Precision", + "icon": "items/images/en/critical_precision.3d9b25be4870a3bc8a8b619fb453a8a4.png", + "thumb": "items/images/en/thumbs/critical_precision.3d9b25be4870a3bc8a8b619fb453a8a4.128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450e04", + "slug": "khora_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/KhoraPrimeSystemsBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Khora Prime Systems Blueprint", + "icon": "items/images/en/khora_prime_systems_blueprint.12b9da415ed4f659296947b5c7157dc0.png", + "thumb": "items/images/en/thumbs/khora_prime_systems_blueprint.12b9da415ed4f659296947b5c7157dc0.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "62d3494175156700ce450e05", + "slug": "dual_keres_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DualKeresPrimeBlade", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Dual Keres Prime Blade", + "icon": "items/images/en/dual_keres_prime_blade.ea70ac30dab8db745193cb166b246efc.png", + "thumb": "items/images/en/thumbs/dual_keres_prime_blade.ea70ac30dab8db745193cb166b246efc.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "62fd5d36b8a9cc00378321bc", + "slug": "peculiar_audience", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Peculiars/EvilSpiritMod", + "tags": [ + "mod", + "peculiar", + "arcane_enhancement", + "warframe" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Peculiar Audience", + "icon": "items/images/en/peculiar_audience.18fabc6c0ba194e71fdb7e8cc4c7f253.png", + "thumb": "items/images/en/thumbs/peculiar_audience.18fabc6c0ba194e71fdb7e8cc4c7f253.128x128.png" + } + } + }, + { + "id": "6322918add457f0072aeb8b1", + "slug": "archon_intensify", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Kahl/KahlAvatarAbilityStrengthMod", + "tags": [ + "mod", + "archon", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Archon Intensify", + "icon": "items/images/en/archon_intensify.4fac0586cea5af02d26b98eb29c2488c.png", + "thumb": "items/images/en/thumbs/archon_intensify.4fac0586cea5af02d26b98eb29c2488c.128x128.png" + } + } + }, + { + "id": "63229385dd457f0096113c3d", + "slug": "lith_n13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionWukongEquinoxVaultA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N13 Relic", + "icon": "items/images/en/lith_n13_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_n13_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "63229385dd457f0096113c3e", + "slug": "neo_z9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWukongEquinoxVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z9 Relic", + "icon": "items/images/en/neo_z9_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_z9_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "63229385dd457f0096113c3f", + "slug": "archon_continuity", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Kahl/KahlAvatarAbilityDurationMod", + "tags": [ + "mod", + "archon", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Archon Continuity", + "icon": "items/images/en/archon_continuity.87c2dd792556d1699f6954461197d83e.png", + "thumb": "items/images/en/thumbs/archon_continuity.87c2dd792556d1699f6954461197d83e.128x128.png" + } + } + }, + { + "id": "63229385dd457f0096113c40", + "slug": "meso_w2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWukongEquinoxVaultA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso W2 Relic", + "icon": "items/images/en/meso_w2_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_w2_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "63229385dd457f0096113c41", + "slug": "neo_e3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWukongEquinoxVaultB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo E3 Relic", + "icon": "items/images/en/neo_e3_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_e3_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "63229386dd457f0096113c42", + "slug": "archon_flow", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Kahl/KahlAvatarPowerMaxMod", + "tags": [ + "mod", + "archon", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Archon Flow", + "icon": "items/images/en/archon_flow.9f720d15c3cf1d9fbd3506e7bee5bd67.png", + "thumb": "items/images/en/thumbs/archon_flow.9f720d15c3cf1d9fbd3506e7bee5bd67.128x128.png" + } + } + }, + { + "id": "63229386dd457f0096113c43", + "slug": "archon_vitality", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Kahl/KahlAvatarHealthMaxMod", + "tags": [ + "mod", + "archon", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Archon Vitality", + "icon": "items/images/en/archon_vitality.e2a0584c833528c8a69bf80f6ee5ec0f.png", + "thumb": "items/images/en/thumbs/archon_vitality.e2a0584c833528c8a69bf80f6ee5ec0f.128x128.png" + } + } + }, + { + "id": "63229386dd457f0096113c44", + "slug": "axi_t9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWukongEquinoxVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T9 Relic", + "icon": "items/images/en/axi_t9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_t9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "63229386dd457f0096113c45", + "slug": "archon_stretch", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Kahl/KahlAvatarAbilityRangeMod", + "tags": [ + "mod", + "archon", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Archon Stretch", + "icon": "items/images/en/archon_stretch.48c4b9cd7bc02dbe17433b176db0e5b2.png", + "thumb": "items/images/en/thumbs/archon_stretch.48c4b9cd7bc02dbe17433b176db0e5b2.128x128.png" + } + } + }, + { + "id": "63229386dd457f0096113c46", + "slug": "lith_s13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionWukongEquinoxVaultB", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S13 Relic", + "icon": "items/images/en/lith_s13_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_s13_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "633e2e69f570d10793afb811", + "slug": "lith_h6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionRevenantPrimeD", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H6 Relic", + "icon": "items/images/en/lith_h6_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_h6_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb812", + "slug": "tatsu_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TatsuPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tatsu Prime Blade", + "icon": "items/images/en/tatsu_prime_blade.d517fb4c89ed6076ddf26ffdb8efb88e.png", + "thumb": "items/images/en/thumbs/tatsu_prime_blade.d517fb4c89ed6076ddf26ffdb8efb88e.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb813", + "slug": "neo_t6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionRevenantPrimeA", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T6 Relic", + "icon": "items/images/en/neo_t6_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_t6_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb814", + "slug": "meso_p10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionRevenantPrimeC", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P10 Relic", + "icon": "items/images/en/meso_p10_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p10_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb815", + "slug": "revenant_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RevenantPrimeChassisBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Revenant Prime Chassis Blueprint", + "icon": "items/images/en/revenant_prime_chassis_blueprint.469f99b4183a5dda7769b78b2cde6658.png", + "thumb": "items/images/en/thumbs/revenant_prime_chassis_blueprint.469f99b4183a5dda7769b78b2cde6658.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb816", + "slug": "revenant_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RevenantPrimeSystemsBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Revenant Prime Systems Blueprint", + "icon": "items/images/en/revenant_prime_systems_blueprint.469f99b4183a5dda7769b78b2cde6658.png", + "thumb": "items/images/en/thumbs/revenant_prime_systems_blueprint.469f99b4183a5dda7769b78b2cde6658.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb817", + "slug": "tatsu_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeTatsu/PrimeTatsuWeapon", + "tags": [ + "weapon", + "prime", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Tatsu Prime Set", + "icon": "items/images/en/tatsu_prime_set.d517fb4c89ed6076ddf26ffdb8efb88e.png", + "thumb": "items/images/en/thumbs/tatsu_prime_set.d517fb4c89ed6076ddf26ffdb8efb88e.128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb818", + "slug": "tatsu_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TatsuPrimeBlueprint", + "tags": [ + "melee", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Tatsu Prime Blueprint", + "icon": "items/images/en/tatsu_prime_blueprint.d517fb4c89ed6076ddf26ffdb8efb88e.png", + "thumb": "items/images/en/thumbs/tatsu_prime_blueprint.d517fb4c89ed6076ddf26ffdb8efb88e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb819", + "slug": "meso_n13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionRevenantPrimeB", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N13 Relic", + "icon": "items/images/en/meso_n13_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_n13_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "633e2e6af570d10793afb81a", + "slug": "revenant_prime_set", + "gameRef": "/Lotus/Powersuits/Revenant/RevenantPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Revenant Prime Set", + "icon": "items/images/en/revenant_prime_set.469f99b4183a5dda7769b78b2cde6658.png", + "thumb": "items/images/en/thumbs/revenant_prime_set.469f99b4183a5dda7769b78b2cde6658.128x128.png" + } + } + }, + { + "id": "633e2e6bf570d10793afb81b", + "slug": "phantasma_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PhantasmaPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Phantasma Prime Barrel", + "icon": "items/images/en/phantasma_prime_barrel.a296718b56d5a40b6df80bbedeeb4b75.png", + "thumb": "items/images/en/thumbs/phantasma_prime_barrel.a296718b56d5a40b6df80bbedeeb4b75.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "633e2e6bf570d10793afb81c", + "slug": "lith_p6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionRevenantPrimeE", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P6 Relic", + "icon": "items/images/en/lith_p6_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_p6_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "633e2e6bf570d10793afb81d", + "slug": "revenant_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RevenantPrimeHelmetBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Revenant Prime Neuroptics Blueprint", + "icon": "items/images/en/revenant_prime_neuroptics_blueprint.469f99b4183a5dda7769b78b2cde6658.png", + "thumb": "items/images/en/thumbs/revenant_prime_neuroptics_blueprint.469f99b4183a5dda7769b78b2cde6658.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "633e2e6bf570d10793afb81e", + "slug": "tatsu_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TatsuPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Tatsu Prime Handle", + "icon": "items/images/en/tatsu_prime_handle.d517fb4c89ed6076ddf26ffdb8efb88e.png", + "thumb": "items/images/en/thumbs/tatsu_prime_handle.d517fb4c89ed6076ddf26ffdb8efb88e.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "633e2e6bf570d10793afb81f", + "slug": "meso_k4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionRevenantPrimeD", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso K4 Relic", + "icon": "items/images/en/meso_k4_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_k4_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "633e2e6bf570d10793afb820", + "slug": "phantasma_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/PhantasmaPrimeBlueprint", + "tags": [ + "primary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Phantasma Prime Blueprint", + "icon": "items/images/en/phantasma_prime_blueprint.a296718b56d5a40b6df80bbedeeb4b75.png", + "thumb": "items/images/en/thumbs/phantasma_prime_blueprint.a296718b56d5a40b6df80bbedeeb4b75.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "633e2e6bf570d10793afb821", + "slug": "phantasma_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimePhantasma/PhantasmaPrimeShotgun", + "tags": [ + "weapon", + "prime", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Phantasma Prime Set", + "icon": "items/images/en/phantasma_prime_set.a296718b56d5a40b6df80bbedeeb4b75.png", + "thumb": "items/images/en/thumbs/phantasma_prime_set.a296718b56d5a40b6df80bbedeeb4b75.128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb822", + "slug": "lith_h5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionRevenantPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H5 Relic", + "icon": "items/images/en/lith_h5_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_h5_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb823", + "slug": "axi_t10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionRevenantPrimeB", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T10 Relic", + "icon": "items/images/en/axi_t10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_t10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb824", + "slug": "phantasma_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PhantasmaPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Phantasma Prime Receiver", + "icon": "items/images/en/phantasma_prime_receiver.a296718b56d5a40b6df80bbedeeb4b75.png", + "thumb": "items/images/en/thumbs/phantasma_prime_receiver.a296718b56d5a40b6df80bbedeeb4b75.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb825", + "slug": "axi_n9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionRevenantPrimeA", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N9 Relic", + "icon": "items/images/en/axi_n9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_n9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb826", + "slug": "lith_r2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionRevenantPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith R2 Relic", + "icon": "items/images/en/lith_r2_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_r2_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb827", + "slug": "revenant_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/RevenantPrimeBlueprint", + "tags": [ + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Revenant Prime Blueprint", + "icon": "items/images/en/revenant_prime_blueprint.469f99b4183a5dda7769b78b2cde6658.png", + "thumb": "items/images/en/thumbs/revenant_prime_blueprint.469f99b4183a5dda7769b78b2cde6658.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb828", + "slug": "meso_p9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionRevenantPrimeA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P9 Relic", + "icon": "items/images/en/meso_p9_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p9_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb829", + "slug": "lith_s14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionRevenantPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S14 Relic", + "icon": "items/images/en/lith_s14_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_s14_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "633e2e6cf570d10793afb82a", + "slug": "phantasma_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PhantasmaPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Phantasma Prime Stock", + "icon": "items/images/en/phantasma_prime_stock.a296718b56d5a40b6df80bbedeeb4b75.png", + "thumb": "items/images/en/thumbs/phantasma_prime_stock.a296718b56d5a40b6df80bbedeeb4b75.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "6364d904f6d2030069a9f91d", + "slug": "lith_b9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionIvaraOberonVaultA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B9 Relic", + "icon": "items/images/en/lith_b9_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_b9_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6364d904f6d2030069a9f91e", + "slug": "axi_a15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionIvaraOberonVaultA", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A15 Relic", + "icon": "items/images/en/axi_a15_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_a15_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6364d904f6d2030069a9f91f", + "slug": "axi_s13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionIvaraOberonVaultB", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S13 Relic", + "icon": "items/images/en/axi_s13_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_s13_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6364d904f6d2030069a9f920", + "slug": "neo_s16_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionIvaraOberonVaultB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S16 Relic", + "icon": "items/images/en/neo_s16_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_s16_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6364d904f6d2030069a9f921", + "slug": "neo_i3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionIvaraOberonVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo I3 Relic", + "icon": "items/images/en/neo_i3_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_i3_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6364d904f6d2030069a9f922", + "slug": "meso_o6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionIvaraOberonVaultA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso O6 Relic", + "icon": "items/images/en/meso_o6_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_o6_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "636d085bd6e304004d0be569", + "slug": "vericres", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Warfan/TnMoonWarfan/MoonWarfanWeapon", + "tags": [ + "melee", + "weapon" + ], + "i18n": { + "en": { + "name": "Vericres", + "icon": "items/images/en/vericres.78fa72dfb0e8a5060eba19ebdf2f3a5b.png", + "thumb": "items/images/en/thumbs/vericres.78fa72dfb0e8a5060eba19ebdf2f3a5b.128x128.png" + } + } + }, + { + "id": "63886516e7c988007b5bd509", + "slug": "conjunction_voltage", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryReloadSpeedAndMultishotOnElectricProc", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Conjunction Voltage", + "icon": "items/images/en/conjunction_voltage.d7ac26c466e1d189eaa0f1eab81b6b4b.png", + "thumb": "items/images/en/thumbs/conjunction_voltage.d7ac26c466e1d189eaa0f1eab81b6b4b.128x128.png" + } + } + }, + { + "id": "63886516e7c988007b5bd50a", + "slug": "primary_frostbite", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryCritDmgAndMultishotOnColdProc", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Frostbite", + "icon": "items/images/en/primary_frostbite.3aba98f1779bfc69c3139e83dbda1463.png", + "thumb": "items/images/en/thumbs/primary_frostbite.3aba98f1779bfc69c3139e83dbda1463.128x128.png" + } + } + }, + { + "id": "63886516e7c988007b5bd50b", + "slug": "arcane_rise", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/LongGunDamageOnReload", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Rise", + "icon": "items/images/en/arcane_rise.dd639f42f0235bd00abea150d1666f89.png", + "thumb": "items/images/en/thumbs/arcane_rise.dd639f42f0235bd00abea150d1666f89.128x128.png" + } + } + }, + { + "id": "63886516e7c988007b5bd50c", + "slug": "perigale_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnQuadSniper/TnQuadSniper", + "tags": [ + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Perigale Set", + "icon": "items/images/en/perigale_set.679b0e40d7651d8a117e07d1c7039886.png", + "thumb": "items/images/en/thumbs/perigale_set.679b0e40d7651d8a117e07d1c7039886.128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd50d", + "slug": "veilbreak_forest_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileVeilbreakerForest", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Veilbreak Forest Scene", + "icon": "items/images/en/veilbreak_forest_scene.c17794f641792060856657e48dfbdc23.png", + "thumb": "items/images/en/thumbs/veilbreak_forest_scene.c17794f641792060856657e48dfbdc23.128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd50e", + "slug": "perigale_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnQuadSniperRifleStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Perigale Stock", + "icon": "items/images/en/perigale_stock.679b0e40d7651d8a117e07d1c7039886.png", + "thumb": "items/images/en/thumbs/perigale_stock.679b0e40d7651d8a117e07d1c7039886.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd50f", + "slug": "sarofang_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/WolfFrameAxeWeaponBlade", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sarofang Blade", + "icon": "items/images/en/sarofang_blade.b9dddab4cdb3312fa7a7bf8c78d82246.png", + "thumb": "items/images/en/thumbs/sarofang_blade.b9dddab4cdb3312fa7a7bf8c78d82246.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd510", + "slug": "veilbreak_factory_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileVeilbreakerVallis", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Veilbreak Factory Scene", + "icon": "items/images/en/veilbreak_factory_scene.9c5d23a94260406b15d96a9877b91068.png", + "thumb": "items/images/en/thumbs/veilbreak_factory_scene.9c5d23a94260406b15d96a9877b91068.128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd511", + "slug": "lua_circulus_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileLuasPrey", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Lua Circulus Scene", + "icon": "items/images/en/lua_circulus_scene.9cd295ac6f62e5042cbc036bc9650dde.png", + "thumb": "items/images/en/thumbs/lua_circulus_scene.9cd295ac6f62e5042cbc036bc9650dde.128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd512", + "slug": "arcane_blessing", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/IncreaseMaxHealthOnHealthPickup", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Blessing", + "icon": "items/images/en/arcane_blessing.aec88d7b4b3482f59c6c1a3b87185042.png", + "thumb": "items/images/en/thumbs/arcane_blessing.aec88d7b4b3482f59c6c1a3b87185042.128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd513", + "slug": "sarofang_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/WolfFrameAxeWeaponHandle", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Sarofang Handle", + "icon": "items/images/en/sarofang_handle.132b80ed3bbefa26846dbafa1bfe5f56.png", + "thumb": "items/images/en/thumbs/sarofang_handle.132b80ed3bbefa26846dbafa1bfe5f56.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "63886517e7c988007b5bd514", + "slug": "sarofang_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Axe/WolfFrameAxeWeapon", + "tags": [ + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Sarofang Set", + "icon": "items/images/en/sarofang_set.b9dddab4cdb3312fa7a7bf8c78d82246.png", + "thumb": "items/images/en/thumbs/sarofang_set.b9dddab4cdb3312fa7a7bf8c78d82246.128x128.png" + } + } + }, + { + "id": "63886518e7c988007b5bd515", + "slug": "veilbreak_murex_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileVeilbreakerMurex", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Veilbreak Murex Scene", + "icon": "items/images/en/veilbreak_murex_scene.a2853b915ef52f76c40452c9afadf933.png", + "thumb": "items/images/en/thumbs/veilbreak_murex_scene.a2853b915ef52f76c40452c9afadf933.128x128.png" + } + } + }, + { + "id": "63886518e7c988007b5bd516", + "slug": "perigale_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnQuadSniperRifleBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Perigale Barrel", + "icon": "items/images/en/perigale_barrel.679b0e40d7651d8a117e07d1c7039886.png", + "thumb": "items/images/en/thumbs/perigale_barrel.679b0e40d7651d8a117e07d1c7039886.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "63886518e7c988007b5bd517", + "slug": "perigale_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnQuadSniperRifleReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Perigale Receiver", + "icon": "items/images/en/perigale_receiver.679b0e40d7651d8a117e07d1c7039886.png", + "thumb": "items/images/en/thumbs/perigale_receiver.679b0e40d7651d8a117e07d1c7039886.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "639a8d9274b02f003889eb6d", + "slug": "lith_g6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionBaruukPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G6 Relic", + "icon": "items/images/en/lith_g6_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_g6_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "639a8d9274b02f003889eb6e", + "slug": "axi_s14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionBaruukPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S14 Relic", + "icon": "items/images/en/axi_s14_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_s14_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "639a8d9274b02f003889eb6f", + "slug": "meso_t6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionAtlasVaubanVaultA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso T6 Relic", + "icon": "items/images/en/meso_t6_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_t6_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "639a8d9274b02f003889eb70", + "slug": "neo_c3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionBaruukPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo C3 Relic", + "icon": "items/images/en/neo_c3_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_c3_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb71", + "slug": "baruuk_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BaruukPrimeChassisBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Baruuk Prime Chassis Blueprint", + "icon": "items/images/en/baruuk_prime_chassis_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.png", + "thumb": "items/images/en/thumbs/baruuk_prime_chassis_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb72", + "slug": "meso_a4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionBaruukPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso A4 Relic", + "icon": "items/images/en/meso_a4_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_a4_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb73", + "slug": "axi_n10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionBaruukPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N10 Relic", + "icon": "items/images/en/axi_n10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_n10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb74", + "slug": "axi_b5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionBaruukPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B5 Relic", + "icon": "items/images/en/axi_b5_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_b5_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb75", + "slug": "neo_a8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionBaruukPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A8 Relic", + "icon": "items/images/en/neo_a8_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_a8_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb76", + "slug": "meso_v8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionAtlasVaubanVaultB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V8 Relic", + "icon": "items/images/en/meso_v8_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_v8_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb77", + "slug": "baruuk_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BaruukPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Baruuk Prime Blueprint", + "icon": "items/images/en/baruuk_prime_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.png", + "thumb": "items/images/en/thumbs/baruuk_prime_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb78", + "slug": "neo_k5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionBaruukPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K5 Relic", + "icon": "items/images/en/neo_k5_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_k5_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb79", + "slug": "meso_k5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionBaruukPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso K5 Relic", + "icon": "items/images/en/meso_k5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_k5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb7a", + "slug": "lith_v9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAtlasVaubanVaultB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V9 Relic", + "icon": "items/images/en/lith_v9_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_v9_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb7b", + "slug": "lith_b10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionBaruukPrimeC", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B10 Relic", + "icon": "items/images/en/lith_b10_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_b10_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb7c", + "slug": "neo_a7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionAtlasVaubanVaultB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A7 Relic", + "icon": "items/images/en/neo_a7_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_a7_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb7d", + "slug": "axi_g9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionBaruukPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G9 Relic", + "icon": "items/images/en/axi_g9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_g9_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb7e", + "slug": "baruuk_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BaruukPrimeSystemsBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Baruuk Prime Systems Blueprint", + "icon": "items/images/en/baruuk_prime_systems_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.png", + "thumb": "items/images/en/thumbs/baruuk_prime_systems_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb7f", + "slug": "neo_d6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionAtlasVaubanVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D6 Relic", + "icon": "items/images/en/neo_d6_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_d6_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "639a8d9374b02f003889eb80", + "slug": "axi_f1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionAtlasVaubanVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi F1 Relic", + "icon": "items/images/en/axi_f1_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_f1_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "639a8d9474b02f003889eb81", + "slug": "baruuk_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/BaruukPrimeHelmetBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Baruuk Prime Neuroptics Blueprint", + "icon": "items/images/en/baruuk_prime_neuroptics_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.png", + "thumb": "items/images/en/thumbs/baruuk_prime_neuroptics_blueprint.90bcb486d7a5defe4a74c94acfebf6d0.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "639a8d9474b02f003889eb82", + "slug": "meso_r5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionBaruukPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso R5 Relic", + "icon": "items/images/en/meso_r5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_r5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "639a8d9474b02f003889eb83", + "slug": "lith_a5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionAtlasVaubanVaultA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith A5 Relic", + "icon": "items/images/en/lith_a5_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_a5_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "639a8d9474b02f003889eb84", + "slug": "baruuk_prime_set", + "gameRef": "/Lotus/Powersuits/Pacifist/BaruukPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Baruuk Prime Set", + "icon": "items/images/en/baruuk_prime_set.90bcb486d7a5defe4a74c94acfebf6d0.png", + "thumb": "items/images/en/thumbs/baruuk_prime_set.90bcb486d7a5defe4a74c94acfebf6d0.128x128.png" + } + } + }, + { + "id": "639a8d9474b02f003889eb85", + "slug": "lith_h7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionBaruukPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H7 Relic", + "icon": "items/images/en/lith_h7_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_h7_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "639a941c74b02f008887784a", + "slug": "cobra_and_crane_prime_guard", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CobraCranePrimeGuard", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Cobra & Crane Prime Guard", + "icon": "items/images/en/cobra_and_crane_prime_guard.84b2733b9f7486c23028b5a2b4e012b4.png", + "thumb": "items/images/en/thumbs/cobra_and_crane_prime_guard.84b2733b9f7486c23028b5a2b4e012b4.128x128.png", + "subIcon": "sub_icons/weapon/prime_guard_128x128.png" + } + } + }, + { + "id": "639a941c74b02f008887784b", + "slug": "afuris_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AfurisPrimeBarrel", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Afuris Prime Barrel", + "icon": "items/images/en/afuris_prime_barrel.bfdca7167652c5c2d474ac75ea3af595.png", + "thumb": "items/images/en/thumbs/afuris_prime_barrel.bfdca7167652c5c2d474ac75ea3af595.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "639a941c74b02f008887784c", + "slug": "afuris_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeAfuris/PrimeAFurisWeapon", + "tags": [ + "prime", + "secondary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Afuris Prime Set", + "icon": "items/images/en/afuris_prime_set.bfdca7167652c5c2d474ac75ea3af595.png", + "thumb": "items/images/en/thumbs/afuris_prime_set.bfdca7167652c5c2d474ac75ea3af595.128x128.png" + } + } + }, + { + "id": "639a941d74b02f008887784d", + "slug": "afuris_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AfurisPrimeLink", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Afuris Prime Link", + "icon": "items/images/en/afuris_prime_link.bfdca7167652c5c2d474ac75ea3af595.png", + "thumb": "items/images/en/thumbs/afuris_prime_link.bfdca7167652c5c2d474ac75ea3af595.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "639a941d74b02f008887784e", + "slug": "cobra_and_crane_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/CobraCranePrimeBlueprint", + "tags": [ + "prime", + "weapon", + "melee", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cobra & Crane Prime Blueprint", + "icon": "items/images/en/cobra_and_crane_prime_blueprint.84b2733b9f7486c23028b5a2b4e012b4.png", + "thumb": "items/images/en/thumbs/cobra_and_crane_prime_blueprint.84b2733b9f7486c23028b5a2b4e012b4.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "639a941d74b02f008887784f", + "slug": "afuris_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AfurisPrimeBlueprint", + "tags": [ + "prime", + "secondary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Afuris Prime Blueprint", + "icon": "items/images/en/afuris_prime_blueprint.bfdca7167652c5c2d474ac75ea3af595.png", + "thumb": "items/images/en/thumbs/afuris_prime_blueprint.bfdca7167652c5c2d474ac75ea3af595.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "639a941d74b02f0088877850", + "slug": "cobra_and_crane_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CobraCranePrimeBlade", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Cobra & Crane Prime Blade", + "icon": "items/images/en/cobra_and_crane_prime_blade.84b2733b9f7486c23028b5a2b4e012b4.png", + "thumb": "items/images/en/thumbs/cobra_and_crane_prime_blade.84b2733b9f7486c23028b5a2b4e012b4.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "639a941d74b02f0088877851", + "slug": "cobra_and_crane_prime_hilt", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CobraCranePrimeHandle", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Cobra & Crane Prime Hilt", + "icon": "items/images/en/cobra_and_crane_prime_hilt.84b2733b9f7486c23028b5a2b4e012b4.png", + "thumb": "items/images/en/thumbs/cobra_and_crane_prime_hilt.84b2733b9f7486c23028b5a2b4e012b4.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "639a941e74b02f0088877852", + "slug": "cobra_and_crane_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/PrimeCobraAndCrane/PrimeCobraAndCraneWeapon", + "tags": [ + "prime", + "weapon", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Cobra & Crane Prime Set", + "icon": "items/images/en/cobra_and_crane_prime_set.84b2733b9f7486c23028b5a2b4e012b4.png", + "thumb": "items/images/en/thumbs/cobra_and_crane_prime_set.84b2733b9f7486c23028b5a2b4e012b4.128x128.png" + } + } + }, + { + "id": "639a941e74b02f0088877853", + "slug": "afuris_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AfurisPrimeReceiver", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Afuris Prime Receiver", + "icon": "items/images/en/afuris_prime_receiver.bfdca7167652c5c2d474ac75ea3af595.png", + "thumb": "items/images/en/thumbs/afuris_prime_receiver.bfdca7167652c5c2d474ac75ea3af595.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "63ee00fc10125411da49e6e6", + "slug": "corufell_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GunScytheReceiver", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Corufell Receiver", + "icon": "items/images/en/corufell_receiver.784286cecaf71b494449fa3fa721c641.png", + "thumb": "items/images/en/thumbs/corufell_receiver.784286cecaf71b494449fa3fa721c641.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "63ee00fc10125411da49e6e7", + "slug": "primary_plated_round", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryDamagePerAmmoOnReload", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Plated Round", + "icon": "items/images/en/primary_plated_round.db83727f4a2cc66deac96ae09ab0299f.png", + "thumb": "items/images/en/thumbs/primary_plated_round.db83727f4a2cc66deac96ae09ab0299f.128x128.png" + } + } + }, + { + "id": "63ee00fc10125411da49e6e8", + "slug": "shattered_storm", + "gameRef": "/Lotus/Powersuits/Glass/GlassShankAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "gara" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shattered Storm", + "icon": "items/images/en/shattered_storm.996913e600eef6b1909672d004dea161.png", + "thumb": "items/images/en/thumbs/shattered_storm.996913e600eef6b1909672d004dea161.128x128.png" + } + } + }, + { + "id": "63ee00fd10125411da49e6e9", + "slug": "cathode_current", + "gameRef": "/Lotus/Powersuits/Gyre/GyreEnergizedAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "gyre" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cathode Current", + "icon": "items/images/en/cathode_current.518865b7d6dd246b66a58217bf3aab8a.png", + "thumb": "items/images/en/thumbs/cathode_current.518865b7d6dd246b66a58217bf3aab8a.128x128.png" + } + } + }, + { + "id": "63ee00fd10125411da49e6ea", + "slug": "arcane_steadfast", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/NoCostCastChanceOnCast", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Steadfast", + "icon": "items/images/en/arcane_steadfast.ccf77e85d0ff32f127e1a71d38ea8c0e.png", + "thumb": "items/images/en/thumbs/arcane_steadfast.ccf77e85d0ff32f127e1a71d38ea8c0e.128x128.png" + } + } + }, + { + "id": "63ee00fd10125411da49e6ec", + "slug": "lith_d5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaLimboVaultB", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith D5 Relic", + "icon": "items/images/en/lith_d5_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_d5_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "63ee00fd10125411da49e6ed", + "slug": "steflos_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnoLotusPodShotgunBarrel", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Steflos Barrel", + "icon": "items/images/en/steflos_barrel.85c571f91d8c288ad8d544757a02d8ba.png", + "thumb": "items/images/en/thumbs/steflos_barrel.85c571f91d8c288ad8d544757a02d8ba.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "63ee00fd10125411da49e6ee", + "slug": "steflos_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnoLotusPodShotgunStock", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Steflos Stock", + "icon": "items/images/en/steflos_stock.85c571f91d8c288ad8d544757a02d8ba.png", + "thumb": "items/images/en/thumbs/steflos_stock.85c571f91d8c288ad8d544757a02d8ba.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "63ee00fe10125411da49e6f0", + "slug": "steflos_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnoLotusPodShotgun/TnoLotusPodShotgun", + "tags": [ + "weapon", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Steflos Set", + "icon": "items/images/en/steflos_set.85c571f91d8c288ad8d544757a02d8ba.png", + "thumb": "items/images/en/thumbs/steflos_set.85c571f91d8c288ad8d544757a02d8ba.128x128.png" + } + } + }, + { + "id": "63ee00fe10125411da49e6f1", + "slug": "corufell_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/ExaltedArchScythe/ExaltedAWScytheWeapon", + "tags": [ + "weapon", + "melee", + "set" + ], + "i18n": { + "en": { + "name": "Corufell Set", + "icon": "items/images/en/corufell_set.1361201225387534bc5dd7896424974c.png", + "thumb": "items/images/en/thumbs/corufell_set.1361201225387534bc5dd7896424974c.128x128.png" + } + } + }, + { + "id": "63ee00fe10125411da49e6f2", + "slug": "corufell_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GunScytheHandle", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Corufell Handle", + "icon": "items/images/en/corufell_handle.1361201225387534bc5dd7896424974c.png", + "thumb": "items/images/en/thumbs/corufell_handle.1361201225387534bc5dd7896424974c.128x128.png", + "subIcon": "sub_icons/weapon/generic_handle_128x128.png" + } + } + }, + { + "id": "63ee00fe10125411da49e6f3", + "slug": "lith_p7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionMesaLimboVaultA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P7 Relic", + "icon": "items/images/en/lith_p7_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_p7_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "63ee00fe10125411da49e6f4", + "slug": "arcane_double_back", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/DamageResistanceStacksOverTime", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Double Back", + "icon": "items/images/en/arcane_double_back.1ed9a591a41ea6c610f532f30b31ae22.png", + "thumb": "items/images/en/thumbs/arcane_double_back.1ed9a591a41ea6c610f532f30b31ae22.128x128.png" + } + } + }, + { + "id": "63ee00fe10125411da49e6f5", + "slug": "secondary_kinship", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryCritChancePerBuff", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Kinship", + "icon": "items/images/en/secondary_kinship.43ae6eafe467db9484220ac71028362d.png", + "thumb": "items/images/en/thumbs/secondary_kinship.43ae6eafe467db9484220ac71028362d.128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6f6", + "slug": "steflos_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnoLotusPodShotgunReceiver", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Steflos Receiver", + "icon": "items/images/en/steflos_receiver.85c571f91d8c288ad8d544757a02d8ba.png", + "thumb": "items/images/en/thumbs/steflos_receiver.85c571f91d8c288ad8d544757a02d8ba.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6f7", + "slug": "merulina_guardian", + "gameRef": "/Lotus/Powersuits/Yareli/YareliBoardAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "yareli" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Merulina Guardian", + "icon": "items/images/en/merulina_guardian.6d904a0724dbba4554bd3acdcd70c36a.png", + "thumb": "items/images/en/thumbs/merulina_guardian.6d904a0724dbba4554bd3acdcd70c36a.128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6f8", + "slug": "mesmer_shield", + "gameRef": "/Lotus/Powersuits/Revenant/RevenantSentientAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "revenant" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mesmer Shield", + "icon": "items/images/en/mesmer_shield.b0111bab0bb2d9c3faccc45e54e423d4.png", + "thumb": "items/images/en/thumbs/mesmer_shield.b0111bab0bb2d9c3faccc45e54e423d4.128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6f9", + "slug": "neo_r5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMesaLimboVaultB", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo R5 Relic", + "icon": "items/images/en/neo_r5_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_r5_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6fa", + "slug": "secondary_encumber", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/ExtraProcOnProc", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Encumber", + "icon": "items/images/en/secondary_encumber.0e6c3bb15956e965b63a16c90ea70a9d.png", + "thumb": "items/images/en/thumbs/secondary_encumber.0e6c3bb15956e965b63a16c90ea70a9d.128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6fb", + "slug": "neo_a9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionMesaLimboVaultA", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A9 Relic", + "icon": "items/images/en/neo_a9_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_a9_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6fc", + "slug": "meso_l2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionMesaLimboVaultA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso L2 Relic", + "icon": "items/images/en/meso_l2_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_l2_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "63ee00ff10125411da49e6fd", + "slug": "axi_m4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionMesaLimboVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi M4 Relic", + "icon": "items/images/en/axi_m4_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_m4_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "63ee010010125411da49e6fe", + "slug": "citrines_last_wish_factory_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothCitrinesLastWish", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Citrine's Last Wish Factory Scene", + "icon": "items/images/en/citrines_last_wish_factory_scene.ada19c70709531d5111e8a78f7c48496.png", + "thumb": "items/images/en/thumbs/citrines_last_wish_factory_scene.ada19c70709531d5111e8a78f7c48496.128x128.png" + } + } + }, + { + "id": "63ee010010125411da49e6ff", + "slug": "corufell_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GunScytheBlade", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Corufell Barrel", + "icon": "items/images/en/corufell_barrel.784286cecaf71b494449fa3fa721c641.png", + "thumb": "items/images/en/thumbs/corufell_barrel.784286cecaf71b494449fa3fa721c641.128x128.png", + "subIcon": "sub_icons/weapon/generic_blade_128x128.png" + } + } + }, + { + "id": "641263df7d179f02100c6d40", + "slug": "hildryn_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HildrynPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Hildryn Prime Blueprint", + "icon": "items/images/en/hildryn_prime_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.png", + "thumb": "items/images/en/thumbs/hildryn_prime_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d41", + "slug": "hildryn_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HildrynPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Hildryn Prime Systems Blueprint", + "icon": "items/images/en/hildryn_prime_systems_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.png", + "thumb": "items/images/en/thumbs/hildryn_prime_systems_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d42", + "slug": "shade_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/SentinelRecipes/ShadePrimeSentinelBlueprint", + "tags": [ + "sentinel", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Shade Prime Blueprint", + "icon": "items/images/en/shade_prime_blueprint.d4376af3d68e873e85f81f456c83b261.png", + "thumb": "items/images/en/thumbs/shade_prime_blueprint.d4376af3d68e873e85f81f456c83b261.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d43", + "slug": "hildryn_prime_set", + "gameRef": "/Lotus/Powersuits/IronFrame/IronFramePrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Hildryn Prime Set", + "icon": "items/images/en/hildryn_prime_set.7e3f1cd4b94baa590dde37cd0ad0ba9e.png", + "thumb": "items/images/en/thumbs/hildryn_prime_set.7e3f1cd4b94baa590dde37cd0ad0ba9e.128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d44", + "slug": "shade_prime_systems", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ShadePrimeSystems", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Shade Prime Systems", + "icon": "items/images/en/shade_prime_systems.d4376af3d68e873e85f81f456c83b261.png", + "thumb": "items/images/en/thumbs/shade_prime_systems.d4376af3d68e873e85f81f456c83b261.128x128.png", + "subIcon": "sub_icons/weapon/prime_systems_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d45", + "slug": "larkspur_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/PrimeLarkspur/PrimeLarkspurWeapon", + "tags": [ + "prime", + "archwing", + "weapon", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Larkspur Prime Set", + "icon": "items/images/en/larkspur_prime_set.592e684b836593e202891aea8b3a3f6c.png", + "thumb": "items/images/en/thumbs/larkspur_prime_set.592e684b836593e202891aea8b3a3f6c.128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d46", + "slug": "hildryn_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HildrynPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Hildryn Prime Neuroptics Blueprint", + "icon": "items/images/en/hildryn_prime_neuroptics_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.png", + "thumb": "items/images/en/thumbs/hildryn_prime_neuroptics_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d47", + "slug": "larkspur_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LarkspurPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Larkspur Prime Barrel", + "icon": "items/images/en/larkspur_prime_barrel.592e684b836593e202891aea8b3a3f6c.png", + "thumb": "items/images/en/thumbs/larkspur_prime_barrel.592e684b836593e202891aea8b3a3f6c.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d48", + "slug": "shade_prime_cerebrum", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ShadePrimeCerebrum", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Shade Prime Cerebrum", + "icon": "items/images/en/shade_prime_cerebrum.d4376af3d68e873e85f81f456c83b261.png", + "thumb": "items/images/en/thumbs/shade_prime_cerebrum.d4376af3d68e873e85f81f456c83b261.128x128.png", + "subIcon": "sub_icons/weapon/prime_cerebrum_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d49", + "slug": "shade_prime_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeShadePowerSuit", + "tags": [ + "prime", + "sentinel", + "set" + ], + "i18n": { + "en": { + "name": "Shade Prime Set", + "icon": "items/images/en/shade_prime_set.d4376af3d68e873e85f81f456c83b261.png", + "thumb": "items/images/en/thumbs/shade_prime_set.d4376af3d68e873e85f81f456c83b261.128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d4a", + "slug": "larkspur_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LarkspurPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Larkspur Prime Stock", + "icon": "items/images/en/larkspur_prime_stock.592e684b836593e202891aea8b3a3f6c.png", + "thumb": "items/images/en/thumbs/larkspur_prime_stock.592e684b836593e202891aea8b3a3f6c.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d4b", + "slug": "hildryn_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/HildrynPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Hildryn Prime Chassis Blueprint", + "icon": "items/images/en/hildryn_prime_chassis_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.png", + "thumb": "items/images/en/thumbs/hildryn_prime_chassis_blueprint.7e3f1cd4b94baa590dde37cd0ad0ba9e.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d4c", + "slug": "larkspur_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LarkspurPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Larkspur Prime Receiver", + "icon": "items/images/en/larkspur_prime_receiver.592e684b836593e202891aea8b3a3f6c.png", + "thumb": "items/images/en/thumbs/larkspur_prime_receiver.592e684b836593e202891aea8b3a3f6c.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d4d", + "slug": "shade_prime_carapace", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ShadePrimeCarapace", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Shade Prime Carapace", + "icon": "items/images/en/shade_prime_carapace.d4376af3d68e873e85f81f456c83b261.png", + "thumb": "items/images/en/thumbs/shade_prime_carapace.d4376af3d68e873e85f81f456c83b261.128x128.png", + "subIcon": "sub_icons/weapon/prime_carapace_128x128.png" + } + } + }, + { + "id": "641263e07d179f02100c6d4e", + "slug": "larkspur_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/LarkspurPrimeBlueprint", + "tags": [ + "prime", + "archwing", + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Larkspur Prime Blueprint", + "icon": "items/images/en/larkspur_prime_blueprint.592e684b836593e202891aea8b3a3f6c.png", + "thumb": "items/images/en/thumbs/larkspur_prime_blueprint.592e684b836593e202891aea8b3a3f6c.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "641264a47d179f02190e41e3", + "slug": "lith_s15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHildrynPrimeB", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S15 Relic", + "icon": "items/images/en/lith_s15_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_s15_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "641264a47d179f02190e41e4", + "slug": "meso_n14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHildrynPrimeC", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N14 Relic", + "icon": "items/images/en/meso_n14_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_n14_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "641264a47d179f02190e41e5", + "slug": "lith_r3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHildrynPrimeE", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith R3 Relic", + "icon": "items/images/en/lith_r3_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_r3_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "641264a47d179f02190e41e6", + "slug": "meso_d7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHildrynPrimeD", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso D7 Relic", + "icon": "items/images/en/meso_d7_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_d7_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "641264a47d179f02190e41e7", + "slug": "axi_h6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHildrynPrimeA", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H6 Relic", + "icon": "items/images/en/axi_h6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_h6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "641264a47d179f02190e41e8", + "slug": "lith_b11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHildrynPrimeC", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith B11 Relic", + "icon": "items/images/en/lith_b11_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_b11_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41e9", + "slug": "meso_s12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHildrynPrimeE", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S12 Relic", + "icon": "items/images/en/meso_s12_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_s12_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41ea", + "slug": "lith_h8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHildrynPrimeA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H8 Relic", + "icon": "items/images/en/lith_h8_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_h8_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41eb", + "slug": "meso_h4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHildrynPrimeB", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H4 Relic", + "icon": "items/images/en/meso_h4_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_h4_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41ec", + "slug": "axi_g10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHildrynPrimeC", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G10 Relic", + "icon": "items/images/en/axi_g10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_g10_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41ed", + "slug": "axi_a16_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHildrynPrimeB", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A16 Relic", + "icon": "items/images/en/axi_a16_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_a16_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41ee", + "slug": "neo_s17_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHildrynPrimeA", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S17 Relic", + "icon": "items/images/en/neo_s17_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_s17_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41ef", + "slug": "neo_n22_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHildrynPrimeC", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N22 Relic", + "icon": "items/images/en/neo_n22_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_n22_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41f0", + "slug": "axi_b6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHildrynPrimeD", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B6 Relic", + "icon": "items/images/en/axi_b6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_b6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41f1", + "slug": "axi_k11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHildrynPrimeE", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K11 Relic", + "icon": "items/images/en/axi_k11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_k11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41f2", + "slug": "lith_k10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHildrynPrimeD", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K10 Relic", + "icon": "items/images/en/lith_k10_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_k10_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41f3", + "slug": "neo_l2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHildrynPrimeB", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo L2 Relic", + "icon": "items/images/en/neo_l2_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_l2_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "641264a57d179f02190e41f4", + "slug": "meso_p11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHildrynPrimeA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P11 Relic", + "icon": "items/images/en/meso_p11_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p11_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "644b00217ec1900044b97722", + "slug": "primary_obstruct", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryJamEnemyWeaponsOnMagneticProc", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Obstruct", + "icon": "items/images/en/primary_obstruct.fdedb1774329c76fa8083cf43fa76a06.png", + "thumb": "items/images/en/thumbs/primary_obstruct.fdedb1774329c76fa8083cf43fa76a06.128x128.png" + } + } + }, + { + "id": "644b00227ec1900044b97723", + "slug": "arcane_intention", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/HealthWhileUsingChanneledAbilities", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Intention", + "icon": "items/images/en/arcane_intention.2d412880c8134b5078de0b9debf2a9e7.png", + "thumb": "items/images/en/thumbs/arcane_intention.2d412880c8134b5078de0b9debf2a9e7.128x128.png" + } + } + }, + { + "id": "644b00227ec1900044b97724", + "slug": "secondary_shiver", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryExtraDamagePerFreezeStack", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Shiver", + "icon": "items/images/en/secondary_shiver.e169db6259133538ca86090ac481840a.png", + "thumb": "items/images/en/thumbs/secondary_shiver.e169db6259133538ca86090ac481840a.128x128.png" + } + } + }, + { + "id": "644b00227ec1900044b97725", + "slug": "lith_v10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionInarosAshVaultA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith V10 Relic", + "icon": "items/images/en/lith_v10_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_v10_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "644b00227ec1900044b97726", + "slug": "meso_p12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionInarosAshVaultA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P12 Relic", + "icon": "items/images/en/meso_p12_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p12_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "644b00227ec1900044b97727", + "slug": "longbow_sharpshot", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/LongbowDamageOnHeadshot", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Longbow Sharpshot", + "icon": "items/images/en/longbow_sharpshot.1edd43d82c3b61da2555a2ccb9ba9332.png", + "thumb": "items/images/en/thumbs/longbow_sharpshot.1edd43d82c3b61da2555a2ccb9ba9332.128x128.png" + } + } + }, + { + "id": "644b00227ec1900044b97728", + "slug": "netherbarrow_region_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriMainlandAEast", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Netherbarrow Region Scene", + "icon": "items/images/en/netherbarrow_region_scene.37ce2a8b1691e2f12e7563f1c05bbdca.png", + "thumb": "items/images/en/thumbs/netherbarrow_region_scene.37ce2a8b1691e2f12e7563f1c05bbdca.128x128.png" + } + } + }, + { + "id": "644b00227ec1900044b97729", + "slug": "shotgun_vendetta", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/ShotgunMultishotAndReloadSpeedOnCloseKill", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Shotgun Vendetta", + "icon": "items/images/en/shotgun_vendetta.219b0d47d26345b989decc3a56326c54.png", + "thumb": "items/images/en/thumbs/shotgun_vendetta.219b0d47d26345b989decc3a56326c54.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b9772a", + "slug": "undercroft_opera_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriArenaOpera", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Undercroft Opera Scene", + "icon": "items/images/en/undercroft_opera_scene.df9f214b282faf77d407eac32f2409af.png", + "thumb": "items/images/en/thumbs/undercroft_opera_scene.df9f214b282faf77d407eac32f2409af.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b9772b", + "slug": "neo_a10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionInarosAshVaultA", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A10 Relic", + "icon": "items/images/en/neo_a10_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_a10_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b9772c", + "slug": "axi_k12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionInarosAshVaultB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi K12 Relic", + "icon": "items/images/en/axi_k12_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_k12_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b9772d", + "slug": "axi_i3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionInarosAshVaultA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi I3 Relic", + "icon": "items/images/en/axi_i3_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_i3_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b9772e", + "slug": "magus_aggress", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/OperatorHeavyMeleeDamageOnTransference", + "tags": [ + "uncommon", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Magus Aggress", + "icon": "items/images/en/magus_aggress.03f6a273fe2e6e2b3720957cf32c2adf.png", + "thumb": "items/images/en/thumbs/magus_aggress.03f6a273fe2e6e2b3720957cf32c2adf.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b9772f", + "slug": "meso_c7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionInarosAshVaultB", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C7 Relic", + "icon": "items/images/en/meso_c7_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_c7_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b97730", + "slug": "undercroft_park_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriArenaPark", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Undercroft Park Scene", + "icon": "items/images/en/undercroft_park_scene.0e97b9557b85e2024781081ef8e9b22b.png", + "thumb": "items/images/en/thumbs/undercroft_park_scene.0e97b9557b85e2024781081ef8e9b22b.128x128.png" + } + } + }, + { + "id": "644b00237ec1900044b97731", + "slug": "castle_town_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriMainlandTown", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Castle Town Scene", + "icon": "items/images/en/castle_town_scene.231d87ca9386326ebf23ecc28ed8713e.png", + "thumb": "items/images/en/thumbs/castle_town_scene.231d87ca9386326ebf23ecc28ed8713e.128x128.png" + } + } + }, + { + "id": "644b00247ec1900044b97732", + "slug": "mainland_hamlets_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriMainlandA", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Mainland Hamlets Scene", + "icon": "items/images/en/mainland_hamlets_scene.21438b2e2c3d43fdc1e2d2dab61e81e9.png", + "thumb": "items/images/en/thumbs/mainland_hamlets_scene.21438b2e2c3d43fdc1e2d2dab61e81e9.128x128.png" + } + } + }, + { + "id": "644b00247ec1900044b97733", + "slug": "arcane_reaper", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/OperatorArmour/HealthRegenAndArmorOnMeleeKill", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Reaper", + "icon": "items/images/en/arcane_reaper.5eaac187d816d010ec44ee1a05979564.png", + "thumb": "items/images/en/thumbs/arcane_reaper.5eaac187d816d010ec44ee1a05979564.128x128.png" + } + } + }, + { + "id": "644b00247ec1900044b97734", + "slug": "upperhaven_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriMainlandAWest", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Upperhaven Scene", + "icon": "items/images/en/upperhaven_scene.21d02af0aebb98c6d35de2a4e4de3a9e.png", + "thumb": "items/images/en/thumbs/upperhaven_scene.21d02af0aebb98c6d35de2a4e4de3a9e.128x128.png" + } + } + }, + { + "id": "644b00247ec1900044b97735", + "slug": "mountains_edge", + "gameRef": "/Lotus/Weapons/Tenno/Melee/MeleeTrees/DualKatanaCmbOneMeleeTree", + "tags": [ + "mod", + "uncommon", + "stance", + "dual_nikanas" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Mountain's Edge", + "icon": "items/images/en/mountains_edge.04f58be6d468001292df3dd94559a96c.png", + "thumb": "items/images/en/thumbs/mountains_edge.04f58be6d468001292df3dd94559a96c.128x128.png" + } + } + }, + { + "id": "644b00247ec1900044b97736", + "slug": "orowyrm_arena_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriDragonArena", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Orowyrm Arena Scene", + "icon": "items/images/en/orowyrm_arena_scene.8f093769b21dd47231b44837cd3835d1.png", + "thumb": "items/images/en/thumbs/orowyrm_arena_scene.8f093769b21dd47231b44837cd3835d1.128x128.png" + } + } + }, + { + "id": "644b00257ec1900044b97737", + "slug": "primary_exhilarate", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryEnergyRegenOnImpactProc", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Exhilarate", + "icon": "items/images/en/primary_exhilarate.faf6786dd12bc3e40a3c88a6b5bfac22.png", + "thumb": "items/images/en/thumbs/primary_exhilarate.faf6786dd12bc3e40a3c88a6b5bfac22.128x128.png" + } + } + }, + { + "id": "645104637ec190030e510936", + "slug": "cinta_upper_limb_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DaxDuviriAsymmetricalLongBowUpperLimbBlueprint", + "tags": [ + "component", + "weapon", + "blueprint" + ], + "subtypes": [ + "crafted", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cinta Upper Limb Blueprint", + "icon": "items/images/en/cinta_upper_limb_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.png", + "thumb": "items/images/en/thumbs/cinta_upper_limb_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.128x128.png", + "subIcon": "sub_icons/weapon/generic_limb_128x128.png" + } + } + }, + { + "id": "645104637ec190030e510937", + "slug": "cinta_grip_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DaxDuviriAsymmetricalLongBowGripBlueprint", + "tags": [ + "component", + "weapon", + "blueprint" + ], + "subtypes": [ + "crafted", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cinta Grip Blueprint", + "icon": "items/images/en/cinta_grip_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.png", + "thumb": "items/images/en/thumbs/cinta_grip_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.128x128.png", + "subIcon": "sub_icons/weapon/generic_grip_128x128.png" + } + } + }, + { + "id": "645104637ec190030e510938", + "slug": "cinta_string_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DaxDuviriAsymmetricalLongBowStringBlueprint", + "tags": [ + "component", + "weapon", + "blueprint" + ], + "subtypes": [ + "crafted", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cinta String Blueprint", + "icon": "items/images/en/cinta_string_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.png", + "thumb": "items/images/en/thumbs/cinta_string_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.128x128.png", + "subIcon": "sub_icons/weapon/generic_string_128x128.png" + } + } + }, + { + "id": "645104637ec190030e510939", + "slug": "cinta_set", + "gameRef": "/Lotus/Weapons/Tenno/Bows/DaxDuviriAsymetricalBow/DaxDuviriAsymmetricalLongBowPlayerWeapon", + "tags": [ + "weapon", + "primary", + "set" + ], + "subtypes": [ + "crafted", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cinta Set", + "icon": "items/images/en/cinta_set.b194993855e39e7e4c47706e7344736e.png", + "thumb": "items/images/en/thumbs/cinta_set.b194993855e39e7e4c47706e7344736e.128x128.png" + } + } + }, + { + "id": "645104637ec190030e51093a", + "slug": "cinta_lower_limb_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DaxDuviriAsymmetricalLongBowLowerLimbBlueprint", + "tags": [ + "component", + "weapon", + "blueprint" + ], + "subtypes": [ + "crafted", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cinta Lower Limb Blueprint", + "icon": "items/images/en/cinta_lower_limb_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.png", + "thumb": "items/images/en/thumbs/cinta_lower_limb_blueprint.9362297c3ebd9acd6e874dd3b8a85e34.128x128.png", + "subIcon": "sub_icons/weapon/generic_limb_128x128.png" + } + } + }, + { + "id": "645ba2a57ec1900802a58a42", + "slug": "amphitheater_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriIsleSignatureAmphitheatre", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Amphitheater Scene", + "icon": "items/images/en/amphitheater_scene.23a9a3017c71e6d52f8c27871f294649.png", + "thumb": "items/images/en/thumbs/amphitheater_scene.23a9a3017c71e6d52f8c27871f294649.128x128.png" + } + } + }, + { + "id": "645ba2a57ec1900802a58a43", + "slug": "namaes", + "gameRef": "/Lotus/Types/Gameplay/Duviri/Resource/Fish/DuviriFishDItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small" + ], + "i18n": { + "en": { + "name": "Namaes", + "icon": "items/images/en/namaes.37fb90afc87b94c2c5efbf54ed37a334.png", + "thumb": "items/images/en/thumbs/namaes.37fb90afc87b94c2c5efbf54ed37a334.128x128.png" + } + } + }, + { + "id": "645ba2a57ec1900802a58a44", + "slug": "haav", + "gameRef": "/Lotus/Types/Gameplay/Duviri/Resource/Fish/DuviriFishCItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small" + ], + "i18n": { + "en": { + "name": "Haav", + "icon": "items/images/en/haav.4d650b51ed938546b787f4d2d2f73838.png", + "thumb": "items/images/en/thumbs/haav.4d650b51ed938546b787f4d2d2f73838.128x128.png" + } + } + }, + { + "id": "645ba2a57ec1900802a58a45", + "slug": "xiran", + "gameRef": "/Lotus/Types/Gameplay/Duviri/Resource/Fish/DuviriFishBItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small" + ], + "i18n": { + "en": { + "name": "Xiran", + "icon": "items/images/en/xiran.29027ac9267e9979b3e6cd14120c3c2c.png", + "thumb": "items/images/en/thumbs/xiran.29027ac9267e9979b3e6cd14120c3c2c.128x128.png" + } + } + }, + { + "id": "645ba2a67ec1900802a58a46", + "slug": "teshins_cave_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriTeshinsCave", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Teshin's Cave Scene", + "icon": "items/images/en/teshins_cave_scene.45ae9de5d7625f6164ceea64fa009f83.png", + "thumb": "items/images/en/thumbs/teshins_cave_scene.45ae9de5d7625f6164ceea64fa009f83.128x128.png" + } + } + }, + { + "id": "645ba2a67ec1900802a58a47", + "slug": "seonn", + "gameRef": "/Lotus/Types/Gameplay/Duviri/Resource/Fish/DuviriFishEItem", + "tags": [ + "fish" + ], + "subtypes": [ + "small" + ], + "i18n": { + "en": { + "name": "Seonn", + "icon": "items/images/en/seonn.7390238e2129d768901d3b289407169b.png", + "thumb": "items/images/en/thumbs/seonn.7390238e2129d768901d3b289407169b.128x128.png" + } + } + }, + { + "id": "645ba2a67ec1900802a58a48", + "slug": "archarbor_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriIsleSignatureLibrary", + "tags": [ + "scene", + "misc" + ], + "i18n": { + "en": { + "name": "Archarbor Scene", + "icon": "items/images/en/archarbor_scene.b9733126ebce3f699799ee1c94b496b5.png", + "thumb": "items/images/en/thumbs/archarbor_scene.b9733126ebce3f699799ee1c94b496b5.128x128.png" + } + } + }, + { + "id": "645ba2a67ec1900802a58a49", + "slug": "inaak", + "gameRef": "/Lotus/Types/Gameplay/Duviri/Resource/Fish/DuviriFishAItem", + "tags": [ + "fish" + ], + "bulkTradable": true, + "subtypes": [ + "small" + ], + "i18n": { + "en": { + "name": "Inaak", + "icon": "items/images/en/inaak.1844cea2c8d539d0c9e00adc0382749d.png", + "thumb": "items/images/en/thumbs/inaak.1844cea2c8d539d0c9e00adc0382749d.128x128.png" + } + } + }, + { + "id": "6467860a7ec1900db1ca9cc6", + "slug": "prisma_lenz", + "gameRef": "/Lotus/Weapons/Corpus/Bow/Longbow/PrismaLenz/PrismaLenzWeapon", + "tags": [ + "weapon", + "primary" + ], + "i18n": { + "en": { + "name": "Prisma Lenz", + "icon": "items/images/en/prisma_lenz.36c488cabc262314b09b01127c7fbc6f.png", + "thumb": "items/images/en/thumbs/prisma_lenz.36c488cabc262314b09b01127c7fbc6f.128x128.png" + } + } + }, + { + "id": "64743c757ec190141a5475b1", + "slug": "sentient_surge", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/Nightwave/NightwaveOcucorAugmentMod", + "tags": [ + "mod", + "rare", + "secondary", + "ocucor" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sentient Surge", + "icon": "items/images/en/sentient_surge.0038481d6a62e17de99e18538255bce7.png", + "thumb": "items/images/en/thumbs/sentient_surge.0038481d6a62e17de99e18538255bce7.128x128.png" + } + } + }, + { + "id": "64743c767ec190141a5475b2", + "slug": "sentient_barrage", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveBattacorAugmentMod", + "tags": [ + "mod", + "rare", + "primary", + "battacor" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Sentient Barrage", + "icon": "items/images/en/sentient_barrage.56ea620051ec823fec68b76423b08288.png", + "thumb": "items/images/en/thumbs/sentient_barrage.56ea620051ec823fec68b76423b08288.128x128.png" + } + } + }, + { + "id": "649322af7ec190215a693091", + "slug": "arcane_power_ramp", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/AbilityStrengthOnCast", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Power Ramp", + "icon": "items/images/en/arcane_power_ramp.3acad1eaec440c1505c01661a7228664.png", + "thumb": "items/images/en/thumbs/arcane_power_ramp.3acad1eaec440c1505c01661a7228664.128x128.png" + } + } + }, + { + "id": "649322af7ec190215a693092", + "slug": "primary_blight", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/PrimaryHeadshotCritMultOnHeadshot", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Blight", + "icon": "items/images/en/primary_blight.7dc9243c44441b2b46f7e1dc55eae1d0.png", + "thumb": "items/images/en/thumbs/primary_blight.7dc9243c44441b2b46f7e1dc55eae1d0.128x128.png" + } + } + }, + { + "id": "649322b07ec190215a693093", + "slug": "secondary_outburst", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/MultishotForCombo", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Outburst", + "icon": "items/images/en/secondary_outburst.01c8242b80d987650c8e240454b93249.png", + "thumb": "items/images/en/thumbs/secondary_outburst.01c8242b80d987650c8e240454b93249.128x128.png" + } + } + }, + { + "id": "649322b07ec190215a693094", + "slug": "akimbo_slip_shot", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/AmmoEfficiencyOnSliding", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Akimbo Slip Shot", + "icon": "items/images/en/akimbo_slip_shot.9cb48cdcc739b5306bb4e2a8b3868e72.png", + "thumb": "items/images/en/thumbs/akimbo_slip_shot.9cb48cdcc739b5306bb4e2a8b3868e72.128x128.png" + } + } + }, + { + "id": "6493d52a7ec1902281122e72", + "slug": "rauta_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PaxDuviricusShotgunBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Rauta Barrel", + "icon": "items/images/en/rauta_barrel.cbe84e8e7131f82a5af0e4964dbbde79.png", + "thumb": "items/images/en/thumbs/rauta_barrel.cbe84e8e7131f82a5af0e4964dbbde79.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "6493d52b7ec1902281122e73", + "slug": "rauta_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PaxDuviricusShotgun/PaxDuviricusShotgun", + "tags": [ + "weapon", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Rauta Set", + "icon": "items/images/en/rauta_set.cbe84e8e7131f82a5af0e4964dbbde79.png", + "thumb": "items/images/en/thumbs/rauta_set.cbe84e8e7131f82a5af0e4964dbbde79.128x128.png" + } + } + }, + { + "id": "6493d52b7ec1902281122e74", + "slug": "rauta_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PaxDuviricusShotgunReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Rauta Receiver", + "icon": "items/images/en/rauta_receiver.cbe84e8e7131f82a5af0e4964dbbde79.png", + "thumb": "items/images/en/thumbs/rauta_receiver.cbe84e8e7131f82a5af0e4964dbbde79.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "6493d52b7ec1902281122e75", + "slug": "rauta_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/PaxDuviricusShotgunStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Rauta Stock", + "icon": "items/images/en/rauta_stock.cbe84e8e7131f82a5af0e4964dbbde79.png", + "thumb": "items/images/en/thumbs/rauta_stock.cbe84e8e7131f82a5af0e4964dbbde79.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba2b", + "slug": "neo_l3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWispPrimeE", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo L3 Relic", + "icon": "items/images/en/neo_l3_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_l3_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba2c", + "slug": "meso_c8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWispPrimeD", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C8 Relic", + "icon": "items/images/en/meso_c8_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_c8_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba2d", + "slug": "wisp_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WispPrimeChassisBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wisp Prime Chassis Blueprint", + "icon": "items/images/en/wisp_prime_chassis_blueprint.609bc4e8676a77247cc126ca150cb132.png", + "thumb": "items/images/en/thumbs/wisp_prime_chassis_blueprint.609bc4e8676a77247cc126ca150cb132.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba2e", + "slug": "gunsen_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/GunsenPrimeBlueprint", + "tags": [ + "melee", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gunsen Prime Blueprint", + "icon": "items/images/en/gunsen_prime_blueprint.a344dbe97a8e1968c9f04f1f21145edf.png", + "thumb": "items/images/en/thumbs/gunsen_prime_blueprint.a344dbe97a8e1968c9f04f1f21145edf.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba2f", + "slug": "gunsen_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Warfan/PrimeGunsen/PrimeGunsenWeapon", + "tags": [ + "melee", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Gunsen Prime Set", + "icon": "items/images/en/gunsen_prime_set.a344dbe97a8e1968c9f04f1f21145edf.png", + "thumb": "items/images/en/thumbs/gunsen_prime_set.a344dbe97a8e1968c9f04f1f21145edf.128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba30", + "slug": "fulmin_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/FulminPrimeBlueprint", + "tags": [ + "primary", + "prime", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Fulmin Prime Blueprint", + "icon": "items/images/en/fulmin_prime_blueprint.a7295ff536f9f735088ebb3adc7c5958.png", + "thumb": "items/images/en/thumbs/fulmin_prime_blueprint.a7295ff536f9f735088ebb3adc7c5958.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba31", + "slug": "gunsen_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GunsenPrimeHandle", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Gunsen Prime Handle", + "icon": "items/images/en/gunsen_prime_handle.a344dbe97a8e1968c9f04f1f21145edf.png", + "thumb": "items/images/en/thumbs/gunsen_prime_handle.a344dbe97a8e1968c9f04f1f21145edf.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba32", + "slug": "fulmin_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/FulminPrimeBarrel", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Fulmin Prime Barrel", + "icon": "items/images/en/fulmin_prime_barrel.a7295ff536f9f735088ebb3adc7c5958.png", + "thumb": "items/images/en/thumbs/fulmin_prime_barrel.a7295ff536f9f735088ebb3adc7c5958.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba33", + "slug": "neo_c4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWispPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo C4 Relic", + "icon": "items/images/en/neo_c4_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_c4_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba34", + "slug": "neo_d7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWispPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D7 Relic", + "icon": "items/images/en/neo_d7_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_d7_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba35", + "slug": "wisp_prime_set", + "gameRef": "/Lotus/Powersuits/Wisp/WispPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Wisp Prime Set", + "icon": "items/images/en/wisp_prime_set.609bc4e8676a77247cc126ca150cb132.png", + "thumb": "items/images/en/thumbs/wisp_prime_set.609bc4e8676a77247cc126ca150cb132.128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba36", + "slug": "fulmin_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeFulmin/PrimeFulmin", + "tags": [ + "primary", + "prime", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Fulmin Prime Set", + "icon": "items/images/en/fulmin_prime_set.a7295ff536f9f735088ebb3adc7c5958.png", + "thumb": "items/images/en/thumbs/fulmin_prime_set.a7295ff536f9f735088ebb3adc7c5958.128x128.png" + } + } + }, + { + "id": "64c2aa1466456704eba6ba37", + "slug": "fulmin_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/FulminPrimeStock", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Fulmin Prime Stock", + "icon": "items/images/en/fulmin_prime_stock.a7295ff536f9f735088ebb3adc7c5958.png", + "thumb": "items/images/en/thumbs/fulmin_prime_stock.a7295ff536f9f735088ebb3adc7c5958.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba38", + "slug": "wisp_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WispPrimeHelmetBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wisp Prime Neuroptics Blueprint", + "icon": "items/images/en/wisp_prime_neuroptics_blueprint.609bc4e8676a77247cc126ca150cb132.png", + "thumb": "items/images/en/thumbs/wisp_prime_neuroptics_blueprint.609bc4e8676a77247cc126ca150cb132.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba39", + "slug": "neo_f2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWispPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo F2 Relic", + "icon": "items/images/en/neo_f2_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_f2_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba3a", + "slug": "neo_n23_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWispPrimeF", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N23 Relic", + "icon": "items/images/en/neo_n23_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_n23_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba3b", + "slug": "lith_h9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionWispPrimeB", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H9 Relic", + "icon": "items/images/en/lith_h9_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_h9_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba3c", + "slug": "meso_g5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWispPrimeA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso G5 Relic", + "icon": "items/images/en/meso_g5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_g5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba3d", + "slug": "intrepid_stand", + "gameRef": "/Lotus/Powersuits/Hoplite/HopliteArmyAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "styanax" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Intrepid Stand", + "icon": "items/images/en/intrepid_stand.a6678ae3974e7ce5e582d431356bcfac.png", + "thumb": "items/images/en/thumbs/intrepid_stand.a6678ae3974e7ce5e582d431356bcfac.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba3e", + "slug": "axi_w3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWispPrimeA", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi W3 Relic", + "icon": "items/images/en/axi_w3_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_w3_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba3f", + "slug": "gunsen_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/GunsenPrimeBlade", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Gunsen Prime Blade", + "icon": "items/images/en/gunsen_prime_blade.a344dbe97a8e1968c9f04f1f21145edf.png", + "thumb": "items/images/en/thumbs/gunsen_prime_blade.a344dbe97a8e1968c9f04f1f21145edf.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba40", + "slug": "ulfruns_endurance", + "gameRef": "/Lotus/Powersuits/Werewolf/WerewolfHowlAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "voruna" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ulfrun's Endurance", + "icon": "items/images/en/ulfruns_endurance.cefe2f00e792eb8481cefbb0731b75e8.png", + "thumb": "items/images/en/thumbs/ulfruns_endurance.cefe2f00e792eb8481cefbb0731b75e8.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba41", + "slug": "lith_w3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionWispPrimeA", + "tags": [ + "relic", + "lith" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith W3 Relic", + "icon": "items/images/en/lith_w3_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_w3_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba42", + "slug": "meso_p13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWispPrimeC", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P13 Relic", + "icon": "items/images/en/meso_p13_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p13_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "64c2aa1566456704eba6ba43", + "slug": "temporal_erosion", + "gameRef": "/Lotus/Powersuits/Odalisk/OdaliskAnchorAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "protea" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Temporal Erosion", + "icon": "items/images/en/temporal_erosion.3ec11d68874ffe97d9c9b37ad6b265c6.png", + "thumb": "items/images/en/thumbs/temporal_erosion.3ec11d68874ffe97d9c9b37ad6b265c6.128x128.png" + } + } + }, + { + "id": "64c2aa1666456704eba6ba44", + "slug": "wisp_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WispPrimeSystemsBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wisp Prime Systems Blueprint", + "icon": "items/images/en/wisp_prime_systems_blueprint.609bc4e8676a77247cc126ca150cb132.png", + "thumb": "items/images/en/thumbs/wisp_prime_systems_blueprint.609bc4e8676a77247cc126ca150cb132.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "64c2aa1666456704eba6ba45", + "slug": "shadow_haze", + "gameRef": "/Lotus/Powersuits/Wraith/WraithReapAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "sevagoth" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Shadow Haze", + "icon": "items/images/en/shadow_haze.66eff73bdcc0450428a261bc5492af59.png", + "thumb": "items/images/en/thumbs/shadow_haze.66eff73bdcc0450428a261bc5492af59.128x128.png" + } + } + }, + { + "id": "64c2aa1666456704eba6ba46", + "slug": "fulmin_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/FulminPrimeReceiver", + "tags": [ + "prime", + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Fulmin Prime Receiver", + "icon": "items/images/en/fulmin_prime_receiver.a7295ff536f9f735088ebb3adc7c5958.png", + "thumb": "items/images/en/thumbs/fulmin_prime_receiver.a7295ff536f9f735088ebb3adc7c5958.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "64c2aa1666456704eba6ba47", + "slug": "meso_k6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionWispPrimeB", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso K6 Relic", + "icon": "items/images/en/meso_k6_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_k6_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "64c2aa1666456704eba6ba48", + "slug": "axi_h7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionWispPrimeB", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H7 Relic", + "icon": "items/images/en/axi_h7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_h7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "64c2aa1666456704eba6ba49", + "slug": "neo_t7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionWispPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T7 Relic", + "icon": "items/images/en/neo_t7_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_t7_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "64c2aa1666456704eba6ba4a", + "slug": "wisp_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/WispPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Wisp Prime Blueprint", + "icon": "items/images/en/wisp_prime_blueprint.609bc4e8676a77247cc126ca150cb132.png", + "thumb": "items/images/en/thumbs/wisp_prime_blueprint.609bc4e8676a77247cc126ca150cb132.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "64c2ab1c66456704fef15835", + "slug": "eximus_advantage", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveZylokAugmentMod", + "tags": [ + "mod", + "rare", + "secondary", + "zylok" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Eximus Advantage", + "icon": "items/images/en/eximus_advantage.fcd7be359bf4beb90e4bc196949cc101.png", + "thumb": "items/images/en/thumbs/eximus_advantage.fcd7be359bf4beb90e4bc196949cc101.128x128.png" + } + } + }, + { + "id": "64c2ab1c66456704fef15836", + "slug": "metamorphic_magazine", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveGorgonAugmentMod", + "tags": [ + "mod", + "rare", + "primary", + "gorgon" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Metamorphic Magazine", + "icon": "items/images/en/metamorphic_magazine.b21323de489f84be2c8b365fa0833453.png", + "thumb": "items/images/en/thumbs/metamorphic_magazine.b21323de489f84be2c8b365fa0833453.128x128.png" + } + } + }, + { + "id": "64c3a3a16645670594f57a5c", + "slug": "dais_cay_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriIsleCapB", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Dais Cay Scene", + "icon": "items/images/en/dais_cay_scene.28d160ccc01448a7d0dbc156375caff5.png", + "thumb": "items/images/en/thumbs/dais_cay_scene.28d160ccc01448a7d0dbc156375caff5.128x128.png" + } + } + }, + { + "id": "64c3a3a16645670594f57a5d", + "slug": "undercroft_outskirts_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriArenaVoidNether", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Undercroft Outskirts Scene", + "icon": "items/images/en/undercroft_outskirts_scene.64ab5b1b16a005d3c40557037ba6d77d.png", + "thumb": "items/images/en/thumbs/undercroft_outskirts_scene.64ab5b1b16a005d3c40557037ba6d77d.128x128.png" + } + } + }, + { + "id": "64c3a3a26645670594f57a5e", + "slug": "little_cay_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriIsleCapD", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Little Cay Scene", + "icon": "items/images/en/little_cay_scene.5be4bd563aae1193b7b718a466a99df3.png", + "thumb": "items/images/en/thumbs/little_cay_scene.5be4bd563aae1193b7b718a466a99df3.128x128.png" + } + } + }, + { + "id": "64c3a3a26645670594f57a5f", + "slug": "crater_cay_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriIsleCapA", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Crater Cay Scene", + "icon": "items/images/en/crater_cay_scene.de527a52925ae3cc371783852fba42e8.png", + "thumb": "items/images/en/thumbs/crater_cay_scene.de527a52925ae3cc371783852fba42e8.128x128.png" + } + } + }, + { + "id": "64c3a3a26645670594f57a60", + "slug": "winding_isles_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriIsleCapC", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Winding Isles Scene", + "icon": "items/images/en/winding_isles_scene.c416fa04313a40e363f24b4d86a7c689.png", + "thumb": "items/images/en/thumbs/winding_isles_scene.c416fa04313a40e363f24b4d86a7c689.128x128.png" + } + } + }, + { + "id": "64c3a3a26645670594f57a61", + "slug": "basin_cay_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriIsleCapE", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Basin Cay Scene", + "icon": "items/images/en/basin_cay_scene.4a1f6e877d66597ad660f77c2b6ae84a.png", + "thumb": "items/images/en/thumbs/basin_cay_scene.4a1f6e877d66597ad660f77c2b6ae84a.128x128.png" + } + } + }, + { + "id": "64c3a3a26645670594f57a62", + "slug": "undercroft_dax_camp_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriArenaDaxCamp", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Undercroft Dax Camp Scene", + "icon": "items/images/en/undercroft_dax_camp_scene.718f1c3f156c7f17cc2f983e2fc4ce03.png", + "thumb": "items/images/en/thumbs/undercroft_dax_camp_scene.718f1c3f156c7f17cc2f983e2fc4ce03.128x128.png" + } + } + }, + { + "id": "64c3a3a26645670594f57a63", + "slug": "undercroft_township_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriArenaTown", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Undercroft Township Scene", + "icon": "items/images/en/undercroft_township_scene.bc6e9c055ab697ffc5dd44a5331c338d.png", + "thumb": "items/images/en/thumbs/undercroft_township_scene.bc6e9c055ab697ffc5dd44a5331c338d.128x128.png" + } + } + }, + { + "id": "64c3a3a36645670594f57a64", + "slug": "undercroft_lunaro_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriArenaLunaro", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Undercroft Lunaro Scene", + "icon": "items/images/en/undercroft_lunaro_scene.490c1e3a363e1e7e00ee4881692d9a6d.png", + "thumb": "items/images/en/thumbs/undercroft_lunaro_scene.490c1e3a363e1e7e00ee4881692d9a6d.128x128.png" + } + } + }, + { + "id": "64df999889997a0052defcb1", + "slug": "prisma_ohma", + "gameRef": "/Lotus/Weapons/Corpus/Melee/CrpTonfa/CrpPrismaTonfa", + "tags": [ + "melee", + "weapon" + ], + "i18n": { + "en": { + "name": "Prisma Ohma", + "icon": "items/images/en/prisma_ohma.05f66ed2cfd4c0c6dfdb19ec4498cf54.png", + "thumb": "items/images/en/thumbs/prisma_ohma.05f66ed2cfd4c0c6dfdb19ec4498cf54.128x128.png" + } + } + }, + { + "id": "64eda5d4facd4806c393e638", + "slug": "lith_l4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionFrostMagVaultB", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith L4 Relic", + "icon": "items/images/en/lith_l4_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_l4_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "64eda5d5facd4806c393e639", + "slug": "undercroft_lodging_scene", + "gameRef": "/Lotus/Types/Items/MiscItems/PhotoboothTileDuviriArenaLivingQuarters", + "tags": [ + "misc", + "scene" + ], + "i18n": { + "en": { + "name": "Undercroft Lodging Scene", + "icon": "items/images/en/undercroft_lodging_scene.f256f46595595d7a06feefa1c7dd3cae.png", + "thumb": "items/images/en/thumbs/undercroft_lodging_scene.f256f46595595d7a06feefa1c7dd3cae.128x128.png" + } + } + }, + { + "id": "64eda5d5facd4806c393e63a", + "slug": "axi_d4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionFrostMagVaultA", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi D4 Relic", + "icon": "items/images/en/axi_d4_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_d4_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "64eda5d5facd4806c393e63b", + "slug": "meso_f4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionFrostMagVaultA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso F4 Relic", + "icon": "items/images/en/meso_f4_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_f4_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "64eda5d5facd4806c393e63c", + "slug": "neo_b8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionFrostMagVaultA", + "tags": [ + "neo", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B8 Relic", + "icon": "items/images/en/neo_b8_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_b8_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "64eda5d5facd4806c393e63d", + "slug": "lith_m8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionFrostMagVaultA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M8 Relic", + "icon": "items/images/en/lith_m8_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_m8_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6530537732327ba8746da72c", + "slug": "lith_o3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaOctaviaVaultA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith O3 Relic", + "icon": "items/images/en/lith_o3_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_o3_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6530537832327ba8746da72d", + "slug": "lith_g7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNezhaOctaviaVaultB", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G7 Relic", + "icon": "items/images/en/lith_g7_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_g7_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "6530537932327ba8746da72e", + "slug": "meso_n15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNezhaOctaviaVaultA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N15 Relic", + "icon": "items/images/en/meso_n15_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_n15_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "6530537a32327ba8746da72f", + "slug": "meso_z5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNezhaOctaviaVaultB", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso Z5 Relic", + "icon": "items/images/en/meso_z5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_z5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "6530537b32327ba8746da730", + "slug": "axi_p5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNezhaOctaviaVaultA", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi P5 Relic", + "icon": "items/images/en/axi_p5_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_p5_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6530538b32327ba8746da731", + "slug": "axi_a17_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGrendelPrimeD", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A17 Relic", + "icon": "items/images/en/axi_a17_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_a17_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6530539432327ba8746da732", + "slug": "axi_l6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGrendelPrimeC", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi L6 Relic", + "icon": "items/images/en/axi_l6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_l6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6530539632327ba8746da733", + "slug": "axi_g12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGrendelPrimeB", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G12 Relic", + "icon": "items/images/en/axi_g12_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_g12_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6530539732327ba8746da734", + "slug": "axi_g11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGrendelPrimeA", + "tags": [ + "axi", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G11 Relic", + "icon": "items/images/en/axi_g11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_g11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "6530539a32327ba8746da735", + "slug": "neo_d8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGrendelPrimeE", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo D8 Relic", + "icon": "items/images/en/neo_d8_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_d8_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6530539b32327ba8746da736", + "slug": "neo_k7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGrendelPrimeD", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K7 Relic", + "icon": "items/images/en/neo_k7_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_k7_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6530539d32327ba8746da737", + "slug": "neo_k6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGrendelPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K6 Relic", + "icon": "items/images/en/neo_k6_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_k6_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "6530539f32327ba8746da738", + "slug": "neo_s18_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGrendelPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S18 Relic", + "icon": "items/images/en/neo_s18_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_s18_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "653053a032327ba8746da739", + "slug": "neo_z10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGrendelPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z10 Relic", + "icon": "items/images/en/neo_z10_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_z10_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "653053a332327ba8746da73a", + "slug": "meso_w3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGrendelPrimeE", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso W3 Relic", + "icon": "items/images/en/meso_w3_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_w3_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "653053a532327ba8746da73b", + "slug": "meso_c9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGrendelPrimeD", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C9 Relic", + "icon": "items/images/en/meso_c9_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_c9_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "653053a632327ba8746da73c", + "slug": "meso_p14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGrendelPrimeC", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso P14 Relic", + "icon": "items/images/en/meso_p14_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_p14_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "653053a732327ba8746da73d", + "slug": "meso_b8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGrendelPrimeB", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B8 Relic", + "icon": "items/images/en/meso_b8_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_b8_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "653053a832327ba8746da73e", + "slug": "meso_m4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGrendelPrimeA", + "tags": [ + "meso", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso M4 Relic", + "icon": "items/images/en/meso_m4_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_m4_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "653053a932327ba8746da73f", + "slug": "lith_n14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGrendelPrimeE", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N14 Relic", + "icon": "items/images/en/lith_n14_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_n14_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "653053ae32327ba8746da740", + "slug": "lith_t10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGrendelPrimeD", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T10 Relic", + "icon": "items/images/en/lith_t10_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_t10_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "653053b032327ba8746da741", + "slug": "lith_c10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGrendelPrimeC", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C10 Relic", + "icon": "items/images/en/lith_c10_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_c10_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "653053b132327ba8746da742", + "slug": "lith_r4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGrendelPrimeB", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith R4 Relic", + "icon": "items/images/en/lith_r4_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_r4_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "653053b332327ba8746da743", + "slug": "lith_g8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGrendelPrimeA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G8 Relic", + "icon": "items/images/en/lith_g8_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_g8_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "653060f332327ba8746da744", + "slug": "grendel_prime_set", + "gameRef": "/Lotus/Powersuits/Devourer/GrendelPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Grendel Prime Set", + "icon": "items/images/en/grendel_prime_set.c684407cdaea9bef16f0c7aa97c74369.png", + "thumb": "items/images/en/thumbs/grendel_prime_set.c684407cdaea9bef16f0c7aa97c74369.128x128.png" + } + } + }, + { + "id": "653060f332327ba8746da745", + "slug": "grendel_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GrendelPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Grendel Prime Blueprint", + "icon": "items/images/en/grendel_prime_blueprint.c684407cdaea9bef16f0c7aa97c74369.png", + "thumb": "items/images/en/thumbs/grendel_prime_blueprint.c684407cdaea9bef16f0c7aa97c74369.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "653060f332327ba8746da746", + "slug": "grendel_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GrendelPrimeHelmetBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Grendel Prime Neuroptics Blueprint", + "icon": "items/images/en/grendel_prime_neuroptics_blueprint.c684407cdaea9bef16f0c7aa97c74369.png", + "thumb": "items/images/en/thumbs/grendel_prime_neuroptics_blueprint.c684407cdaea9bef16f0c7aa97c74369.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "653060f332327ba8746da747", + "slug": "grendel_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GrendelPrimeChassisBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Grendel Prime Chassis Blueprint", + "icon": "items/images/en/grendel_prime_chassis_blueprint.c684407cdaea9bef16f0c7aa97c74369.png", + "thumb": "items/images/en/thumbs/grendel_prime_chassis_blueprint.c684407cdaea9bef16f0c7aa97c74369.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "653060f332327ba8746da748", + "slug": "grendel_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GrendelPrimeSystemsBlueprint", + "tags": [ + "prime", + "component", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Grendel Prime Systems Blueprint", + "icon": "items/images/en/grendel_prime_systems_blueprint.c684407cdaea9bef16f0c7aa97c74369.png", + "thumb": "items/images/en/thumbs/grendel_prime_systems_blueprint.c684407cdaea9bef16f0c7aa97c74369.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "6530690f22c7fd9770508544", + "slug": "masseter_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeMasseter/PrimeMasseter", + "tags": [ + "prime", + "melee", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Masseter Prime Set", + "icon": "items/images/en/masseter_prime_set.d507aa3bf568e9ca76f7bc9b6d2288c8.png", + "thumb": "items/images/en/thumbs/masseter_prime_set.d507aa3bf568e9ca76f7bc9b6d2288c8.128x128.png" + } + } + }, + { + "id": "6530690f22c7fd9770508545", + "slug": "masseter_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/MasseterPrimeBlueprint", + "tags": [ + "prime", + "melee", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Masseter Prime Blueprint", + "icon": "items/images/en/masseter_prime_blueprint.d507aa3bf568e9ca76f7bc9b6d2288c8.png", + "thumb": "items/images/en/thumbs/masseter_prime_blueprint.d507aa3bf568e9ca76f7bc9b6d2288c8.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6530690f22c7fd9770508546", + "slug": "masseter_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/MasseterPrimeBlade", + "tags": [ + "weapon", + "prime", + "component" + ], + "i18n": { + "en": { + "name": "Masseter Prime Blade", + "icon": "items/images/en/masseter_prime_blade.d507aa3bf568e9ca76f7bc9b6d2288c8.png", + "thumb": "items/images/en/thumbs/masseter_prime_blade.d507aa3bf568e9ca76f7bc9b6d2288c8.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "6530690f22c7fd9770508547", + "slug": "masseter_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/MasseterPrimeHandle", + "tags": [ + "weapon", + "prime", + "component" + ], + "i18n": { + "en": { + "name": "Masseter Prime Handle", + "icon": "items/images/en/masseter_prime_handle.d507aa3bf568e9ca76f7bc9b6d2288c8.png", + "thumb": "items/images/en/thumbs/masseter_prime_handle.d507aa3bf568e9ca76f7bc9b6d2288c8.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "6530694622c7fd9770508548", + "slug": "zylok_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeZylok/ZylokPrimePistol", + "tags": [ + "prime", + "secondary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Zylok Prime Set", + "icon": "items/images/en/zylok_prime_set.3e33bc4a5c48f70000b4ad50fa283437.png", + "thumb": "items/images/en/thumbs/zylok_prime_set.3e33bc4a5c48f70000b4ad50fa283437.128x128.png" + } + } + }, + { + "id": "6530694622c7fd9770508549", + "slug": "zylok_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/ZylokPrimeBlueprint", + "tags": [ + "prime", + "secondary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Zylok Prime Blueprint", + "icon": "items/images/en/zylok_prime_blueprint.3e33bc4a5c48f70000b4ad50fa283437.png", + "thumb": "items/images/en/thumbs/zylok_prime_blueprint.3e33bc4a5c48f70000b4ad50fa283437.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "6530694722c7fd977050854a", + "slug": "zylok_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZylokPrimeBarrel", + "tags": [ + "weapon", + "prime", + "component" + ], + "i18n": { + "en": { + "name": "Zylok Prime Barrel", + "icon": "items/images/en/zylok_prime_barrel.3e33bc4a5c48f70000b4ad50fa283437.png", + "thumb": "items/images/en/thumbs/zylok_prime_barrel.3e33bc4a5c48f70000b4ad50fa283437.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "6530694722c7fd977050854b", + "slug": "zylok_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/ZylokPrimeReceiver", + "tags": [ + "weapon", + "prime", + "component" + ], + "i18n": { + "en": { + "name": "Zylok Prime Receiver", + "icon": "items/images/en/zylok_prime_receiver.3e33bc4a5c48f70000b4ad50fa283437.png", + "thumb": "items/images/en/thumbs/zylok_prime_receiver.3e33bc4a5c48f70000b4ad50fa283437.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "65315a50a06afa0dcbe93e6e", + "slug": "catalyzing_shields", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/DualStat/FixedShieldAndShieldGatingDuration", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Catalyzing Shields", + "icon": "items/images/en/catalyzing_shields.33257059fb0aad33f4ac29b9fd9bb7cd.png", + "thumb": "items/images/en/thumbs/catalyzing_shields.33257059fb0aad33f4ac29b9fd9bb7cd.128x128.png" + } + } + }, + { + "id": "653168e8f31453d36319c56c", + "slug": "astral_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/VoidVinculum", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Astral Bond", + "icon": "items/images/en/astral_bond.2fc6548b626af779f232d8f23f701dbb.png", + "thumb": "items/images/en/thumbs/astral_bond.2fc6548b626af779f232d8f23f701dbb.128x128.png" + } + } + }, + { + "id": "65316903f31453d36319c56d", + "slug": "duplex_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/VoidClone", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Duplex Bond", + "icon": "items/images/en/duplex_bond.90cdead13ac335686165a5b0c0331130.png", + "thumb": "items/images/en/thumbs/duplex_bond.90cdead13ac335686165a5b0c0331130.128x128.png" + } + } + }, + { + "id": "6531692bf31453d36319c56e", + "slug": "tenacious_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/TenaciousPartner", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tenacious Bond", + "icon": "items/images/en/tenacious_bond.2e3e484bbee202f7481636fc27151997.png", + "thumb": "items/images/en/thumbs/tenacious_bond.2e3e484bbee202f7481636fc27151997.128x128.png" + } + } + }, + { + "id": "6531693ef31453d36319c56f", + "slug": "tandem_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/TandemTactics", + "tags": [ + "mod", + "rare", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Tandem Bond", + "icon": "items/images/en/tandem_bond.03d917cccbf6b5f5399883742f5a9729.png", + "thumb": "items/images/en/thumbs/tandem_bond.03d917cccbf6b5f5399883742f5a9729.128x128.png" + } + } + }, + { + "id": "65316954f31453d36319c570", + "slug": "contagious_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/Proliferation", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Contagious Bond", + "icon": "items/images/en/contagious_bond.e53995366b358c77eca1480c779f6383.png", + "thumb": "items/images/en/thumbs/contagious_bond.e53995366b358c77eca1480c779f6383.128x128.png" + } + } + }, + { + "id": "65316972f31453d36319c571", + "slug": "mystic_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/PreyDrive", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Mystic Bond", + "icon": "items/images/en/mystic_bond.9454883ee58b3dd672cb9e034b4f910c.png", + "thumb": "items/images/en/thumbs/mystic_bond.9454883ee58b3dd672cb9e034b4f910c.128x128.png" + } + } + }, + { + "id": "65316985f31453d36319c572", + "slug": "covert_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/PredatoryResponse", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Covert Bond", + "icon": "items/images/en/covert_bond.52b6bbf024b9e60259def42a39d8c52a.png", + "thumb": "items/images/en/thumbs/covert_bond.52b6bbf024b9e60259def42a39d8c52a.128x128.png" + } + } + }, + { + "id": "65316998f31453d36319c573", + "slug": "restorative_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/MutualNourishment", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Restorative Bond", + "icon": "items/images/en/restorative_bond.d60acbbcc963996e5e591492e5938a17.png", + "thumb": "items/images/en/thumbs/restorative_bond.d60acbbcc963996e5e591492e5938a17.128x128.png" + } + } + }, + { + "id": "653169b4f31453d36319c574", + "slug": "momentous_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/EximusHunter", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Momentous Bond", + "icon": "items/images/en/momentous_bond.e7570b3cb751ad7ce9540584667c6314.png", + "thumb": "items/images/en/thumbs/momentous_bond.e7570b3cb751ad7ce9540584667c6314.128x128.png" + } + } + }, + { + "id": "653169d3f31453d36319c575", + "slug": "aerial_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/Copilot", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Aerial Bond", + "icon": "items/images/en/aerial_bond.0c83c8838ad44a1ad6212fcc0d6ea7fb.png", + "thumb": "items/images/en/thumbs/aerial_bond.0c83c8838ad44a1ad6212fcc0d6ea7fb.128x128.png" + } + } + }, + { + "id": "653169e8f31453d36319c576", + "slug": "manifold_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/CompoundingLaceration", + "tags": [ + "mod", + "rare", + "sentinel", + "robotic" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Manifold Bond", + "icon": "items/images/en/manifold_bond.d3f38d290aef08b709e1e7322a393155.png", + "thumb": "items/images/en/thumbs/manifold_bond.d3f38d290aef08b709e1e7322a393155.128x128.png" + } + } + }, + { + "id": "653169f8f31453d36319c577", + "slug": "vicious_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/BoneSplitter", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Vicious Bond", + "icon": "items/images/en/vicious_bond.6531b5ef801bb732ba2d6af35ceaa8b1.png", + "thumb": "items/images/en/thumbs/vicious_bond.6531b5ef801bb732ba2d6af35ceaa8b1.128x128.png" + } + } + }, + { + "id": "65316a0af31453d36319c578", + "slug": "seismic_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/BondedExaltation", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Seismic Bond", + "icon": "items/images/en/seismic_bond.06c13b16e38d3d0e3cfb66c6292fe8c3.png", + "thumb": "items/images/en/thumbs/seismic_bond.06c13b16e38d3d0e3cfb66c6292fe8c3.128x128.png" + } + } + }, + { + "id": "65316a1ff31453d36319c579", + "slug": "reinforced_bond", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/AlacrityField", + "tags": [ + "mod", + "rare", + "sentinel", + "companion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Reinforced Bond", + "icon": "items/images/en/reinforced_bond.7f307a3a5c82c4308c4e1a30c657bc6b.png", + "thumb": "items/images/en/thumbs/reinforced_bond.7f307a3a5c82c4308c4e1a30c657bc6b.128x128.png" + } + } + }, + { + "id": "653833d6123a401b2563081d", + "slug": "abyssal_beacon", + "gameRef": "", + "tags": [ + "beacon", + "syndicate" + ], + "i18n": { + "en": { + "name": "Abyssal Beacon", + "icon": "items/images/en/abyssal_beacon.3154873da9b57ef6b1fa9878f7c0bec5.webp", + "thumb": "items/images/en/thumbs/abyssal_beacon.3154873da9b57ef6b1fa9878f7c0bec5.128x128.webp" + } + } + }, + { + "id": "654500acf9c750264c9cf87b", + "slug": "gotva_prime", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnOrokinRifle/GrnOrokinRifleWeapon", + "tags": [ + "weapon", + "primary" + ], + "i18n": { + "en": { + "name": "Gotva Prime", + "icon": "items/images/en/gotva_prime.323e7113fa10a54ab363496770917b19.png", + "thumb": "items/images/en/thumbs/gotva_prime.323e7113fa10a54ab363496770917b19.128x128.png" + } + } + }, + { + "id": "6569fa13b50e1c9fcef9ac10", + "slug": "neo_t8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNezhaOctaviaVaultA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo T8 Relic", + "icon": "items/images/en/neo_t8_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_t8_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "657af5a921646e595134f5b1", + "slug": "albrecht’s_archive_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Entrati/PhotoboothTileArchives", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Albrecht’s Archive Scene", + "icon": "items/images/en/albrecht’s_archive_scene.2c2b9c7ffab6fa623c4d70a386998eb8.png", + "thumb": "items/images/en/thumbs/albrecht’s_archive_scene.2c2b9c7ffab6fa623c4d70a386998eb8.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b2", + "slug": "albrecht’s_bureau_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Entrati/PhotoboothTileCapRoomNarrow", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Albrecht’s Bureau Scene", + "icon": "items/images/en/albrecht’s_bureau_scene.d380064042b80779fa7f2450d4802b7e.png", + "thumb": "items/images/en/thumbs/albrecht’s_bureau_scene.d380064042b80779fa7f2450d4802b7e.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b3", + "slug": "sanctum_anatomica_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Entrati/PhotoboothTileHubLabMITW", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Sanctum Anatomica Scene", + "icon": "items/images/en/sanctum_anatomica_scene.54e176b06668d1d864ec6ebe6572988e.png", + "thumb": "items/images/en/thumbs/sanctum_anatomica_scene.54e176b06668d1d864ec6ebe6572988e.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b4", + "slug": "fragmented_gorge_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Entrati/PhotoboothTileOctopedeArena", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Fragmented Gorge Scene", + "icon": "items/images/en/fragmented_gorge_scene.56ce59e13fb421bc88056a068a201059.png", + "thumb": "items/images/en/thumbs/fragmented_gorge_scene.56ce59e13fb421bc88056a068a201059.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b5", + "slug": "fabrica_anatomica_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Entrati/PhotoboothTileTriExperiment", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Fabrica Anatomica Scene", + "icon": "items/images/en/fabrica_anatomica_scene.4d3dead09b81e08cc67cd839331be8bd.png", + "thumb": "items/images/en/thumbs/fabrica_anatomica_scene.4d3dead09b81e08cc67cd839331be8bd.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b6", + "slug": "energy_nexus", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarEnergyRegenMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Energy Nexus", + "icon": "items/images/en/energy_nexus.c58c98ff3e9a65ea7419e4915e5681a6.png", + "thumb": "items/images/en/thumbs/energy_nexus.c58c98ff3e9a65ea7419e4915e5681a6.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b7", + "slug": "precision_intensify", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/AvatarAbilityFourStrengthMod", + "tags": [ + "mod", + "rare", + "warframe" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Precision Intensify", + "icon": "items/images/en/precision_intensify.dbfea114c8f578a222c31637a0d87516.png", + "thumb": "items/images/en/thumbs/precision_intensify.dbfea114c8f578a222c31637a0d87516.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b8", + "slug": "cleanse_the_murmur", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponShotgunFactionDamageMurmurs", + "tags": [ + "mod", + "uncommon", + "primary", + "shotgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cleanse The Murmur", + "icon": "items/images/en/cleanse_the_murmur.e09c1b0652c896a42ebd3180417deb96.png", + "thumb": "items/images/en/thumbs/cleanse_the_murmur.e09c1b0652c896a42ebd3180417deb96.128x128.png" + } + } + }, + { + "id": "657af5aa21646e595134f5b9", + "slug": "atomic_fallout", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/RadiationClipShotgunMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Atomic Fallout", + "icon": "items/images/en/atomic_fallout.e9f42032e522d187e44c5dd99f4f76bc.png", + "thumb": "items/images/en/thumbs/atomic_fallout.e9f42032e522d187e44c5dd99f4f76bc.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5ba", + "slug": "shivering_contagion", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponSpreadFreezeProcsMod", + "tags": [ + "mod", + "rare", + "primary" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shivering Contagion", + "icon": "items/images/en/shivering_contagion.18e6094431317c01e2deaf6939f00e87.png", + "thumb": "items/images/en/thumbs/shivering_contagion.18e6094431317c01e2deaf6939f00e87.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5bb", + "slug": "bane_of_the_murmur", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponFactionDamageMurmurs", + "tags": [ + "mod", + "uncommon", + "primary", + "rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Bane Of The Murmur", + "icon": "items/images/en/bane_of_the_murmur.42848492a7e464b61243f32ca85e3ec9.png", + "thumb": "items/images/en/thumbs/bane_of_the_murmur.42848492a7e464b61243f32ca85e3ec9.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5bc", + "slug": "volatile_variant", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/Event/Nightwave/NightwaveSporothrixAugmentMod", + "tags": [ + "mod", + "rare", + "primary", + "sporothrix" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Volatile Variant", + "icon": "items/images/en/volatile_variant.01acbb670c98848711986f18f1c6fb4a.png", + "thumb": "items/images/en/thumbs/volatile_variant.01acbb670c98848711986f18f1c6fb4a.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5bd", + "slug": "radiated_reload", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/RadiationReloadRifleMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Radiated Reload", + "icon": "items/images/en/radiated_reload.ef138cd14950f035cce6a1000b129594.png", + "thumb": "items/images/en/thumbs/radiated_reload.ef138cd14950f035cce6a1000b129594.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5be", + "slug": "expel_the_murmur", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponPistolFactionDamageMurmurs", + "tags": [ + "mod", + "uncommon", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Expel The Murmur", + "icon": "items/images/en/expel_the_murmur.0ab78c59ac89c08741561930bdba3773.png", + "thumb": "items/images/en/thumbs/expel_the_murmur.0ab78c59ac89c08741561930bdba3773.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5bf", + "slug": "critical_mutation", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Event/Nightwave/NightwaveCatabolystAugmentMod", + "tags": [ + "mod", + "rare", + "secondary", + "catabolyst" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Critical Mutation", + "icon": "items/images/en/critical_mutation.d8b12c6827d7cd28babb791557e58eb6.png", + "thumb": "items/images/en/thumbs/critical_mutation.d8b12c6827d7cd28babb791557e58eb6.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c0", + "slug": "accelerated_isotope", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/RadiationFireratePistolMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Accelerated Isotope", + "icon": "items/images/en/accelerated_isotope.63bdf468183b383ca62b6d06315104f0.png", + "thumb": "items/images/en/thumbs/accelerated_isotope.63bdf468183b383ca62b6d06315104f0.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c1", + "slug": "focus_radon", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/RadiationEfficiencyMeleeMod", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Focus Radon", + "icon": "items/images/en/focus_radon.5918ae83fa70351586a79dfa60fc4d6e.png", + "thumb": "items/images/en/thumbs/focus_radon.5918ae83fa70351586a79dfa60fc4d6e.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c2", + "slug": "ready_steel", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerMeleeStartingComboAuraMod", + "tags": [ + "mod", + "uncommon", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Ready Steel", + "icon": "items/images/en/ready_steel.908648ff6fd53adfed920514a0b6ebb7.png", + "thumb": "items/images/en/thumbs/ready_steel.908648ff6fd53adfed920514a0b6ebb7.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c3", + "slug": "xata_invocation", + "gameRef": "/Lotus/Upgrades/Grimoire/XataStrikeMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Xata Invocation", + "icon": "items/images/en/xata_invocation.edc7e969a9fbd262e3232a1de8fa097b.png", + "thumb": "items/images/en/thumbs/xata_invocation.edc7e969a9fbd262e3232a1de8fa097b.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c4", + "slug": "vome_invocation", + "gameRef": "/Lotus/Upgrades/Grimoire/VomeStrikeMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Vome Invocation", + "icon": "items/images/en/vome_invocation.38806f4236d06717c64a79a2c66e7c15.png", + "thumb": "items/images/en/thumbs/vome_invocation.38806f4236d06717c64a79a2c66e7c15.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c5", + "slug": "ris_invocation", + "gameRef": "/Lotus/Upgrades/Grimoire/RisStrikeMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Ris Invocation", + "icon": "items/images/en/ris_invocation.15b44046868a7cbe9b546dc66b2960a3.png", + "thumb": "items/images/en/thumbs/ris_invocation.15b44046868a7cbe9b546dc66b2960a3.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c6", + "slug": "netra_invocation", + "gameRef": "/Lotus/Upgrades/Grimoire/NetraStrikeMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Netra Invocation", + "icon": "items/images/en/netra_invocation.78dd3227c7f247d4deed683f0045b02c.png", + "thumb": "items/images/en/thumbs/netra_invocation.78dd3227c7f247d4deed683f0045b02c.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c7", + "slug": "lohk_canticle", + "gameRef": "/Lotus/Upgrades/Grimoire/LohkAuraMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Lohk Canticle", + "icon": "items/images/en/lohk_canticle.4cf15c8c6a9d43ce6c2740b293d734f0.png", + "thumb": "items/images/en/thumbs/lohk_canticle.4cf15c8c6a9d43ce6c2740b293d734f0.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c8", + "slug": "khra_canticle", + "gameRef": "/Lotus/Upgrades/Grimoire/KhraAuraMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Khra Canticle", + "icon": "items/images/en/khra_canticle.a5b44398a716042c0e205b66bf1bd418.png", + "thumb": "items/images/en/thumbs/khra_canticle.a5b44398a716042c0e205b66bf1bd418.128x128.png" + } + } + }, + { + "id": "657af5ab21646e595134f5c9", + "slug": "jahu_canticle", + "gameRef": "/Lotus/Upgrades/Grimoire/JahuAuraMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Jahu Canticle", + "icon": "items/images/en/jahu_canticle.fc894f299802010cb941729da3d9234b.png", + "thumb": "items/images/en/thumbs/jahu_canticle.fc894f299802010cb941729da3d9234b.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5ca", + "slug": "fass_canticle", + "gameRef": "/Lotus/Upgrades/Grimoire/FassAuraMod", + "tags": [ + "mod", + "rare", + "secondary", + "tome" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fass Canticle", + "icon": "items/images/en/fass_canticle.e599edee6a0a3ab54a4c384d1c0a6341.png", + "thumb": "items/images/en/thumbs/fass_canticle.e599edee6a0a3ab54a4c384d1c0a6341.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5cb", + "slug": "opportunitys_reach", + "gameRef": "/Lotus/Upgrades/EmpoweredHeavyMelee/PerfectReach", + "tags": [ + "mod", + "uncommon", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Opportunity's Reach", + "icon": "items/images/en/opportunitys_reach.9e203401224e754b250feadd2d672deb.png", + "thumb": "items/images/en/thumbs/opportunitys_reach.9e203401224e754b250feadd2d672deb.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5cc", + "slug": "conditions_perfection", + "gameRef": "/Lotus/Upgrades/EmpoweredHeavyMelee/PerfectCondition", + "tags": [ + "mod", + "uncommon", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Condition's Perfection", + "icon": "items/images/en/conditions_perfection.998f807b7032755661cda8f0a27d69b4.png", + "thumb": "items/images/en/thumbs/conditions_perfection.998f807b7032755661cda8f0a27d69b4.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5cd", + "slug": "masters_edge", + "gameRef": "/Lotus/Upgrades/EmpoweredHeavyMelee/HeavyAgression", + "tags": [ + "mod", + "uncommon", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Master's Edge", + "icon": "items/images/en/masters_edge.0bbc3b8d1d4232cd871b3fcb3a39a78c.png", + "thumb": "items/images/en/thumbs/masters_edge.0bbc3b8d1d4232cd871b3fcb3a39a78c.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5ce", + "slug": "dreamers_wrath", + "gameRef": "/Lotus/Upgrades/EmpoweredHeavyMelee/FocusedAttack", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Dreamer's Wrath", + "icon": "items/images/en/dreamers_wrath.a5e53eb8a61d67cd39b25bd3f4cea50a.png", + "thumb": "items/images/en/thumbs/dreamers_wrath.a5e53eb8a61d67cd39b25bd3f4cea50a.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5cf", + "slug": "disciplines_merit", + "gameRef": "/Lotus/Upgrades/EmpoweredHeavyMelee/CertainStrike", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Discipline's Merit", + "icon": "items/images/en/disciplines_merit.41f5604d68000956bb277a3e6858107f.png", + "thumb": "items/images/en/thumbs/disciplines_merit.41f5604d68000956bb277a3e6858107f.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5d0", + "slug": "containment_breach", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingEventRadiationFireIterationRifleMod", + "tags": [ + "mod", + "archwing", + "primary", + "rare", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Containment Breach", + "icon": "items/images/en/containment_breach.2fda17b7ca344b0a5a33570e769141c6.png", + "thumb": "items/images/en/thumbs/containment_breach.2fda17b7ca344b0a5a33570e769141c6.128x128.png" + } + } + }, + { + "id": "657af5ac21646e595134f5d1", + "slug": "smite_the_murmur", + "gameRef": "/Lotus/Upgrades/Mods/Melee/WeaponMeleeFactionDamageMurmurs", + "tags": [ + "mod", + "uncommon", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Smite The Murmur", + "icon": "items/images/en/smite_the_murmur.6492fc5415ead423fdbbdd8f300ee486.png", + "thumb": "items/images/en/thumbs/smite_the_murmur.6492fc5415ead423fdbbdd8f300ee486.128x128.png" + } + } + }, + { + "id": "657c67a594e1edefd8db9c90", + "slug": "primed_redirection", + "gameRef": "/Lotus/Upgrades/Mods/Warframe/Expert/AvatarShieldMaxModExpert", + "tags": [ + "mod", + "legendary", + "warframe" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Redirection", + "icon": "items/images/en/primed_redirection.325f8cb4a67aa608a364f7d19d9fd2e0.png", + "thumb": "items/images/en/thumbs/primed_redirection.325f8cb4a67aa608a364f7d19d9fd2e0.128x128.png" + } + } + }, + { + "id": "657f14f38820fb8f3c5f4658", + "slug": "mandonel_set", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/TnConcreteArchgun/TnConcreteArchgunWeapon", + "tags": [ + "archwing", + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Mandonel Set", + "icon": "items/images/en/mandonel_set.242783b92f4aeadf1270b7012dfa9079.png", + "thumb": "items/images/en/thumbs/mandonel_set.242783b92f4aeadf1270b7012dfa9079.128x128.png" + } + } + }, + { + "id": "657f14f38820fb8f3c5f4659", + "slug": "mandonel_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TnConcreteArchgunBlueprint", + "tags": [ + "archwing", + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Mandonel Blueprint", + "icon": "items/images/en/mandonel_blueprint.242783b92f4aeadf1270b7012dfa9079.png", + "thumb": "items/images/en/thumbs/mandonel_blueprint.242783b92f4aeadf1270b7012dfa9079.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "657f14f38820fb8f3c5f465a", + "slug": "mandonel_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnConcreteArchgunBarrel", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Mandonel Barrel", + "icon": "items/images/en/mandonel_barrel.242783b92f4aeadf1270b7012dfa9079.png", + "thumb": "items/images/en/thumbs/mandonel_barrel.242783b92f4aeadf1270b7012dfa9079.128x128.png", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "657f14f38820fb8f3c5f465b", + "slug": "mandonel_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnConcreteArchgunReceiver", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Mandonel Receiver", + "icon": "items/images/en/mandonel_receiver.242783b92f4aeadf1270b7012dfa9079.png", + "thumb": "items/images/en/thumbs/mandonel_receiver.242783b92f4aeadf1270b7012dfa9079.128x128.png", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "657f14f38820fb8f3c5f465c", + "slug": "mandonel_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnConcreteArchgunStock", + "tags": [ + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Mandonel Stock", + "icon": "items/images/en/mandonel_stock.242783b92f4aeadf1270b7012dfa9079.png", + "thumb": "items/images/en/thumbs/mandonel_stock.242783b92f4aeadf1270b7012dfa9079.128x128.png", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f465d", + "slug": "melee_influence", + "gameRef": "", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Influence", + "icon": "items/images/en/melee_influence.b22232a58406e5feeb8bbe94c07c18d2.webp", + "thumb": "items/images/en/thumbs/melee_influence.b22232a58406e5feeb8bbe94c07c18d2.128x128.webp" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f465e", + "slug": "melee_retaliation", + "gameRef": "", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Retaliation", + "icon": "items/images/en/melee_retaliation.bb1d89feb4393d3681c495372d8c3531.webp", + "thumb": "items/images/en/thumbs/melee_retaliation.bb1d89feb4393d3681c495372d8c3531.128x128.webp" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f465f", + "slug": "melee_crescendo", + "gameRef": "", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Crescendo", + "icon": "items/images/en/melee_crescendo.fec1a875c68b84f3282a21a82aabdb20.webp", + "thumb": "items/images/en/thumbs/melee_crescendo.fec1a875c68b84f3282a21a82aabdb20.128x128.webp" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f4660", + "slug": "melee_vortex", + "gameRef": "", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Vortex", + "icon": "items/images/en/melee_vortex.467abbf619c4e9324cd2b130e91c58a1.webp", + "thumb": "items/images/en/thumbs/melee_vortex.467abbf619c4e9324cd2b130e91c58a1.128x128.webp" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f4661", + "slug": "melee_animosity", + "gameRef": "", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Animosity", + "icon": "items/images/en/melee_animosity.588b2ef400df2947ffdf7cce1a3259db.webp", + "thumb": "items/images/en/thumbs/melee_animosity.588b2ef400df2947ffdf7cce1a3259db.128x128.webp" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f4662", + "slug": "melee_exposure", + "gameRef": "", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Exposure", + "icon": "items/images/en/melee_exposure.8f640378cd4d4ca4758da310524b90c6.webp", + "thumb": "items/images/en/thumbs/melee_exposure.8f640378cd4d4ca4758da310524b90c6.128x128.webp" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f4663", + "slug": "melee_duplicate", + "gameRef": "", + "tags": [ + "legendary", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Duplicate", + "icon": "items/images/en/melee_duplicate.0ac0137e555cde39902706e96853dff9.webp", + "thumb": "items/images/en/thumbs/melee_duplicate.0ac0137e555cde39902706e96853dff9.128x128.webp" + } + } + }, + { + "id": "657f2efd8820fb8f3c5f4664", + "slug": "melee_fortification", + "gameRef": "", + "tags": [ + "common", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Fortification", + "icon": "items/images/en/melee_fortification.546e560aff6676bf550b0de38f14f280.webp", + "thumb": "items/images/en/thumbs/melee_fortification.546e560aff6676bf550b0de38f14f280.128x128.webp" + } + } + }, + { + "id": "658ed23f2ad6a142084fa434", + "slug": "primed_convulsion", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/Expert/PrimedWeaponElectricityDamageMod", + "tags": [ + "mod", + "legendary", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Convulsion", + "icon": "items/images/en/primed_convulsion.653accfb70d0dc43bdb4c09afd8dc2a2.png", + "thumb": "items/images/en/thumbs/primed_convulsion.653accfb70d0dc43bdb4c09afd8dc2a2.128x128.png" + } + } + }, + { + "id": "65a7fc5aed5b0d2e3eb462b2", + "slug": "gauss_prime_set", + "gameRef": "/Lotus/Powersuits/Runner/GaussPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Gauss Prime Set", + "icon": "items/images/en/gauss_prime_set.df5aa569d863730a4de767fd449c107e.png", + "thumb": "items/images/en/thumbs/gauss_prime_set.df5aa569d863730a4de767fd449c107e.128x128.png" + } + } + }, + { + "id": "65a7fc5aed5b0d2e3eb462b3", + "slug": "gauss_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaussPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gauss Prime Blueprint", + "icon": "items/images/en/gauss_prime_blueprint.df5aa569d863730a4de767fd449c107e.png", + "thumb": "items/images/en/thumbs/gauss_prime_blueprint.df5aa569d863730a4de767fd449c107e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "65a7fc5aed5b0d2e3eb462b4", + "slug": "gauss_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaussPrimeHelmetBlueprint", + "tags": [ + "prime", + "warframe", + "component", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gauss Prime Neuroptics Blueprint", + "icon": "items/images/en/gauss_prime_neuroptics_blueprint.df5aa569d863730a4de767fd449c107e.png", + "thumb": "items/images/en/thumbs/gauss_prime_neuroptics_blueprint.df5aa569d863730a4de767fd449c107e.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "65a7fc5aed5b0d2e3eb462b5", + "slug": "gauss_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaussPrimeChassisBlueprint", + "tags": [ + "prime", + "warframe", + "component", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gauss Prime Chassis Blueprint", + "icon": "items/images/en/gauss_prime_chassis_blueprint.df5aa569d863730a4de767fd449c107e.png", + "thumb": "items/images/en/thumbs/gauss_prime_chassis_blueprint.df5aa569d863730a4de767fd449c107e.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "65a7fc5aed5b0d2e3eb462b6", + "slug": "gauss_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/GaussPrimeSystemsBlueprint", + "tags": [ + "prime", + "warframe", + "component", + "blueprint" + ], + "i18n": { + "en": { + "name": "Gauss Prime Systems Blueprint", + "icon": "items/images/en/gauss_prime_systems_blueprint.df5aa569d863730a4de767fd449c107e.png", + "thumb": "items/images/en/thumbs/gauss_prime_systems_blueprint.df5aa569d863730a4de767fd449c107e.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462b7", + "slug": "axi_a18_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeD", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A18 Relic", + "icon": "items/images/en/axi_a18_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_a18_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462b8", + "slug": "axi_p6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeC", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi P6 Relic", + "icon": "items/images/en/axi_p6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_p6_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462b9", + "slug": "axi_d5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeB", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi D5 Relic", + "icon": "items/images/en/axi_d5_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_d5_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462ba", + "slug": "axi_b7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeA", + "tags": [ + "relic", + "axi" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B7 Relic", + "icon": "items/images/en/axi_b7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_b7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462bb", + "slug": "neo_a11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGaussPrimeC", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A11 Relic", + "icon": "items/images/en/neo_a11_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_a11_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462bc", + "slug": "neo_w1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGaussPrimeB", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo W1 Relic", + "icon": "items/images/en/neo_w1_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_w1_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462bd", + "slug": "neo_f3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGaussPrimeA", + "tags": [ + "relic", + "neo" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo F3 Relic", + "icon": "items/images/en/neo_f3_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_f3_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462be", + "slug": "meso_b9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeE", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B9 Relic", + "icon": "items/images/en/meso_b9_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_b9_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462bf", + "slug": "meso_g6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeD", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso G6 Relic", + "icon": "items/images/en/meso_g6_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_g6_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462c0", + "slug": "meso_a5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeC", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso A5 Relic", + "icon": "items/images/en/meso_a5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_a5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462c1", + "slug": "meso_h6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeB", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H6 Relic", + "icon": "items/images/en/meso_h6_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_h6_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "65a7fc7eed5b0d2e3eb462c2", + "slug": "meso_h5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeA", + "tags": [ + "relic", + "meso" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H5 Relic", + "icon": "items/images/en/meso_h5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_h5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "65a7fc7fed5b0d2e3eb462c3", + "slug": "lith_g10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeF", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G10 Relic", + "icon": "items/images/en/lith_g10_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_g10_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "65a7fc7fed5b0d2e3eb462c4", + "slug": "lith_p8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeE", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P8 Relic", + "icon": "items/images/en/lith_p8_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_p8_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "65a7fc7fed5b0d2e3eb462c5", + "slug": "lith_g9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeD", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G9 Relic", + "icon": "items/images/en/lith_g9_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_g9_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "65a7fc7fed5b0d2e3eb462c6", + "slug": "lith_r5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeC", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith R5 Relic", + "icon": "items/images/en/lith_r5_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_r5_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "65a7fc7fed5b0d2e3eb462c7", + "slug": "lith_a6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeB", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith A6 Relic", + "icon": "items/images/en/lith_a6_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_a6_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "65a7fc7fed5b0d2e3eb462c8", + "slug": "lith_c11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeA", + "tags": [ + "lith", + "relic" + ], + "bulkTradable": true, + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C11 Relic", + "icon": "items/images/en/lith_c11_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_c11_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "65a7fca4ed5b0d2e3eb462c9", + "slug": "akarius_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeAkarius/PrimeAkariusWeapon", + "tags": [ + "prime", + "secondary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Akarius Prime Set", + "icon": "items/images/en/akarius_prime_set.9e88bceafe14482e1a01672c1c292fe1.png", + "thumb": "items/images/en/thumbs/akarius_prime_set.9e88bceafe14482e1a01672c1c292fe1.128x128.png" + } + } + }, + { + "id": "65a7fca4ed5b0d2e3eb462ca", + "slug": "akarius_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AkariusPrimeBlueprint", + "tags": [ + "prime", + "secondary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Akarius Prime Blueprint", + "icon": "items/images/en/akarius_prime_blueprint.9e88bceafe14482e1a01672c1c292fe1.png", + "thumb": "items/images/en/thumbs/akarius_prime_blueprint.9e88bceafe14482e1a01672c1c292fe1.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "65a7fca4ed5b0d2e3eb462cb", + "slug": "akarius_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkariusPrimeBarrel", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Akarius Prime Barrel", + "icon": "items/images/en/akarius_prime_barrel.9e88bceafe14482e1a01672c1c292fe1.png", + "thumb": "items/images/en/thumbs/akarius_prime_barrel.9e88bceafe14482e1a01672c1c292fe1.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "65a7fca4ed5b0d2e3eb462cc", + "slug": "akarius_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkariusPrimeReceiver", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Akarius Prime Receiver", + "icon": "items/images/en/akarius_prime_receiver.9e88bceafe14482e1a01672c1c292fe1.png", + "thumb": "items/images/en/thumbs/akarius_prime_receiver.9e88bceafe14482e1a01672c1c292fe1.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "65a7fca4ed5b0d2e3eb462cd", + "slug": "akarius_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkariusPrimeLink", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Akarius Prime Link", + "icon": "items/images/en/akarius_prime_link.9e88bceafe14482e1a01672c1c292fe1.png", + "thumb": "items/images/en/thumbs/akarius_prime_link.9e88bceafe14482e1a01672c1c292fe1.128x128.png", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "65a7fcc4ed5b0d2e3eb462ce", + "slug": "acceltra_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeAcceltra/PrimeAcceltraWeapon", + "tags": [ + "prime", + "primary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Acceltra Prime Set", + "icon": "items/images/en/acceltra_prime_set.b826cc938ba700ff8d8f07d2b38051f7.png", + "thumb": "items/images/en/thumbs/acceltra_prime_set.b826cc938ba700ff8d8f07d2b38051f7.128x128.png" + } + } + }, + { + "id": "65a7fcc4ed5b0d2e3eb462cf", + "slug": "acceltra_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AcceltraPrimeBlueprint", + "tags": [ + "prime", + "primary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Acceltra Prime Blueprint", + "icon": "items/images/en/acceltra_prime_blueprint.b826cc938ba700ff8d8f07d2b38051f7.png", + "thumb": "items/images/en/thumbs/acceltra_prime_blueprint.b826cc938ba700ff8d8f07d2b38051f7.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "65a7fcc4ed5b0d2e3eb462d0", + "slug": "acceltra_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AcceltraPrimeBarrel", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Acceltra Prime Barrel", + "icon": "items/images/en/acceltra_prime_barrel.b826cc938ba700ff8d8f07d2b38051f7.png", + "thumb": "items/images/en/thumbs/acceltra_prime_barrel.b826cc938ba700ff8d8f07d2b38051f7.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "65a7fcc4ed5b0d2e3eb462d1", + "slug": "acceltra_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AcceltraPrimeReceiver", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Acceltra Prime Receiver", + "icon": "items/images/en/acceltra_prime_receiver.b826cc938ba700ff8d8f07d2b38051f7.png", + "thumb": "items/images/en/thumbs/acceltra_prime_receiver.b826cc938ba700ff8d8f07d2b38051f7.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "65a7fcc4ed5b0d2e3eb462d2", + "slug": "acceltra_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AcceltraPrimeStock", + "tags": [ + "prime", + "weapon", + "component" + ], + "i18n": { + "en": { + "name": "Acceltra Prime Stock", + "icon": "items/images/en/acceltra_prime_stock.b826cc938ba700ff8d8f07d2b38051f7.png", + "thumb": "items/images/en/thumbs/acceltra_prime_stock.b826cc938ba700ff8d8f07d2b38051f7.128x128.png", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "65d6509a453a14fbc68e2739", + "slug": "dreamers_bond", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerEnergyHealthRegenAuraMod", + "tags": [ + "mod", + "uncommon", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Dreamer's Bond", + "icon": "items/images/en/dreamers_bond.b08406e3487c624b0f94e813ef0ed326.png", + "thumb": "items/images/en/thumbs/dreamers_bond.b08406e3487c624b0f94e813ef0ed326.128x128.png" + } + } + }, + { + "id": "65d6509d453a14fbc68e273a", + "slug": "critical_meltdown", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingEventRadiationCritChanceMeleeMod", + "tags": [ + "archwing", + "rare", + "mod", + "melee", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Critical Meltdown", + "icon": "items/images/en/critical_meltdown.72a28e4a4d2a225cf6e1915e469172b0.png", + "thumb": "items/images/en/thumbs/critical_meltdown.72a28e4a4d2a225cf6e1915e469172b0.128x128.png" + } + } + }, + { + "id": "65f85b70f51dc116096b6762", + "slug": "axi_v11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionTitaniaGaraVaultB", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi V11 Relic", + "icon": "items/images/en/axi_v11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_v11_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "65f85b70f51dc116096b6763", + "slug": "axi_c8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionTitaniaGaraVaultA", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi C8 Relic", + "icon": "items/images/en/axi_c8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_c8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "65f85b70f51dc116096b6764", + "slug": "neo_p5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionTitaniaGaraVaultA", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo P5 Relic", + "icon": "items/images/en/neo_p5_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_p5_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "65f85b70f51dc116096b6765", + "slug": "meso_c10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionTitaniaGaraVaultB", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso C10 Relic", + "icon": "items/images/en/meso_c10_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_c10_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "65f85b70f51dc116096b6766", + "slug": "meso_a6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionTitaniaGaraVaultA", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso A6 Relic", + "icon": "items/images/en/meso_a6_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_a6_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "65f85b70f51dc116096b6767", + "slug": "lith_g11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionTitaniaGaraVaultB", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G11 Relic", + "icon": "items/images/en/lith_g11_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_g11_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "65f85b70f51dc116096b6768", + "slug": "lith_t11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionTitaniaGaraVaultA", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T11 Relic", + "icon": "items/images/en/lith_t11_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_t11_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "66049a11dbdd5c1673781dac", + "slug": "dantes_retreat_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Entrati/PhotoboothTileDeadEndSecret", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Dante's Retreat Scene", + "icon": "items/images/en/dantes_retreat_scene.f02ed57d835699b37a2b8d8af6b10cf7.png", + "thumb": "items/images/en/thumbs/dantes_retreat_scene.f02ed57d835699b37a2b8d8af6b10cf7.128x128.png" + } + } + }, + { + "id": "66049a14dbdd5c1673781dae", + "slug": "the_abandoned_vessel_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Entrati/PhotoboothTileIntFailureMITW", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "The Abandoned Vessel Scene", + "icon": "items/images/en/the_abandoned_vessel_scene.73bc4647ce9b916a7aef3c36e4bae645.png", + "thumb": "items/images/en/thumbs/the_abandoned_vessel_scene.73bc4647ce9b916a7aef3c36e4bae645.128x128.png" + } + } + }, + { + "id": "66049c14dbdd5c1673781db0", + "slug": "loyal_merulina", + "gameRef": "/Lotus/Powersuits/Yareli/YareliBoardAugmentTwoCard", + "tags": [ + "mod", + "rare", + "warframe", + "yareli" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Loyal Merulina", + "icon": "items/images/en/loyal_merulina.732462a8024dd7006abf017323be62d9.png", + "thumb": "items/images/en/thumbs/loyal_merulina.732462a8024dd7006abf017323be62d9.128x128.png" + } + } + }, + { + "id": "6604a600dbdd5c1673781db3", + "slug": "wrath_of_ukko", + "gameRef": "/Lotus/Powersuits/PaxDuviricus/PaxFieldAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "kullervo" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Wrath Of Ukko", + "icon": "items/images/en/wrath_of_ukko.5579ab2019b8b5a40fa55e6ba28e9cc8.png", + "thumb": "items/images/en/thumbs/wrath_of_ukko.5579ab2019b8b5a40fa55e6ba28e9cc8.128x128.png" + } + } + }, + { + "id": "6604a640dbdd5c1673781db5", + "slug": "elusive_retribution", + "gameRef": "/Lotus/Powersuits/Pacifist/PacifistDodgeAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "baruuk" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Elusive Retribution", + "icon": "items/images/en/elusive_retribution.93a4b9b33a04f46986376491691085db.png", + "thumb": "items/images/en/thumbs/elusive_retribution.93a4b9b33a04f46986376491691085db.128x128.png" + } + } + }, + { + "id": "6604a653dbdd5c1673781db7", + "slug": "divine_retribution", + "gameRef": "/Lotus/Powersuits/Nezha/NezhaSpearAugmentTwoCard", + "tags": [ + "mod", + "rare", + "warframe", + "nezha" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Divine Retribution", + "icon": "items/images/en/divine_retribution.5c789c19213b7cd12fb3e2678105461e.png", + "thumb": "items/images/en/thumbs/divine_retribution.5c789c19213b7cd12fb3e2678105461e.128x128.png" + } + } + }, + { + "id": "6604a66edbdd5c1673781db9", + "slug": "damage_decoy", + "gameRef": "/Lotus/Powersuits/Loki/DecoyAugmentTwoCard", + "tags": [ + "mod", + "rare", + "warframe", + "loki" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Damage Decoy", + "icon": "items/images/en/damage_decoy.7c1f472f2b7be65de7e9584e11cfa08d.png", + "thumb": "items/images/en/thumbs/damage_decoy.7c1f472f2b7be65de7e9584e11cfa08d.128x128.png" + } + } + }, + { + "id": "6604a680dbdd5c1673781dbb", + "slug": "parasitic_vitality", + "gameRef": "/Lotus/Powersuits/Infestation/InfestLinkAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "nidus" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Parasitic Vitality", + "icon": "items/images/en/parasitic_vitality.6aba69113d42dd27bcfee1981bd734e5.png", + "thumb": "items/images/en/thumbs/parasitic_vitality.6aba69113d42dd27bcfee1981bd734e5.128x128.png" + } + } + }, + { + "id": "6604a691dbdd5c1673781dbd", + "slug": "axios_javelineers", + "gameRef": "/Lotus/Powersuits/Hoplite/HopliteImpaleAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "styanax" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Axios Javelineers", + "icon": "items/images/en/axios_javelineers.8698804f33f71854c353e11cbdf3071e.png", + "thumb": "items/images/en/thumbs/axios_javelineers.8698804f33f71854c353e11cbdf3071e.128x128.png" + } + } + }, + { + "id": "6604a6a8dbdd5c1673781dbf", + "slug": "recrystalize", + "gameRef": "/Lotus/Powersuits/Geode/GeodeGrowthsAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "citrine" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Recrystalize", + "icon": "items/images/en/recrystalize.deac2107b3fe3d3543aa47f22586e719.png", + "thumb": "items/images/en/thumbs/recrystalize.deac2107b3fe3d3543aa47f22586e719.128x128.png" + } + } + }, + { + "id": "6604a6bfdbdd5c1673781dc1", + "slug": "warriors_rest", + "gameRef": "/Lotus/Powersuits/Excalibur/ExcaliburUmbraPassiveAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "excalibur_umbra" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Warrior's Rest", + "icon": "items/images/en/warriors_rest.d1474b8a25587b1425676ae44c4e5560.png", + "thumb": "items/images/en/thumbs/warriors_rest.d1474b8a25587b1425676ae44c4e5560.128x128.png" + } + } + }, + { + "id": "6604a6d5dbdd5c1673781dc3", + "slug": "guardian_armor", + "gameRef": "/Lotus/Powersuits/Dragon/DragonScalesAugmentTwoCard", + "tags": [ + "mod", + "rare", + "warframe", + "chroma" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Guardian Armor", + "icon": "items/images/en/guardian_armor.4f04a10bb9c7639a8ea7c4e249fce9be.png", + "thumb": "items/images/en/thumbs/guardian_armor.4f04a10bb9c7639a8ea7c4e249fce9be.128x128.png" + } + } + }, + { + "id": "6604a6e6dbdd5c1673781dc5", + "slug": "valence_formation", + "gameRef": "/Lotus/Powersuits/Alchemist/AlchemistPassiveAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "lavos" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Valence Formation", + "icon": "items/images/en/valence_formation.ebdf9672f4fecc7f83d193e48cc475eb.png", + "thumb": "items/images/en/thumbs/valence_formation.ebdf9672f4fecc7f83d193e48cc475eb.128x128.png" + } + } + }, + { + "id": "66325ca7e85cac3856c86cbc", + "slug": "protea_prime_set", + "gameRef": "/Lotus/Powersuits/Odalisk/ProteaPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Protea Prime Set", + "icon": "items/images/en/protea_prime_set.c4d0269d10f68228b05510982f06e58b.png", + "thumb": "items/images/en/thumbs/protea_prime_set.c4d0269d10f68228b05510982f06e58b.128x128.png" + } + } + }, + { + "id": "66325caae85cac3856c86cbe", + "slug": "protea_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ProteaPrimeBlueprint", + "tags": [ + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Protea Prime Blueprint", + "icon": "items/images/en/protea_prime_blueprint.c4d0269d10f68228b05510982f06e58b.png", + "thumb": "items/images/en/thumbs/protea_prime_blueprint.c4d0269d10f68228b05510982f06e58b.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "66325cb1e85cac3856c86cc0", + "slug": "protea_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ProteaPrimeHelmetBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Protea Prime Neuroptics Blueprint", + "icon": "items/images/en/protea_prime_neuroptics_blueprint.c4d0269d10f68228b05510982f06e58b.png", + "thumb": "items/images/en/thumbs/protea_prime_neuroptics_blueprint.c4d0269d10f68228b05510982f06e58b.128x128.png", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "66325cb5e85cac3856c86cc2", + "slug": "protea_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ProteaPrimeChassisBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Protea Prime Chassis Blueprint", + "icon": "items/images/en/protea_prime_chassis_blueprint.c4d0269d10f68228b05510982f06e58b.png", + "thumb": "items/images/en/thumbs/protea_prime_chassis_blueprint.c4d0269d10f68228b05510982f06e58b.128x128.png", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "66325cb9e85cac3856c86cc4", + "slug": "protea_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/ProteaPrimeSystemsBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Protea Prime Systems Blueprint", + "icon": "items/images/en/protea_prime_systems_blueprint.c4d0269d10f68228b05510982f06e58b.png", + "thumb": "items/images/en/thumbs/protea_prime_systems_blueprint.c4d0269d10f68228b05510982f06e58b.128x128.png", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "66325ce6e85cac3856c86cc6", + "slug": "axi_b8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionProteaPrimeC", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi B8 Relic", + "icon": "items/images/en/axi_b8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_b8_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "66325ce9e85cac3856c86cc8", + "slug": "axi_f2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionProteaPrimeB", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi F2 Relic", + "icon": "items/images/en/axi_f2_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_f2_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "66325ceae85cac3856c86cca", + "slug": "axi_p7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionProteaPrimeA", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi P7 Relic", + "icon": "items/images/en/axi_p7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.png", + "thumb": "items/images/en/thumbs/axi_p7_relic.f2fcd9189f664b0f2ae7d5bb3f618fa3.128x128.png" + } + } + }, + { + "id": "66325cebe85cac3856c86ccc", + "slug": "neo_m5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeD", + "tags": [ + "relic", + "neo" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo M5 Relic", + "icon": "items/images/en/neo_m5_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_m5_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "66325cece85cac3856c86cce", + "slug": "neo_a12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeC", + "tags": [ + "relic", + "neo" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo A12 Relic", + "icon": "items/images/en/neo_a12_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_a12_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "66325cede85cac3856c86cd0", + "slug": "neo_p6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeB", + "tags": [ + "relic", + "neo" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo P6 Relic", + "icon": "items/images/en/neo_p6_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_p6_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "66325ceee85cac3856c86cd2", + "slug": "neo_o2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeA", + "tags": [ + "relic", + "neo" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo O2 Relic", + "icon": "items/images/en/neo_o2_relic.224e87d2d7e5a4e52109429468c8d379.png", + "thumb": "items/images/en/thumbs/neo_o2_relic.224e87d2d7e5a4e52109429468c8d379.128x128.png" + } + } + }, + { + "id": "66325cefe85cac3856c86cd4", + "slug": "meso_w5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeD", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso W5 Relic", + "icon": "items/images/en/meso_w5_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_w5_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "66325cf0e85cac3856c86cd6", + "slug": "meso_w4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeC", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso W4 Relic", + "icon": "items/images/en/meso_w4_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_w4_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "66325cf1e85cac3856c86cd8", + "slug": "meso_g7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeB", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso G7 Relic", + "icon": "items/images/en/meso_g7_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_g7_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "66325cf2e85cac3856c86cda", + "slug": "meso_v9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeA", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso V9 Relic", + "icon": "items/images/en/meso_v9_relic.a19d00c7586541c7fb6717fa2e27b7ca.png", + "thumb": "items/images/en/thumbs/meso_v9_relic.a19d00c7586541c7fb6717fa2e27b7ca.128x128.png" + } + } + }, + { + "id": "66325cf2e85cac3856c86cdc", + "slug": "lith_t12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionProteaPrimeB", + "tags": [ + "relic", + "lith" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith T12 Relic", + "icon": "items/images/en/lith_t12_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_t12_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "66325cf3e85cac3856c86cde", + "slug": "lith_p9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionProteaPrimeA", + "tags": [ + "relic", + "lith" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith P9 Relic", + "icon": "items/images/en/lith_p9_relic.b9883727b21e25d81bc115605254460a.png", + "thumb": "items/images/en/thumbs/lith_p9_relic.b9883727b21e25d81bc115605254460a.128x128.png" + } + } + }, + { + "id": "663267c3e85cac3856c86db3", + "slug": "velox_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeVelox/PrimeVeloxPistol", + "tags": [ + "weapon", + "secondary", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Velox Prime Set", + "icon": "items/images/en/velox_prime_set.bc5a5e03386043e26ec2a69b90cc0cad.png", + "thumb": "items/images/en/thumbs/velox_prime_set.bc5a5e03386043e26ec2a69b90cc0cad.128x128.png" + } + } + }, + { + "id": "663267c4e85cac3856c86db5", + "slug": "velox_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/VeloxPrimeBlueprint", + "tags": [ + "weapon", + "secondary", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Velox Prime Blueprint", + "icon": "items/images/en/velox_prime_blueprint.bc5a5e03386043e26ec2a69b90cc0cad.png", + "thumb": "items/images/en/thumbs/velox_prime_blueprint.bc5a5e03386043e26ec2a69b90cc0cad.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "663267c5e85cac3856c86db7", + "slug": "velox_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VeloxPrimeBarrel", + "tags": [ + "weapon", + "component", + "prime" + ], + "i18n": { + "en": { + "name": "Velox Prime Barrel", + "icon": "items/images/en/velox_prime_barrel.bc5a5e03386043e26ec2a69b90cc0cad.png", + "thumb": "items/images/en/thumbs/velox_prime_barrel.bc5a5e03386043e26ec2a69b90cc0cad.128x128.png", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "663267c6e85cac3856c86db9", + "slug": "velox_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/VeloxPrimeReceiver", + "tags": [ + "weapon", + "component", + "prime" + ], + "i18n": { + "en": { + "name": "Velox Prime Receiver", + "icon": "items/images/en/velox_prime_receiver.bc5a5e03386043e26ec2a69b90cc0cad.png", + "thumb": "items/images/en/thumbs/velox_prime_receiver.bc5a5e03386043e26ec2a69b90cc0cad.128x128.png", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "663268cbe85cac3856c86dbb", + "slug": "okina_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeOkina/PrimeOkina", + "tags": [ + "weapon", + "melee", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Okina Prime Set", + "icon": "items/images/en/okina_prime_set.d93cf8091977d4c4696423b69951ff7a.png", + "thumb": "items/images/en/thumbs/okina_prime_set.d93cf8091977d4c4696423b69951ff7a.128x128.png" + } + } + }, + { + "id": "663268d0e85cac3856c86dbd", + "slug": "okina_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/OkinaPrimeBlueprint", + "tags": [ + "weapon", + "melee", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Okina Prime Blueprint", + "icon": "items/images/en/okina_prime_blueprint.d93cf8091977d4c4696423b69951ff7a.png", + "thumb": "items/images/en/thumbs/okina_prime_blueprint.d93cf8091977d4c4696423b69951ff7a.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "663268d1e85cac3856c86dbf", + "slug": "okina_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/OkinaPrimeHandle", + "tags": [ + "weapon", + "component", + "prime" + ], + "i18n": { + "en": { + "name": "Okina Prime Handle", + "icon": "items/images/en/okina_prime_handle.d93cf8091977d4c4696423b69951ff7a.png", + "thumb": "items/images/en/thumbs/okina_prime_handle.d93cf8091977d4c4696423b69951ff7a.128x128.png", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "663268d2e85cac3856c86dc1", + "slug": "okina_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/OkinaPrimeBlade", + "tags": [ + "weapon", + "component", + "prime" + ], + "i18n": { + "en": { + "name": "Okina Prime Blade", + "icon": "items/images/en/okina_prime_blade.d93cf8091977d4c4696423b69951ff7a.png", + "thumb": "items/images/en/thumbs/okina_prime_blade.d93cf8091977d4c4696423b69951ff7a.128x128.png", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "66453d566cf5812870c33d29", + "slug": "clip_delegation", + "gameRef": "/Lotus/Upgrades/Mods/Nightwave/SobekNightwaveMod", + "tags": [ + "mod", + "rare", + "primary", + "sobek" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Clip Delegation", + "icon": "items/images/en/clip_delegation.6885d4d8b7f79e214e4afbd6f7af73e9.png", + "thumb": "items/images/en/thumbs/clip_delegation.6885d4d8b7f79e214e4afbd6f7af73e9.128x128.png" + } + } + }, + { + "id": "66453d686cf5812870c33d2b", + "slug": "photon_overcharge", + "gameRef": "/Lotus/Upgrades/Mods/Nightwave/GlaxionNightwaveMod", + "tags": [ + "mod", + "rare", + "primary", + "glaxion" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Photon Overcharge", + "icon": "items/images/en/photon_overcharge.66ce45bf0c362db2657e9702b593c682.png", + "thumb": "items/images/en/thumbs/photon_overcharge.66ce45bf0c362db2657e9702b593c682.128x128.png" + } + } + }, + { + "id": "665d132c941a9cc3e8b9014b", + "slug": "cinta_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/DaxDuviriAsymmetricalLongBowPlayerWeaponBlueprint", + "tags": [ + "weapon", + "primary", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cinta Blueprint", + "icon": "items/images/en/cinta_blueprint.b194993855e39e7e4c47706e7344736e.png", + "thumb": "items/images/en/thumbs/cinta_blueprint.b194993855e39e7e4c47706e7344736e.128x128.png", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "667236b88ba7c81b70d02c90", + "slug": "arcane_ice_storm", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/AbilityPowerOnFreeze", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Ice Storm", + "icon": "items/images/en/arcane_ice_storm.1d3a88fec2c4d415bf8156e2ec9caeeb.webp", + "thumb": "items/images/en/thumbs/arcane_ice_storm.1d3a88fec2c4d415bf8156e2ec9caeeb.128x128.webp" + } + } + }, + { + "id": "667236dd8ba7c81b70d02c92", + "slug": "secondary_surge", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/BonusDamageNextShotForCurEnergy", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Surge", + "icon": "items/images/en/secondary_surge.911b99fe452eaf250ae01c041639a2be.webp", + "thumb": "items/images/en/thumbs/secondary_surge.911b99fe452eaf250ae01c041639a2be.128x128.webp" + } + } + }, + { + "id": "6672373e8ba7c81b70d02c94", + "slug": "arcane_battery", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/MaxEnergyForArmor", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Battery", + "icon": "items/images/en/arcane_battery.2a7148e4cd7466c1e52d821a479d3e4e.webp", + "thumb": "items/images/en/thumbs/arcane_battery.2a7148e4cd7466c1e52d821a479d3e4e.128x128.webp" + } + } + }, + { + "id": "667237598ba7c81b70d02c96", + "slug": "secondary_fortifier", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/OverguardSteal", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Fortifier", + "icon": "items/images/en/secondary_fortifier.4fb942e2930716dcbf608764f313c8cf.webp", + "thumb": "items/images/en/thumbs/secondary_fortifier.4fb942e2930716dcbf608764f313c8cf.128x128.webp" + } + } + }, + { + "id": "667237638ba7c81b70d02c98", + "slug": "the_ballroom_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileArena", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "The Ballroom Simulacrum", + "icon": "items/images/en/the_ballroom_simulacrum.cca043d892013c1f63c3860cada48266.webp", + "thumb": "items/images/en/thumbs/the_ballroom_simulacrum.cca043d892013c1f63c3860cada48266.128x128.webp" + } + } + }, + { + "id": "667237698ba7c81b70d02c9a", + "slug": "the_citadel_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileDefault", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "The Citadel Simulacrum", + "icon": "items/images/en/the_citadel_simulacrum.34a7e0e806f8f49d73dd9688633c4938.webp", + "thumb": "items/images/en/thumbs/the_citadel_simulacrum.34a7e0e806f8f49d73dd9688633c4938.128x128.webp" + } + } + }, + { + "id": "6672376b8ba7c81b70d02c9c", + "slug": "orowyrm_arena_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileDuviriDragonArena", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Orowyrm Arena Simulacrum", + "icon": "items/images/en/orowyrm_arena_simulacrum.e2d4d93ea272050431fe792538d49028.webp", + "thumb": "items/images/en/thumbs/orowyrm_arena_simulacrum.e2d4d93ea272050431fe792538d49028.128x128.webp" + } + } + }, + { + "id": "6672376e8ba7c81b70d02c9e", + "slug": "sanctum_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileEntrati", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Sanctum Simulacrum", + "icon": "items/images/en/sanctum_simulacrum.f49b2e2f21e4e5f4236d537fb427e8ba.webp", + "thumb": "items/images/en/thumbs/sanctum_simulacrum.f49b2e2f21e4e5f4236d537fb427e8ba.128x128.webp" + } + } + }, + { + "id": "667237708ba7c81b70d02ca0", + "slug": "zanuka_arena_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileGasCityBossRoom", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Zanuka Arena Simulacrum", + "icon": "items/images/en/zanuka_arena_simulacrum.bc80d848785a9dda6ccd72117e69b28d.webp", + "thumb": "items/images/en/thumbs/zanuka_arena_simulacrum.bc80d848785a9dda6ccd72117e69b28d.128x128.webp" + } + } + }, + { + "id": "667237748ba7c81b70d02ca2", + "slug": "grineer_asteroid_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileGrineerBossRoom", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Grineer Asteroid Simulacrum", + "icon": "items/images/en/grineer_asteroid_simulacrum.046fd5cfa19b660727fda451b76c2063.webp", + "thumb": "items/images/en/thumbs/grineer_asteroid_simulacrum.046fd5cfa19b660727fda451b76c2063.128x128.webp" + } + } + }, + { + "id": "667237778ba7c81b70d02ca4", + "slug": "orokin_derelict_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileOrokinDerelictArtifactRoom", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Orokin Derelict Simulacrum", + "icon": "items/images/en/orokin_derelict_simulacrum.affcd8740b649be488900433ed055705.webp", + "thumb": "items/images/en/thumbs/orokin_derelict_simulacrum.affcd8740b649be488900433ed055705.128x128.webp" + } + } + }, + { + "id": "6672377c8ba7c81b70d02ca6", + "slug": "ambulas_arena_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileOutpostAmbulasArena", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Ambulas Arena Simulacrum", + "icon": "items/images/en/ambulas_arena_simulacrum.22dec5a427ef68feb920b5415eeacf46.webp", + "thumb": "items/images/en/thumbs/ambulas_arena_simulacrum.22dec5a427ef68feb920b5415eeacf46.128x128.webp" + } + } + }, + { + "id": "667237838ba7c81b70d02ca8", + "slug": "red_veil_temple_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileRedVeilTemple", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Red Veil Temple Simulacrum", + "icon": "items/images/en/red_veil_temple_simulacrum.dc1224584acda35cdf03b6287618c655.webp", + "thumb": "items/images/en/thumbs/red_veil_temple_simulacrum.dc1224584acda35cdf03b6287618c655.128x128.webp" + } + } + }, + { + "id": "667237878ba7c81b70d02caa", + "slug": "moonlit_courtyard_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTileUmbraShrine", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Moonlit Courtyard Simulacrum", + "icon": "items/images/en/moonlit_courtyard_simulacrum.413fde4939923f3a2102ed8bb31c94d4.webp", + "thumb": "items/images/en/thumbs/moonlit_courtyard_simulacrum.413fde4939923f3a2102ed8bb31c94d4.128x128.webp" + } + } + }, + { + "id": "667237a58ba7c81b70d02cac", + "slug": "shotgun_elementalist", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/ShotgunStatusDamageDuoMod", + "tags": [ + "mod", + "uncommon", + "primary", + "shotgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Shotgun Elementalist", + "icon": "items/images/en/shotgun_elementalist.abc35c4698444eb948e6ede2ed437df7.webp", + "thumb": "items/images/en/thumbs/shotgun_elementalist.abc35c4698444eb948e6ede2ed437df7.128x128.webp" + } + } + }, + { + "id": "667237bd8ba7c81b70d02cae", + "slug": "shotgun_cannonade", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/ShotgunSemiAutoFantasyMod", + "tags": [ + "mod", + "uncommon", + "primary", + "shotgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Semi-Shotgun Cannonade", + "icon": "items/images/en/shotgun_cannonade.8c165fbcd25c558ed10526cdedac747c.webp", + "thumb": "items/images/en/thumbs/shotgun_cannonade.8c165fbcd25c558ed10526cdedac747c.128x128.webp" + } + } + }, + { + "id": "667237ec8ba7c81b70d02cb0", + "slug": "rifle_elementalist", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/RifleStatusDamageDuoMod", + "tags": [ + "mod", + "uncommon", + "primary", + "rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Rifle Elementalist", + "icon": "items/images/en/rifle_elementalist.e9a360312645147b66e68937e05c584d.webp", + "thumb": "items/images/en/thumbs/rifle_elementalist.e9a360312645147b66e68937e05c584d.128x128.webp" + } + } + }, + { + "id": "6672381a8ba7c81b70d02cb2", + "slug": "semi_rifle_cannonade", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/RifleSemiAutoFantasyMod", + "tags": [ + "mod", + "uncommon", + "primary", + "rifle" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Semi-Rifle Cannonade", + "icon": "items/images/en/semi_rifle_cannonade.7c70ac07e877a7efdbe52a25140ad821.webp", + "thumb": "items/images/en/thumbs/semi_rifle_cannonade.7c70ac07e877a7efdbe52a25140ad821.128x128.webp" + } + } + }, + { + "id": "667238388ba7c81b70d02cb4", + "slug": "pistol_elementalist", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/PistolStatusDamageDuoMod", + "tags": [ + "mod", + "uncommon", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Pistol Elementalist", + "icon": "items/images/en/pistol_elementalist.72e783c8460937ac2dc33aa1dfc203d6.webp", + "thumb": "items/images/en/thumbs/pistol_elementalist.72e783c8460937ac2dc33aa1dfc203d6.128x128.webp" + } + } + }, + { + "id": "667238628ba7c81b70d02cb6", + "slug": "semi_pistol_cannonade", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/PistolSemiAutoFantasyMod", + "tags": [ + "mod", + "uncommon", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Semi-Pistol Cannonade", + "icon": "items/images/en/semi_pistol_cannonade.3fb6b623d7a8c60e6d9b27a5dc06a1e1.webp", + "thumb": "items/images/en/thumbs/semi_pistol_cannonade.3fb6b623d7a8c60e6d9b27a5dc06a1e1.128x128.webp" + } + } + }, + { + "id": "667238898ba7c81b70d02cb8", + "slug": "melee_elementalist", + "gameRef": "/Lotus/Upgrades/Mods/Melee/MeleeStatusDamageDuoMod", + "tags": [ + "mod", + "uncommon", + "melee" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Elementalist", + "icon": "items/images/en/melee_elementalist.70aea6451b57a5dcf90ed4a2af722e80.webp", + "thumb": "items/images/en/thumbs/melee_elementalist.70aea6451b57a5dcf90ed4a2af722e80.128x128.webp" + } + } + }, + { + "id": "667238a28ba7c81b70d02cba", + "slug": "dark_propagation", + "gameRef": "/Lotus/Powersuits/Wraith/WraithSowAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "sevagoth" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Dark Propagation", + "icon": "items/images/en/dark_propagation.481e35a50554c8c5e7366c8bdaf576e3.webp", + "thumb": "items/images/en/thumbs/dark_propagation.481e35a50554c8c5e7366c8bdaf576e3.128x128.webp" + } + } + }, + { + "id": "667238bc8ba7c81b70d02cbc", + "slug": "temporal_artillery", + "gameRef": "/Lotus/Powersuits/Odalisk/OdaliskBFGAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "protea" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Temporal Artillery", + "icon": "items/images/en/temporal_artillery.7119a48e5579f9f73016c98e123f1d81.webp", + "thumb": "items/images/en/thumbs/temporal_artillery.7119a48e5579f9f73016c98e123f1d81.128x128.webp" + } + } + }, + { + "id": "667238d78ba7c81b70d02cbe", + "slug": "spectral_spirit", + "gameRef": "/Lotus/Powersuits/Dagath/DagathApparitionAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "dagath" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Spectral Spirit", + "icon": "items/images/en/spectral_spirit.46538d5c24f4201461930060ef10fd77.webp", + "thumb": "items/images/en/thumbs/spectral_spirit.46538d5c24f4201461930060ef10fd77.128x128.webp" + } + } + }, + { + "id": "667238fc8ba7c81b70d02cc0", + "slug": "wrecking_wall", + "gameRef": "/Lotus/Powersuits/ConcreteFrame/ConcreteWallAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "qorvex" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Wrecking Wall", + "icon": "items/images/en/wrecking_wall.1bbe5cbc3dbf3abf08c66cb3b99cb528.webp", + "thumb": "items/images/en/thumbs/wrecking_wall.1bbe5cbc3dbf3abf08c66cb3b99cb528.128x128.webp" + } + } + }, + { + "id": "667c25a207a5007fadf3ecaa", + "slug": "melee_afflictions", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/DuplicateStatusOnKnock", + "tags": [ + "rare", + "arcane_enhancement" + ], + "bulkTradable": true, + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Afflictions", + "icon": "items/images/en/melee_afflictions.36f6811228a70719f5ce96ebce22a926.webp", + "thumb": "items/images/en/thumbs/melee_afflictions.36f6811228a70719f5ce96ebce22a926.128x128.webp" + } + } + }, + { + "id": "667ebc4259acb6bf03ebc329", + "slug": "primed_dual_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/PrimedArchwingRifleFireIterationsMod", + "tags": [ + "primary", + "mod", + "legendary", + "archwing", + "archgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Dual Rounds", + "icon": "items/images/en/primed_dual_rounds.c21d07162fabf6e4065f99038a1fa25a.webp", + "thumb": "items/images/en/thumbs/primed_dual_rounds.c21d07162fabf6e4065f99038a1fa25a.128x128.webp" + } + } + }, + { + "id": "667ec83159acb6bf03ebc32b", + "slug": "lith_e1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionEmberRhinoVaultA", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith E1 Relic", + "icon": "items/images/en/lith_e1_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_e1_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "667ec83459acb6bf03ebc32d", + "slug": "lith_k11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowNekrosVaultA", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith K11 Relic", + "icon": "items/images/en/lith_k11_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_k11_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "667ec83659acb6bf03ebc32f", + "slug": "lith_h10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionHarrowNekrosVaultB", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith H10 Relic", + "icon": "items/images/en/lith_h10_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_h10_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "667ec83959acb6bf03ebc331", + "slug": "meso_s14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionEmberRhinosVaultA", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S14 Relic", + "icon": "items/images/en/meso_s14_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_s14_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "667ec83b59acb6bf03ebc333", + "slug": "meso_b10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionEmberRhinosVaultB", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso B10 Relic", + "icon": "items/images/en/meso_b10_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_b10_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "667ec83e59acb6bf03ebc335", + "slug": "meso_n16_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHarrowNekrosVaultA", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso N16 Relic", + "icon": "items/images/en/meso_n16_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_n16_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "667ec83f59acb6bf03ebc337", + "slug": "meso_s13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionHarrowNekrosVaultB", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S13 Relic", + "icon": "items/images/en/meso_s13_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_s13_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "667ec84159acb6bf03ebc339", + "slug": "neo_g5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionHarrowNekrosVaultA", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo G5 Relic", + "icon": "items/images/en/neo_g5_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_g5_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "667ec84759acb6bf03ebc33c", + "slug": "axi_r4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionEmberRhinoVaultA", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi R4 Relic", + "icon": "items/images/en/axi_r4_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_r4_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "667ec85159acb6bf03ebc33e", + "slug": "axi_t11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHarrowNekrosVaultA", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T11 Relic", + "icon": "items/images/en/axi_t11_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_t11_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "667ec85359acb6bf03ebc340", + "slug": "axi_s15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionHarrowNekrosVaultB", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S15 Relic", + "icon": "items/images/en/axi_s15_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_s15_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "66912e8259acb6bf03ebc342", + "slug": "primed_deadly_efficiency", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/PrimedArchwingDamageOnReloadMod", + "tags": [ + "primary", + "mod", + "legendary", + "archwing", + "archgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primed Deadly Efficiency", + "icon": "items/images/en/primed_deadly_efficiency.6c4ef2232a90ec25f8c82a40602a21eb.webp", + "thumb": "items/images/en/thumbs/primed_deadly_efficiency.6c4ef2232a90ec25f8c82a40602a21eb.128x128.webp" + } + } + }, + { + "id": "669bd42a59acb6bf03ebc344", + "slug": "neo_g6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionEmberRhinoVaultA", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo G6 Relic", + "icon": "items/images/en/neo_g6_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_g6_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "66a3a59b2bca759c7edfc9a6", + "slug": "axi_m5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionBaroAkmagnusPrime", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi M5 Relic", + "icon": "items/images/en/axi_m5_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_m5_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "66a51c8e66bbb2aedca694b0", + "slug": "akmagnus_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/DualMagnusPrime", + "tags": [ + "prime", + "secondary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Akmagnus Prime Set", + "icon": "items/images/en/akmagnus_prime.95b6f92e0f3a5b3b82d82195d1778d5d.webp", + "thumb": "items/images/en/thumbs/akmagnus_prime.95b6f92e0f3a5b3b82d82195d1778d5d.128x128.webp" + } + } + }, + { + "id": "66a51c8f66bbb2aedca694b1", + "slug": "akmagnus_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/AkmagnusPrimeBlueprint", + "tags": [ + "prime", + "secondary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Akmagnus Prime Blueprint", + "icon": "items/images/en/akmagnus_prime_blueprint.95b6f92e0f3a5b3b82d82195d1778d5d.webp", + "thumb": "items/images/en/thumbs/akmagnus_prime_blueprint.95b6f92e0f3a5b3b82d82195d1778d5d.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "66a51c9166bbb2aedca694b2", + "slug": "akmagnus_prime_link", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/AkmagnusPrimeLink", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Akmagnus Prime Link", + "icon": "items/images/en/akmagnus_prime_link.95b6f92e0f3a5b3b82d82195d1778d5d.webp", + "thumb": "items/images/en/thumbs/akmagnus_prime_link.95b6f92e0f3a5b3b82d82195d1778d5d.128x128.webp", + "subIcon": "sub_icons/weapon/prime_link_128x128.png" + } + } + }, + { + "id": "66c6080266bbb2aedca6957b", + "slug": "sevagoth_prime_set", + "gameRef": "/Lotus/Powersuits/Wraith/SevagothPrime", + "tags": [ + "prime", + "warframe", + "set" + ], + "i18n": { + "en": { + "name": "Sevagoth Prime Set", + "icon": "items/images/en/sevagoth_prime.56633fb39859f758c11e42519c3521fb.webp", + "thumb": "items/images/en/thumbs/sevagoth_prime.56633fb39859f758c11e42519c3521fb.128x128.webp" + } + } + }, + { + "id": "66c6080266bbb2aedca6957c", + "slug": "sevagoth_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SevagothPrimeBlueprint", + "tags": [ + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sevagoth Prime Blueprint", + "icon": "items/images/en/sevagoth_prime_blueprint.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/sevagoth_prime_blueprint.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "66c6080366bbb2aedca6957d", + "slug": "sevagoth_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SevagothPrimeHelmetBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sevagoth Prime Neuroptics Blueprint", + "icon": "items/images/en/sevagoth_prime_neuroptics_blueprint.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/sevagoth_prime_neuroptics_blueprint.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "66c6080366bbb2aedca6957e", + "slug": "sevagoth_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SevagothPrimeChassisBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sevagoth Prime Chassis Blueprint", + "icon": "items/images/en/sevagoth_prime_chassis_blueprint.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/sevagoth_prime_chassis_blueprint.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "66c6080366bbb2aedca6957f", + "slug": "sevagoth_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/SevagothPrimeSystemsBlueprint", + "tags": [ + "component", + "prime", + "warframe", + "blueprint" + ], + "i18n": { + "en": { + "name": "Sevagoth Prime Systems Blueprint", + "icon": "items/images/en/sevagoth_prime_systems_blueprint.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/sevagoth_prime_systems_blueprint.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "66c6097966bbb2aedca69581", + "slug": "axi_s17_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionSevagothPrimeC", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S17 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6097b66bbb2aedca69583", + "slug": "axi_s16_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionSevagothPrimeB", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi S16 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6097c66bbb2aedca69585", + "slug": "axi_o6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionSevagothPrimeA", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi O6 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6097d66bbb2aedca69587", + "slug": "neo_p7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeF", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo P7 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6097e66bbb2aedca69589", + "slug": "neo_b9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeE", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo B9 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098266bbb2aedca6958b", + "slug": "neo_z11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeD", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Z11 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098366bbb2aedca6958d", + "slug": "neo_g7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeC", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo G7 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098366bbb2aedca6958f", + "slug": "neo_a13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeB", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo A13 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098466bbb2aedca69591", + "slug": "neo_e4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeA", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo E4 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098566bbb2aedca69593", + "slug": "meso_f5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeD", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso F5 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098666bbb2aedca69595", + "slug": "meso_a7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeC", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso A7 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098666bbb2aedca69597", + "slug": "meso_h7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeB", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H7 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098766bbb2aedca69599", + "slug": "meso_n17_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeA", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso N17 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098866bbb2aedca6959b", + "slug": "lith_g12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionSevagothPrimeD", + "tags": [ + "relic", + "lith" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith G12 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098966bbb2aedca6959d", + "slug": "lith_n15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionSevagothPrimeC", + "tags": [ + "relic", + "lith" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith N15 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098a66bbb2aedca6959f", + "slug": "lith_w4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionSevagothPrimeB", + "tags": [ + "relic", + "lith" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith W4 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c6098b66bbb2aedca695a1", + "slug": "lith_c12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionSevagothPrimeA", + "tags": [ + "relic", + "lith" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith C12 Relic", + "icon": "items/unknown.png", + "thumb": "items/unknown.thumb.png" + } + } + }, + { + "id": "66c60c2766bbb2aedca695a3", + "slug": "epitaph_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/PrimeEpitaph/PrimeEpitaphSidearmWeapon", + "tags": [ + "prime", + "secondary", + "weapon", + "set" + ], + "i18n": { + "en": { + "name": "Epitaph Prime Set", + "icon": "items/images/en/epitaph_prime.7402042b9ff2df97d76b99404f0bb527.webp", + "thumb": "items/images/en/thumbs/epitaph_prime.7402042b9ff2df97d76b99404f0bb527.128x128.webp" + } + } + }, + { + "id": "66c60c2766bbb2aedca695a4", + "slug": "epitaph_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/EpitaphPrimeBlueprint", + "tags": [ + "prime", + "secondary", + "weapon", + "blueprint" + ], + "i18n": { + "en": { + "name": "Epitaph Prime Blueprint", + "icon": "items/images/en/epitaph_prime_blueprint.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/epitaph_prime_blueprint.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "66c60c2766bbb2aedca695a5", + "slug": "epitaph_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/EpitaphPrimeBarrel", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Epitaph Prime Barrel", + "icon": "items/images/en/epitaph_prime_barrel.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/epitaph_prime_barrel.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "66c60c2766bbb2aedca695a6", + "slug": "epitaph_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/EpitaphPrimeReceiver", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Epitaph Prime Receiver", + "icon": "items/images/en/epitaph_prime_receiver.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/epitaph_prime_receiver.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "66c60c9066bbb2aedca695a8", + "slug": "nautilus_prime_set", + "gameRef": "/Lotus/Types/Sentinels/SentinelPowersuits/NautilusPrimeSentinelPowerSuit", + "tags": [ + "prime", + "sentinel", + "set" + ], + "i18n": { + "en": { + "name": "Nautilus Prime Set", + "icon": "items/images/en/nautilus_prime.64f2680abc41ecdb62943bc1b55be8c4.webp", + "thumb": "items/images/en/thumbs/nautilus_prime.64f2680abc41ecdb62943bc1b55be8c4.128x128.webp" + } + } + }, + { + "id": "66c60c9066bbb2aedca695a9", + "slug": "nautilus_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/SentinelRecipes/NautilusPrimeSentinelBlueprint", + "tags": [ + "prime", + "sentinel", + "blueprint" + ], + "i18n": { + "en": { + "name": "Nautilus Prime Blueprint", + "icon": "items/images/en/nautilus_prime_blueprint.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/nautilus_prime_blueprint.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "66c60c9066bbb2aedca695aa", + "slug": "nautilus_prime_cerebrum", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NautilusPrimeCerebrum", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Nautilus Prime Cerebrum", + "icon": "items/images/en/nautilus_prime_cerebrum.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/nautilus_prime_cerebrum.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/weapon/prime_cerebrum_128x128.png" + } + } + }, + { + "id": "66c60c9066bbb2aedca695ab", + "slug": "nautilus_prime_carapace", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NautilusPrimeCarapace", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Nautilus Prime Carapace", + "icon": "items/images/en/nautilus_prime_carapace.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/nautilus_prime_carapace.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/weapon/prime_carapace_128x128.png" + } + } + }, + { + "id": "66c60c9166bbb2aedca695ac", + "slug": "nautilus_prime_systems", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/NautilusPrimeSystems", + "tags": [ + "component", + "prime", + "weapon" + ], + "i18n": { + "en": { + "name": "Nautilus Prime Systems", + "icon": "items/images/en/nautilus_prime_systems.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/nautilus_prime_systems.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp", + "subIcon": "sub_icons/weapon/prime_systems_128x128.png" + } + } + }, + { + "id": "66f6d4663a826eccf651c36e", + "slug": "burning_hate", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Event/Nightwave/NightwaveStalkerScytheAugmentMod", + "tags": [ + "mod", + "rare", + "melee", + "hate" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Burning Hate", + "icon": "items/images/en/burning_hate.beee5a6aff188b16a81c242f6be06902.webp", + "thumb": "items/images/en/thumbs/burning_hate.beee5a6aff188b16a81c242f6be06902.128x128.webp" + } + } + }, + { + "id": "66f6d46b3a826eccf651c370", + "slug": "unseen_dread", + "gameRef": "/Lotus/Upgrades/Mods/Bows/Event/Nightwave/NightwaveStalkerBowAugmentMod", + "tags": [ + "mod", + "rare", + "primary", + "dread" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Unseen Dread", + "icon": "items/images/en/unseen_dread.dffb4a978f2528bb4d247b9b8899d7a0.webp", + "thumb": "items/images/en/thumbs/unseen_dread.dffb4a978f2528bb4d247b9b8899d7a0.128x128.webp" + } + } + }, + { + "id": "66fd67b33a826eccf651cd4b", + "slug": "prey_of_dynar", + "gameRef": "/Lotus/Powersuits/Werewolf/WerewolfShroudAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "voruna" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Prey Of Dynar", + "icon": "items/images/en/prey_of_dynar.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/prey_of_dynar.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd67d13a826eccf651cd4d", + "slug": "aegis_gale", + "gameRef": "/Lotus/Powersuits/IronFrame/IronFrameEruptionAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "hildryn" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Aegis Gale", + "icon": "items/images/en/aegis_gale.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/aegis_gale.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd67dc3a826eccf651cd4f", + "slug": "coil_recharge", + "gameRef": "/Lotus/Powersuits/Gyre/GyreSphereAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "gyre" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Coil Recharge", + "icon": "items/images/en/coil_recharge.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/coil_recharge.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd67e93a826eccf651cd51", + "slug": "gastro", + "gameRef": "/Lotus/Powersuits/Devourer/DevourerRegurgitateAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "grendel" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Gastro", + "icon": "items/images/en/gastro.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/gastro.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd67fb3a826eccf651cd53", + "slug": "higasa_serration", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/Gunbrella/ShrineMaidenGunbrellaAugment", + "tags": [ + "mod", + "rare", + "primary", + "higasa" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Higasa Serration", + "icon": "items/images/en/higasa_serration.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/higasa_serration.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd68073a826eccf651cd55", + "slug": "amanata_pressure", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/Naginata/ShrineMaidenNaginataAugment", + "tags": [ + "mod", + "rare", + "melee", + "amanata" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Amanata Pressure", + "icon": "items/images/en/amanata_pressure.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/amanata_pressure.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69223a826eccf651cd57", + "slug": "sepsis_claws", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/KubrowToxicConversionMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Sepsis Claws", + "icon": "items/images/en/sepsis_claws.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/sepsis_claws.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd692b3a826eccf651cd59", + "slug": "burning_claws", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/KubrowHeatConversionMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Burning Claws", + "icon": "items/images/en/burning_claws.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/burning_claws.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69303a826eccf651cd5b", + "slug": "shocking_claws", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/KubrowElectricConversionMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Shocking Claws", + "icon": "items/images/en/shocking_claws.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/shocking_claws.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69423a826eccf651cd5d", + "slug": "chilling_claws", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/KubrowColdConversionMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Chilling Claws", + "icon": "items/images/en/chilling_claws.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/chilling_claws.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69503a826eccf651cd5f", + "slug": "assassin_posture", + "gameRef": "/Lotus/Types/Friendly/Pets/BeastWeapons/Stances/BeastVIPStance", + "tags": [ + "mod", + "common", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Assassin Posture", + "icon": "items/images/en/assassin_posture.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/assassin_posture.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69593a826eccf651cd61", + "slug": "frenzied_posture", + "gameRef": "/Lotus/Types/Friendly/Pets/BeastWeapons/Stances/BeastSpreadAttacksStance", + "tags": [ + "mod", + "common", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Frenzied Posture", + "icon": "items/images/en/frenzied_posture.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/frenzied_posture.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69603a826eccf651cd63", + "slug": "protector_posture", + "gameRef": "/Lotus/Types/Friendly/Pets/BeastWeapons/Stances/BeastProtectorStance", + "tags": [ + "mod", + "common", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Protector Posture", + "icon": "items/images/en/protector_posture.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/protector_posture.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69673a826eccf651cd65", + "slug": "persistent_posture", + "gameRef": "/Lotus/Types/Friendly/Pets/BeastWeapons/Stances/BeastPersistentStance", + "tags": [ + "mod", + "common", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Persistent Posture", + "icon": "items/images/en/persistent_posture.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/persistent_posture.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd696d3a826eccf651cd67", + "slug": "elusive_posture", + "gameRef": "/Lotus/Types/Friendly/Pets/BeastWeapons/Stances/BeastPacifistStance", + "tags": [ + "mod", + "common", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Elusive Posture", + "icon": "items/images/en/elusive_posture.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/elusive_posture.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69733a826eccf651cd69", + "slug": "balanced_posture", + "gameRef": "/Lotus/Types/Friendly/Pets/BeastWeapons/Stances/BeastNeutralStance", + "tags": [ + "mod", + "common", + "stance", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Balanced Posture", + "icon": "items/images/en/balanced_posture.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/balanced_posture.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69c33a826eccf651cd6b", + "slug": "resourceful_retriever", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/BeastResourceDoublingMod", + "tags": [ + "mod", + "rare", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Resourceful Retriever", + "icon": "items/images/en/resourceful_retriever.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/resourceful_retriever.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69d03a826eccf651cd6d", + "slug": "loyal_retriever", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/BeastLoyalRetriever", + "tags": [ + "mod", + "uncommon", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Loyal Retriever", + "icon": "items/images/en/loyal_retriever.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/loyal_retriever.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69d63a826eccf651cd6f", + "slug": "prosperous_retriever", + "gameRef": "/Lotus/Types/Sentinels/SentinelPrecepts/BeastCreditDoublingMod", + "tags": [ + "mod", + "rare", + "sentinel", + "beast" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Prosperous Retriever", + "icon": "items/images/en/prosperous_retriever.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/prosperous_retriever.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd69fb3a826eccf651cd71", + "slug": "precision_conditioning", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastPrecisionConditioningMod", + "tags": [ + "mod", + "uncommon", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Precision Conditioning", + "icon": "items/images/en/precision_conditioning.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/precision_conditioning.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6a1c3a826eccf651cd73", + "slug": "immunity_resistance", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastWeakenedImmunityMod", + "tags": [ + "mod", + "common", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Immunity Resistance", + "icon": "items/images/en/immunity_resistance.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/immunity_resistance.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6a303a826eccf651cd75", + "slug": "magnetic_strike", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastMagneticImpactMod", + "tags": [ + "mod", + "common", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetic Strike", + "icon": "items/images/en/magnetic_strike.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/magnetic_strike.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6a383a826eccf651cd77", + "slug": "bell_ringer", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastKnockdownWeaponMod", + "tags": [ + "mod", + "uncommon", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Bell Ringer", + "icon": "items/images/en/bell_ringer.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/bell_ringer.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6a413a826eccf651cd79", + "slug": "bloodthirst", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastDrainingBiteMod", + "tags": [ + "mod", + "common", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Bloodthirst", + "icon": "items/images/en/bloodthirst.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/bloodthirst.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6a503a826eccf651cd7b", + "slug": "disabling_conditioning", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastDisablingConditioningMod", + "tags": [ + "mod", + "uncommon", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Disabling Conditioning", + "icon": "items/images/en/disabling_conditioning.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/disabling_conditioning.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6a5b3a826eccf651cd7d", + "slug": "cull_the_weak", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastCullTheWeakMod", + "tags": [ + "mod", + "uncommon", + "melee", + "claws" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Cull The Weak", + "icon": "items/images/en/cull_the_weak.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/cull_the_weak.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6acc3a826eccf651cd7f", + "slug": "brute_conditioning", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/BeastWeapon/BeastBruteConditioningMod", + "tags": [ + "mod", + "uncommon", + "melee", + "claws" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Brute Conditioning", + "icon": "items/images/en/brute_conditioning.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/brute_conditioning.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6c7b3a826eccf651cd82", + "slug": "galvanized_steel", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponCritChanceSPMod", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Steel", + "icon": "items/images/en/galvanized_steel.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/galvanized_steel.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6c933a826eccf651cd84", + "slug": "galvanized_reflex", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponHeavyAttackEfficiencySPSubMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Reflex", + "icon": "items/images/en/galvanized_reflex.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/galvanized_reflex.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "66fd6ca03a826eccf651cd86", + "slug": "galvanized_elementalist", + "gameRef": "/Lotus/Upgrades/Mods/Melee/Expert/WeaponMeleeStatusChanceSPSubMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Galvanized Elementalist", + "icon": "items/images/en/galvanized_elementalist.a81cadf3c1f6e67c92c188534ced77b2.webp", + "thumb": "items/images/en/thumbs/galvanized_elementalist.a81cadf3c1f6e67c92c188534ced77b2.128x128.webp" + } + } + }, + { + "id": "672229f51ce4caca2fe98667", + "slug": "lith_d6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionGarudaKhoraVaultA", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith D6 Relic", + "icon": "items/images/en/lith_d6_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_d6_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "672229fc1ce4caca2fe98669", + "slug": "meso_h8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionGarudaKhoraVaultA", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso H8 Relic", + "icon": "items/images/en/meso_h8_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_h8_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67222a101ce4caca2fe9866b", + "slug": "neo_c5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGarudaKhoraVaultA", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo C5 Relic", + "icon": "items/images/en/neo_c5_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_c5_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67222a151ce4caca2fe9866d", + "slug": "neo_k8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionGarudaKhoraVaultB", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo K8 Relic", + "icon": "items/images/en/neo_k8_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_k8_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67222a181ce4caca2fe9866f", + "slug": "axi_g13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGarudaKhoraVaultA", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi G13 Relic", + "icon": "items/images/en/axi_g13_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_g13_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67222a1c1ce4caca2fe98671", + "slug": "axi_n11_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionGarudaKhoraVaultB", + "tags": [ + "relic", + "axi" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N11 Relic", + "icon": "items/images/en/axi_n11_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_n11_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "673516a9db3ac2cfade14a70", + "slug": "xaku_prime_set", + "gameRef": "/Lotus/Powersuits/BrokenFrame/XakuPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Xaku Prime Set", + "icon": "items/images/en/xaku_prime.caeeda2f9eec158d19fd76d7631fa5de.webp", + "thumb": "items/images/en/thumbs/xaku_prime.caeeda2f9eec158d19fd76d7631fa5de.128x128.webp" + } + } + }, + { + "id": "673516aadb3ac2cfade14a71", + "slug": "xaku_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/XakuPrimeBlueprint", + "tags": [ + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Xaku Prime Blueprint", + "icon": "items/images/en/xaku_prime_blueprint.caeeda2f9eec158d19fd76d7631fa5de.webp", + "thumb": "items/images/en/thumbs/xaku_prime_blueprint.caeeda2f9eec158d19fd76d7631fa5de.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "673516abdb3ac2cfade14a72", + "slug": "xaku_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/XakuPrimeHelmetBlueprint", + "tags": [ + "warframe", + "component", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Xaku Prime Neuroptics Blueprint", + "icon": "items/images/en/xaku_prime_neuroptics_blueprint.caeeda2f9eec158d19fd76d7631fa5de.webp", + "thumb": "items/images/en/thumbs/xaku_prime_neuroptics_blueprint.caeeda2f9eec158d19fd76d7631fa5de.128x128.webp", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "673516acdb3ac2cfade14a73", + "slug": "xaku_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/XakuPrimeChassisBlueprint", + "tags": [ + "warframe", + "component", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Xaku Prime Chassis Blueprint", + "icon": "items/images/en/xaku_prime_chassis_blueprint.caeeda2f9eec158d19fd76d7631fa5de.webp", + "thumb": "items/images/en/thumbs/xaku_prime_chassis_blueprint.caeeda2f9eec158d19fd76d7631fa5de.128x128.webp", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "673516addb3ac2cfade14a74", + "slug": "xaku_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/XakuPrimeSystemsBlueprint", + "tags": [ + "warframe", + "component", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Xaku Prime Systems Blueprint", + "icon": "items/images/en/xaku_prime_systems_blueprint.caeeda2f9eec158d19fd76d7631fa5de.webp", + "thumb": "items/images/en/thumbs/xaku_prime_systems_blueprint.caeeda2f9eec158d19fd76d7631fa5de.128x128.webp", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "673516c5db3ac2cfade14a76", + "slug": "trumna_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeTrumna/PrimeTrumnaWeapon", + "tags": [ + "primary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Trumna Prime Set", + "icon": "items/images/en/trumna_prime.ccbe6544b4b41bb246fee4f68fe4d371.webp", + "thumb": "items/images/en/thumbs/trumna_prime.ccbe6544b4b41bb246fee4f68fe4d371.128x128.webp" + } + } + }, + { + "id": "673516c6db3ac2cfade14a77", + "slug": "trumna_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/TrumnaPrimeBlueprint", + "tags": [ + "primary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Trumna Prime Blueprint", + "icon": "items/images/en/trumna_prime_blueprint.ccbe6544b4b41bb246fee4f68fe4d371.webp", + "thumb": "items/images/en/thumbs/trumna_prime_blueprint.ccbe6544b4b41bb246fee4f68fe4d371.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "673516c7db3ac2cfade14a78", + "slug": "trumna_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TrumnaPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Trumna Prime Barrel", + "icon": "items/images/en/trumna_prime_barrel.ccbe6544b4b41bb246fee4f68fe4d371.webp", + "thumb": "items/images/en/thumbs/trumna_prime_barrel.ccbe6544b4b41bb246fee4f68fe4d371.128x128.webp", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "673516c8db3ac2cfade14a79", + "slug": "trumna_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TrumnaPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Trumna Prime Receiver", + "icon": "items/images/en/trumna_prime_receiver.ccbe6544b4b41bb246fee4f68fe4d371.webp", + "thumb": "items/images/en/thumbs/trumna_prime_receiver.ccbe6544b4b41bb246fee4f68fe4d371.128x128.webp", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "673516c9db3ac2cfade14a7a", + "slug": "trumna_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TrumnaPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Trumna Prime Stock", + "icon": "items/images/en/trumna_prime_stock.ccbe6544b4b41bb246fee4f68fe4d371.webp", + "thumb": "items/images/en/thumbs/trumna_prime_stock.ccbe6544b4b41bb246fee4f68fe4d371.128x128.webp", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "673516dddb3ac2cfade14a7c", + "slug": "quassus_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Warfan/PrimeQuassus/PrimeQuassusWeapon", + "tags": [ + "melee", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Quassus Prime Set", + "icon": "items/images/en/quassus_prime.e2d3b6fc89126a4d513be40752388c0e.webp", + "thumb": "items/images/en/thumbs/quassus_prime.e2d3b6fc89126a4d513be40752388c0e.128x128.webp" + } + } + }, + { + "id": "673516dedb3ac2cfade14a7d", + "slug": "quassus_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/QuassusPrimeBlueprint", + "tags": [ + "melee", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Quassus Prime Blueprint", + "icon": "items/images/en/quassus_prime_blueprint.e2d3b6fc89126a4d513be40752388c0e.webp", + "thumb": "items/images/en/thumbs/quassus_prime_blueprint.e2d3b6fc89126a4d513be40752388c0e.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "673516dfdb3ac2cfade14a7e", + "slug": "quassus_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/QuassusPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Quassus Prime Handle", + "icon": "items/images/en/quassus_prime_handle.e2d3b6fc89126a4d513be40752388c0e.webp", + "thumb": "items/images/en/thumbs/quassus_prime_handle.e2d3b6fc89126a4d513be40752388c0e.128x128.webp", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "673516e0db3ac2cfade14a7f", + "slug": "quassus_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/QuassusPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Quassus Prime Blade", + "icon": "items/images/en/quassus_prime_blade.e2d3b6fc89126a4d513be40752388c0e.webp", + "thumb": "items/images/en/thumbs/quassus_prime_blade.e2d3b6fc89126a4d513be40752388c0e.128x128.webp", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "6735180cdb3ac2cfade14a81", + "slug": "axi_a19_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeD", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi A19 Relic", + "icon": "items/images/en/axi_a19_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_a19_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "6735180ddb3ac2cfade14a82", + "slug": "axi_g14_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeC", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi G14 Relic", + "icon": "items/images/en/axi_g14_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_g14_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "6735180edb3ac2cfade14a83", + "slug": "axi_h8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeB", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi H8 Relic", + "icon": "items/images/en/axi_h8_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_h8_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "6735180fdb3ac2cfade14a84", + "slug": "axi_t12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeA", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi T12 Relic", + "icon": "items/images/en/axi_t12_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_t12_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67351810db3ac2cfade14a85", + "slug": "neo_w2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeD", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo W2 Relic", + "icon": "items/images/en/neo_w2_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_w2_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67351810db3ac2cfade14a86", + "slug": "neo_g8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeC", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo G8 Relic", + "icon": "items/images/en/neo_g8_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_g8_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67351811db3ac2cfade14a87", + "slug": "neo_q1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeB", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo Q1 Relic", + "icon": "items/images/en/neo_q1_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_q1_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67351812db3ac2cfade14a88", + "slug": "neo_l4_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeA", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo L4 Relic", + "icon": "items/images/en/neo_l4_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_l4_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67351813db3ac2cfade14a89", + "slug": "meso_v10_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeD", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso V10 Relic", + "icon": "items/images/en/meso_v10_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_v10_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67351814db3ac2cfade14a8a", + "slug": "meso_t7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeC", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso T7 Relic", + "icon": "items/images/en/meso_t7_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_t7_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67351815db3ac2cfade14a8b", + "slug": "meso_e6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeB", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso E6 Relic", + "icon": "items/images/en/meso_e6_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_e6_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67351815db3ac2cfade14a8c", + "slug": "meso_g8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeA", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso G8 Relic", + "icon": "items/images/en/meso_g8_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_g8_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67351816db3ac2cfade14a8d", + "slug": "lith_m9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionXakuPrimeD", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith M9 Relic", + "icon": "items/images/en/lith_m9_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_m9_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "67351817db3ac2cfade14a8e", + "slug": "lith_g13_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionXakuPrimeC", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith G13 Relic", + "icon": "items/images/en/lith_g13_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_g13_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "6735194edb3ac2cfade14a90", + "slug": "lith_n16_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionXakuPrimeB", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith N16 Relic", + "icon": "items/images/en/lith_n16_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_n16_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "6735194edb3ac2cfade14a91", + "slug": "lith_x1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionXakuPrimeA", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith X1 Relic", + "icon": "items/images/en/lith_x1_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_x1_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "675c59247b18977f6e6453e8", + "slug": "arcane_crepuscular", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/AbilityStrengthAndCritDamageWhenInvisible", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Crepuscular", + "icon": "items/images/en/arcane_crepuscular.8e34ad3ac57362158d9ec6d642364427.webp", + "thumb": "items/images/en/thumbs/arcane_crepuscular.8e34ad3ac57362158d9ec6d642364427.128x128.webp" + } + } + }, + { + "id": "675c59297b18977f6e6453ea", + "slug": "arcane_impetus", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/AbilityStatusProcsGiveAbilityStrengthAndEfficiency", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Impetus", + "icon": "items/images/en/arcane_impetus.eaa1ea005d4f154f48f97f0989e7f848.webp", + "thumb": "items/images/en/thumbs/arcane_impetus.eaa1ea005d4f154f48f97f0989e7f848.128x128.webp" + } + } + }, + { + "id": "675c59347b18977f6e6453ec", + "slug": "primary_crux", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/StatusAndAmmoEfficiencyOnWeakpointHit", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Primary Crux", + "icon": "items/images/en/primary_crux.be6cbbeead671dca1aa908113441d814.webp", + "thumb": "items/images/en/thumbs/primary_crux.be6cbbeead671dca1aa908113441d814.128x128.webp" + } + } + }, + { + "id": "675c5cd07b18977f6e6453ee", + "slug": "secondary_enervate", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/SecondaryCritOnHit", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Secondary Enervate", + "icon": "items/images/en/secondary_enervate.ad8d69119b058ad12c196bcf33352bd2.webp", + "thumb": "items/images/en/thumbs/secondary_enervate.ad8d69119b058ad12c196bcf33352bd2.128x128.webp" + } + } + }, + { + "id": "675c5cd97b18977f6e6453f0", + "slug": "melee_doughty", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/CritDamageForPunctureStatus", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Melee Doughty", + "icon": "items/images/en/melee_doughty.642bb1ab3c5d3e2b5bca70f4c2e50f39.webp", + "thumb": "items/images/en/thumbs/melee_doughty.642bb1ab3c5d3e2b5bca70f4c2e50f39.128x128.webp" + } + } + }, + { + "id": "675c5ed17b18977f6e6453f2", + "slug": "arcane_camisado", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/AbilityStrengthOnSummonAttack", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Camisado", + "icon": "items/images/en/arcane_camisado.49bb15acacdfe7a2782b56151d0a8a3f.webp", + "thumb": "items/images/en/thumbs/arcane_camisado.49bb15acacdfe7a2782b56151d0a8a3f.128x128.webp" + } + } + }, + { + "id": "675c5edc7b18977f6e6453f4", + "slug": "arcane_bellicose", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/AbilityStrengthForMaxHealth", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Bellicose", + "icon": "items/images/en/arcane_bellicose.cba86d2bfb1b20b4a512b6913e79ba0c.webp", + "thumb": "items/images/en/thumbs/arcane_bellicose.cba86d2bfb1b20b4a512b6913e79ba0c.128x128.webp" + } + } + }, + { + "id": "675c5ee47b18977f6e6453f6", + "slug": "arcane_truculence", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/RadialViralAttackOnOverguardGain", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Truculence", + "icon": "items/images/en/arcane_truculence.1a7e80d9006d376a28883af0ca96cbdf.webp", + "thumb": "items/images/en/thumbs/arcane_truculence.1a7e80d9006d376a28883af0ca96cbdf.128x128.webp" + } + } + }, + { + "id": "675c610e7b18977f6e6453f8", + "slug": "mall_rotunda_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTile1999MallRotunda", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Mall Rotunda Simulacrum", + "icon": "items/images/en/mall_rotunda_simulacrum.13f34cfe2dffff3549cf5736f75c06cf.webp", + "thumb": "items/images/en/thumbs/mall_rotunda_simulacrum.13f34cfe2dffff3549cf5736f75c06cf.128x128.webp" + } + } + }, + { + "id": "675c61117b18977f6e6453fa", + "slug": "höllvanian_courtyard_simulacrum", + "gameRef": "/Lotus/Types/Items/DangerRoom/DangerRoomTile1999StreetCourtyard", + "tags": [ + "simulacrum" + ], + "i18n": { + "en": { + "name": "Höllvanian Courtyard Simulacrum", + "icon": "items/images/en/höllvanian_courtyard_simulacrum.c751ef83bdcf555f3c5c7aa15c413d90.webp", + "thumb": "items/images/en/thumbs/höllvanian_courtyard_simulacrum.c751ef83bdcf555f3c5c7aa15c413d90.128x128.webp" + } + } + }, + { + "id": "675c61507b18977f6e6453fc", + "slug": "höllvanian_terrace_in_summer", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaConAlleyValguma", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Höllvanian Terrace In Summer Scene", + "icon": "items/images/en/höllvanian_terrace_in_summer.0bf4d756cb9688a0ad3a34f94a0da30c.webp", + "thumb": "items/images/en/thumbs/höllvanian_terrace_in_summer.0bf4d756cb9688a0ad3a34f94a0da30c.128x128.webp" + } + } + }, + { + "id": "675c615f7b18977f6e6453fe", + "slug": "tech_titan_electronics_store", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaConMallGrano", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Tech Titan Electronics Store Scene", + "icon": "items/images/en/tech_titan_electronics_store.36b80b1bd3850d280b0d865dceefa6da.webp", + "thumb": "items/images/en/thumbs/tech_titan_electronics_store.36b80b1bd3850d280b0d865dceefa6da.128x128.webp" + } + } + }, + { + "id": "675c61627b18977f6e645400", + "slug": "höllvanian_intersection_in_winter", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaConStreetJekabpils", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Höllvanian Intersection In Winter Scene", + "icon": "items/images/en/höllvanian_intersection_in_winter.2d0d55f1d75f98af5a4bb4455abb3eb9.webp", + "thumb": "items/images/en/thumbs/höllvanian_intersection_in_winter.2d0d55f1d75f98af5a4bb4455abb3eb9.128x128.webp" + } + } + }, + { + "id": "675c61697b18977f6e645402", + "slug": "höllvania_central_mall_subway", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaConMallStargla", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Höllvania Central Mall Subway", + "icon": "items/images/en/höllvania_central_mall_subway.519164f9ef93cf13877d8c6b4d8b5ccf.webp", + "thumb": "items/images/en/thumbs/höllvania_central_mall_subway.519164f9ef93cf13877d8c6b4d8b5ccf.128x128.webp" + } + } + }, + { + "id": "675c616b7b18977f6e645404", + "slug": "höllvanian_tenements_in_summer", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaConStreetMatisa", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Höllvanian Tenements In Summer Scene", + "icon": "items/images/en/höllvanian_tenements_in_summer.7de4fda12372b3949f958e419dc29d2a.webp", + "thumb": "items/images/en/thumbs/höllvanian_tenements_in_summer.7de4fda12372b3949f958e419dc29d2a.128x128.webp" + } + } + }, + { + "id": "675c61737b18977f6e645406", + "slug": "höllvanian_historic_quarter_in_spring", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaConStreetOgres", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Höllvanian Historic Quarter In Spring Scene", + "icon": "items/images/en/höllvanian_historic_quarter_in_spring.7c3d1b41bbf2b0ec06f0cd48f2f83206.webp", + "thumb": "items/images/en/thumbs/höllvanian_historic_quarter_in_spring.7c3d1b41bbf2b0ec06f0cd48f2f83206.128x128.webp" + } + } + }, + { + "id": "675c61797b18977f6e645408", + "slug": "höllvanian_old_town_in_fall", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaConStreetStrencu", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Höllvanian Old Town In Fall Scene", + "icon": "items/images/en/höllvanian_old_town_in_fall.344818cf886ef0e7aa674b4aee6de1dc.webp", + "thumb": "items/images/en/thumbs/höllvanian_old_town_in_fall.344818cf886ef0e7aa674b4aee6de1dc.128x128.webp" + } + } + }, + { + "id": "675c618a7b18977f6e64540a", + "slug": "orbit_arcade", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaIntMallArcade", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Orbit Arcade Scene", + "icon": "items/images/en/orbit_arcade.b9552290336892435f45eb3fea8a7d75.webp", + "thumb": "items/images/en/thumbs/orbit_arcade.b9552290336892435f45eb3fea8a7d75.128x128.webp" + } + } + }, + { + "id": "675c61997b18977f6e64540c", + "slug": "central_mall_backroom", + "gameRef": "/Lotus/Types/Items/PhotoBooth/Vania/PhotoboothTileVaniaTailorShop", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Central Mall Backroom Scene", + "icon": "items/images/en/central_mall_backroom.856ef8eab69a55701498e02aade78ee2.webp", + "thumb": "items/images/en/thumbs/central_mall_backroom.856ef8eab69a55701498e02aade78ee2.128x128.webp" + } + } + }, + { + "id": "675c61b47b18977f6e64540e", + "slug": "magnetic_welt", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/WeaponMagneticOnImpactShotgunMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Magnetic Welt", + "icon": "items/images/en/magnetic_welt.2b5f4005ed814b0e817c46a213586574.webp", + "thumb": "items/images/en/thumbs/magnetic_welt.2b5f4005ed814b0e817c46a213586574.128x128.webp" + } + } + }, + { + "id": "675c61c07b18977f6e645410", + "slug": "magnetic_strafe", + "gameRef": "/Lotus/Upgrades/Mods/Shotgun/DualStat/MagneticFireRateShotgunMod", + "tags": [ + "mod", + "rare", + "primary", + "shotgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetic Strafe", + "icon": "items/images/en/magnetic_strafe.0653b6db4a0acb604c56e98c0d9e8599.webp", + "thumb": "items/images/en/thumbs/magnetic_strafe.0653b6db4a0acb604c56e98c0d9e8599.128x128.webp" + } + } + }, + { + "id": "675c61ce7b18977f6e645412", + "slug": "radon_claws", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/DualStat/KubrowRadiationEventMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Radon Claws", + "icon": "items/images/en/radon_claws.727d39bca46d1a5304ededfcbd9f4bb2.webp", + "thumb": "items/images/en/thumbs/radon_claws.727d39bca46d1a5304ededfcbd9f4bb2.128x128.webp" + } + } + }, + { + "id": "675c61d47b18977f6e645414", + "slug": "magnetic_claws", + "gameRef": "/Lotus/Upgrades/Mods/Sentinel/Kubrow/DualStat/KubrowMagneticEventMeleeMod", + "tags": [ + "mod", + "rare", + "melee", + "claws" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetic Claws", + "icon": "items/images/en/magnetic_claws.b0d0d9a3250b28c86c06be61e46f3988.webp", + "thumb": "items/images/en/thumbs/magnetic_claws.b0d0d9a3250b28c86c06be61e46f3988.128x128.webp" + } + } + }, + { + "id": "675c61e47b18977f6e645416", + "slug": "primary_acuity", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponWeakpointCriticalChanceMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Primary Acuity", + "icon": "items/images/en/primary_acuity.15c6392e8548645c7525e7aeaa50a8bd.webp", + "thumb": "items/images/en/thumbs/primary_acuity.15c6392e8548645c7525e7aeaa50a8bd.128x128.webp" + } + } + }, + { + "id": "675c61ff7b18977f6e645418", + "slug": "spectral_serration", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/WeaponDamageAmountInvisibleMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Spectral Serration", + "icon": "items/images/en/spectral_serration.20f00c76110efeadf7256f853a3d0864.webp", + "thumb": "items/images/en/thumbs/spectral_serration.20f00c76110efeadf7256f853a3d0864.128x128.webp" + } + } + }, + { + "id": "675c620f7b18977f6e64541a", + "slug": "magnetic_capacity", + "gameRef": "/Lotus/Upgrades/Mods/Rifle/DualStat/MagneticClipRifleMod", + "tags": [ + "mod", + "rare", + "primary", + "rifle" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetic Capacity", + "icon": "items/images/en/magnetic_capacity.b447e347781ace9cc133946801a9227f.webp", + "thumb": "items/images/en/thumbs/magnetic_capacity.b447e347781ace9cc133946801a9227f.128x128.webp" + } + } + }, + { + "id": "675c621d7b18977f6e64541c", + "slug": "pistol_acuity", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/WeaponWeakpointCriticalChanceMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 10, + "i18n": { + "en": { + "name": "Pistol Acuity", + "icon": "items/images/en/pistol_acuity.15c6392e8548645c7525e7aeaa50a8bd.webp", + "thumb": "items/images/en/thumbs/pistol_acuity.15c6392e8548645c7525e7aeaa50a8bd.128x128.webp" + } + } + }, + { + "id": "675c62297b18977f6e64541e", + "slug": "merciless_gunfight", + "gameRef": "/Lotus/Upgrades/Mods/Pistol/DualStat/CriticalDamagePunchThroughMod", + "tags": [ + "mod", + "rare", + "secondary", + "pistol" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Merciless Gunfight", + "icon": "items/images/en/merciless_gunfight.8bfe78b71db7e2c7ecb05cd9c49fe6dd.webp", + "thumb": "items/images/en/thumbs/merciless_gunfight.8bfe78b71db7e2c7ecb05cd9c49fe6dd.128x128.webp" + } + } + }, + { + "id": "675c62337b18977f6e645420", + "slug": "magnetic_rush", + "gameRef": "/Lotus/Upgrades/Mods/Melee/DualStat/MagneticAttackSpeedMeleeMod", + "tags": [ + "mod", + "rare", + "melee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetic Rush", + "icon": "items/images/en/magnetic_rush.fbd6dbf9acbd1d78a9efb2d772bcde31.webp", + "thumb": "items/images/en/thumbs/magnetic_rush.fbd6dbf9acbd1d78a9efb2d772bcde31.128x128.webp" + } + } + }, + { + "id": "675c62587b18977f6e645422", + "slug": "worthy_comradery", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerWeakpointCriticalChanceAuraMod", + "tags": [ + "mod", + "uncommon", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Worthy Comradery", + "icon": "items/images/en/worthy_comradery.94d690c00d5d0aa096e766cea678b3fe.webp", + "thumb": "items/images/en/thumbs/worthy_comradery.94d690c00d5d0aa096e766cea678b3fe.128x128.webp" + } + } + }, + { + "id": "675c62647b18977f6e645424", + "slug": "summoner’s_wrath", + "gameRef": "/Lotus/Upgrades/Mods/Aura/PlayerCompanionSummonDamageAuraMod", + "tags": [ + "mod", + "uncommon", + "aura" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Summoner’s Wrath", + "icon": "items/images/en/summoner’s_wrath.53ad60a1b30fed0603d8693ff5cefa65.webp", + "thumb": "items/images/en/thumbs/summoner’s_wrath.53ad60a1b30fed0603d8693ff5cefa65.128x128.webp" + } + } + }, + { + "id": "675c627f7b18977f6e645426", + "slug": "magnetized_cycle", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Rifle/ArchwingEventMagneticFireRateRifleMod", + "tags": [ + "rare", + "archwing", + "primary", + "mod", + "archgun" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetized Cycle", + "icon": "items/images/en/magnetized_cycle.36910a18f47f67ddf444a45b0159c2da.webp", + "thumb": "items/images/en/thumbs/magnetized_cycle.36910a18f47f67ddf444a45b0159c2da.128x128.webp" + } + } + }, + { + "id": "675c628e7b18977f6e645428", + "slug": "magnetized_core", + "gameRef": "/Lotus/Upgrades/Mods/Archwing/Melee/ArchwingEventMagneticCritDamageMeleeMod", + "tags": [ + "rare", + "archwing", + "melee", + "mod", + "archmelee" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Magnetized Core", + "icon": "items/images/en/magnetized_core.05217fab0fb13f88d483c65f3f614b18.webp", + "thumb": "items/images/en/thumbs/magnetized_core.05217fab0fb13f88d483c65f3f614b18.128x128.webp" + } + } + }, + { + "id": "675d11b247952ab3ea1928f8", + "slug": "reconifex_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnBeltFedRifle/TnBeltFedRifleWeapon", + "tags": [ + "weapon", + "primary", + "set" + ], + "i18n": { + "en": { + "name": "Reconifex Set", + "icon": "items/images/en/reconifex_set.10aa404ed9bd3e72d208a42fc1181b69.webp", + "thumb": "items/images/en/thumbs/reconifex_set.10aa404ed9bd3e72d208a42fc1181b69.128x128.webp" + } + } + }, + { + "id": "67661f9c47952ab3ea192901", + "slug": "reconifex_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnBeltFedRifleBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Reconifex Barrel", + "icon": "items/images/en/reconifex_barrel.10aa404ed9bd3e72d208a42fc1181b69.webp", + "thumb": "items/images/en/thumbs/reconifex_barrel.10aa404ed9bd3e72d208a42fc1181b69.128x128.webp", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "67661f9d47952ab3ea192902", + "slug": "reconifex_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnBeltFedRifleReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Reconifex Receiver", + "icon": "items/images/en/reconifex_receiver.10aa404ed9bd3e72d208a42fc1181b69.webp", + "thumb": "items/images/en/thumbs/reconifex_receiver.10aa404ed9bd3e72d208a42fc1181b69.128x128.webp", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "67661f9e47952ab3ea192903", + "slug": "reconifex_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/TnBeltFedRifleStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Reconifex Stock", + "icon": "items/images/en/reconifex_stock.10aa404ed9bd3e72d208a42fc1181b69.webp", + "thumb": "items/images/en/thumbs/reconifex_stock.10aa404ed9bd3e72d208a42fc1181b69.128x128.webp", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "67661ffc47952ab3ea192905", + "slug": "vesper_77_set", + "gameRef": "/Lotus/Weapons/Lasria/LasSilencedPistol/LasSilencedPistolWeapon", + "tags": [ + "weapon", + "secondary", + "set" + ], + "i18n": { + "en": { + "name": "Vesper 77 Set", + "icon": "items/images/en/vesper_77_set.8edf133ab02b6b5f87e365a67232cf28.webp", + "thumb": "items/images/en/thumbs/vesper_77_set.8edf133ab02b6b5f87e365a67232cf28.128x128.webp" + } + } + }, + { + "id": "67661ffd47952ab3ea192906", + "slug": "vesper_77_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LasSilencedPistolBarrel", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Vesper 77 Barrel", + "icon": "items/images/en/vesper_77_barrel.8edf133ab02b6b5f87e365a67232cf28.webp", + "thumb": "items/images/en/thumbs/vesper_77_barrel.8edf133ab02b6b5f87e365a67232cf28.128x128.webp", + "subIcon": "sub_icons/weapon/generic_barrel_128x128.png" + } + } + }, + { + "id": "67661ffe47952ab3ea192907", + "slug": "vesper_77_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LasSilencedPistolReceiver", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Vesper 77 Receiver", + "icon": "items/images/en/vesper_77_receiver.8edf133ab02b6b5f87e365a67232cf28.webp", + "thumb": "items/images/en/thumbs/vesper_77_receiver.8edf133ab02b6b5f87e365a67232cf28.128x128.webp", + "subIcon": "sub_icons/weapon/generic_receiver_128x128.png" + } + } + }, + { + "id": "6766200047952ab3ea192908", + "slug": "vesper_77_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/LasSilencedPistolStock", + "tags": [ + "component", + "weapon" + ], + "i18n": { + "en": { + "name": "Vesper 77 Handle", + "icon": "items/images/en/vesper_77_handle.8edf133ab02b6b5f87e365a67232cf28.webp", + "thumb": "items/images/en/thumbs/vesper_77_handle.8edf133ab02b6b5f87e365a67232cf28.128x128.webp", + "subIcon": "sub_icons/weapon/generic_stock_128x128.png" + } + } + }, + { + "id": "67acd8fa125398d92c8bb4df", + "slug": "cedo_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PrimeCedo/PrimeCedoWeapon", + "tags": [ + "primary", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Cedo Prime Set", + "icon": "items/images/en/cedo_prime_set.0c958533f82b78967afb8394ec7c9af9.webp", + "thumb": "items/images/en/thumbs/cedo_prime_set.0c958533f82b78967afb8394ec7c9af9.128x128.webp" + } + } + }, + { + "id": "67acd8fb125398d92c8bb4e0", + "slug": "cedo_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/CedoPrimeBlueprint", + "tags": [ + "primary", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Cedo Prime Blueprint", + "icon": "items/images/en/cedo_prime_blueprint.0c958533f82b78967afb8394ec7c9af9.webp", + "thumb": "items/images/en/thumbs/cedo_prime_blueprint.0c958533f82b78967afb8394ec7c9af9.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "67acd8fc125398d92c8bb4e1", + "slug": "cedo_prime_receiver", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CedoPrimeReceiver", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Cedo Prime Receiver", + "icon": "items/images/en/cedo_prime_receiver.0c958533f82b78967afb8394ec7c9af9.webp", + "thumb": "items/images/en/thumbs/cedo_prime_receiver.0c958533f82b78967afb8394ec7c9af9.128x128.webp", + "subIcon": "sub_icons/weapon/prime_receiver_128x128.png" + } + } + }, + { + "id": "67acd8fd125398d92c8bb4e2", + "slug": "cedo_prime_barrel", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CedoPrimeBarrel", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Cedo Prime Barrel", + "icon": "items/images/en/cedo_prime_barrel.0c958533f82b78967afb8394ec7c9af9.webp", + "thumb": "items/images/en/thumbs/cedo_prime_barrel.0c958533f82b78967afb8394ec7c9af9.128x128.webp", + "subIcon": "sub_icons/weapon/prime_barrel_128x128.png" + } + } + }, + { + "id": "67acd8fd125398d92c8bb4e3", + "slug": "cedo_prime_stock", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/CedoPrimeStock", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Cedo Prime Stock", + "icon": "items/images/en/cedo_prime_stock.0c958533f82b78967afb8394ec7c9af9.webp", + "thumb": "items/images/en/thumbs/cedo_prime_stock.0c958533f82b78967afb8394ec7c9af9.128x128.webp", + "subIcon": "sub_icons/weapon/prime_stock_128x128.png" + } + } + }, + { + "id": "67acd912125398d92c8bb4e5", + "slug": "dual_zoren_prime_set", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Axe/PrimeZoren/PrimeZorenAxeWeapon", + "tags": [ + "melee", + "weapon", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Dual Zoren Prime Set", + "icon": "items/images/en/dual_zoren_prime_set.d98ec2f1e8178524255002d3f248089f.webp", + "thumb": "items/images/en/thumbs/dual_zoren_prime_set.d98ec2f1e8178524255002d3f248089f.128x128.webp" + } + } + }, + { + "id": "67acd913125398d92c8bb4e6", + "slug": "dual_zoren_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/Weapons/DualZorenPrimeBlueprint", + "tags": [ + "melee", + "weapon", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Dual Zoren Prime Blueprint", + "icon": "items/images/en/dual_zoren_prime_blueprint.d98ec2f1e8178524255002d3f248089f.webp", + "thumb": "items/images/en/thumbs/dual_zoren_prime_blueprint.d98ec2f1e8178524255002d3f248089f.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "67acd914125398d92c8bb4e7", + "slug": "dual_zoren_prime_handle", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DualZorenPrimeHandle", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dual Zoren Prime Handle", + "icon": "items/images/en/dual_zoren_prime_handle.d98ec2f1e8178524255002d3f248089f.webp", + "thumb": "items/images/en/thumbs/dual_zoren_prime_handle.d98ec2f1e8178524255002d3f248089f.128x128.webp", + "subIcon": "sub_icons/weapon/prime_handle_128x128.png" + } + } + }, + { + "id": "67acd915125398d92c8bb4e8", + "slug": "dual_zoren_prime_blade", + "gameRef": "/Lotus/Types/Recipes/Weapons/WeaponParts/DualZorenPrimeBlade", + "tags": [ + "component", + "weapon", + "prime" + ], + "i18n": { + "en": { + "name": "Dual Zoren Prime Blade", + "icon": "items/images/en/dual_zoren_prime_blade.d98ec2f1e8178524255002d3f248089f.webp", + "thumb": "items/images/en/thumbs/dual_zoren_prime_blade.d98ec2f1e8178524255002d3f248089f.128x128.webp", + "subIcon": "sub_icons/weapon/prime_blade_128x128.png" + } + } + }, + { + "id": "67acd93f125398d92c8bb4ea", + "slug": "lavos_prime_set", + "gameRef": "/Lotus/Powersuits/Alchemist/LavosPrime", + "tags": [ + "warframe", + "prime", + "set" + ], + "i18n": { + "en": { + "name": "Lavos Prime Set", + "icon": "items/images/en/lavos_prime_set.b50879ee28eb0c9effda56dadca76c86.webp", + "thumb": "items/images/en/thumbs/lavos_prime_set.b50879ee28eb0c9effda56dadca76c86.128x128.webp" + } + } + }, + { + "id": "67acd941125398d92c8bb4eb", + "slug": "lavos_prime_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LavosPrimeBlueprint", + "tags": [ + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Lavos Prime Blueprint", + "icon": "items/images/en/lavos_prime_blueprint.b50879ee28eb0c9effda56dadca76c86.webp", + "thumb": "items/images/en/thumbs/lavos_prime_blueprint.b50879ee28eb0c9effda56dadca76c86.128x128.webp", + "subIcon": "sub_icons/blueprint_128x128.png" + } + } + }, + { + "id": "67acd943125398d92c8bb4ec", + "slug": "lavos_prime_neuroptics_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LavosPrimeHelmetBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Lavos Prime Neuroptics Blueprint", + "icon": "items/images/en/lavos_prime_neuroptics_blueprint.b50879ee28eb0c9effda56dadca76c86.webp", + "thumb": "items/images/en/thumbs/lavos_prime_neuroptics_blueprint.b50879ee28eb0c9effda56dadca76c86.128x128.webp", + "subIcon": "sub_icons/warframe/prime_helmet_128x128.png" + } + } + }, + { + "id": "67acd944125398d92c8bb4ed", + "slug": "lavos_prime_chassis_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LavosPrimeChassisBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Lavos Prime Chassis Blueprint", + "icon": "items/images/en/lavos_prime_chassis_blueprint.b50879ee28eb0c9effda56dadca76c86.webp", + "thumb": "items/images/en/thumbs/lavos_prime_chassis_blueprint.b50879ee28eb0c9effda56dadca76c86.128x128.webp", + "subIcon": "sub_icons/warframe/prime_chassis_128x128.png" + } + } + }, + { + "id": "67acd945125398d92c8bb4ee", + "slug": "lavos_prime_systems_blueprint", + "gameRef": "/Lotus/Types/Recipes/WarframeRecipes/LavosPrimeSystemsBlueprint", + "tags": [ + "component", + "warframe", + "prime", + "blueprint" + ], + "i18n": { + "en": { + "name": "Lavos Prime Systems Blueprint", + "icon": "items/images/en/lavos_prime_systems_blueprint.b50879ee28eb0c9effda56dadca76c86.webp", + "thumb": "items/images/en/thumbs/lavos_prime_systems_blueprint.b50879ee28eb0c9effda56dadca76c86.128x128.webp", + "subIcon": "sub_icons/warframe/prime_systems_128x128.png" + } + } + }, + { + "id": "67acda89125398d92c8bb4f0", + "slug": "axi_p9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeE", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi P9 Relic", + "icon": "items/images/en/axi_p9_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_p9_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67acda8a125398d92c8bb4f1", + "slug": "axi_m6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeD", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi M6 Relic", + "icon": "items/images/en/axi_m6_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_m6_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67acda8b125398d92c8bb4f2", + "slug": "axi_z2_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeC", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi Z2 Relic", + "icon": "items/images/en/axi_z2_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_z2_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67acda8b125398d92c8bb4f3", + "slug": "axi_f3_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeB", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi F3 Relic", + "icon": "items/images/en/axi_f3_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_f3_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67acda8c125398d92c8bb4f4", + "slug": "axi_p8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeA", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Axi P8 Relic", + "icon": "items/images/en/axi_p8_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_p8_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67acda8d125398d92c8bb4f5", + "slug": "neo_d9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLavosPrimeD", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo D9 Relic", + "icon": "items/images/en/neo_d9_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_d9_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67acda8e125398d92c8bb4f6", + "slug": "neo_t9_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLavosPrimeC", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo T9 Relic", + "icon": "items/images/en/neo_t9_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_t9_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67acda8e125398d92c8bb4f7", + "slug": "neo_x1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLavosPrimeB", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo X1 Relic", + "icon": "items/images/en/neo_x1_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_x1_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67acda8f125398d92c8bb4f8", + "slug": "neo_c6_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionLavosPrimeA", + "tags": [ + "neo", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Neo C6 Relic", + "icon": "items/images/en/neo_c6_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_c6_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67acda90125398d92c8bb4f9", + "slug": "meso_a8_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLavosPrimeA", + "tags": [ + "meso", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso A8 Relic", + "icon": "items/images/en/meso_a8_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_a8_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67acda91125398d92c8bb4fa", + "slug": "lith_s16_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLavosPrimeD", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith S16 Relic", + "icon": "items/images/en/lith_s16_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_s16_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "67acda92125398d92c8bb4fb", + "slug": "lith_a7_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLavosPrimeC", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith A7 Relic", + "icon": "items/images/en/lith_a7_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_a7_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "67acda93125398d92c8bb4fc", + "slug": "lith_q1_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLavosPrimeB", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith Q1 Relic", + "icon": "items/images/en/lith_q1_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_q1_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "67acda93125398d92c8bb4fd", + "slug": "lith_l5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionLavosPrimeA", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Lith L5 Relic", + "icon": "items/images/en/lith_l5_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_l5_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "67c83ffb646a0f91834334fd", + "slug": "meso_p15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionLavosPrimeB", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": false, + "i18n": { + "en": { + "name": "Meso P15 Relic", + "icon": "items/images/en/meso_p15_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_p15_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67c84007646a0f91834334ff", + "slug": "biotic_rounds", + "gameRef": "/Lotus/Upgrades/Mods/Nightwave/NightwaveTC2024AK47AugmentMod", + "tags": [ + "mod", + "rare", + "primary", + "ax_52" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Biotic Rounds", + "icon": "items/images/en/biotic_rounds.bff2b53e80e11cd1378cc71e1ba4f814.webp", + "thumb": "items/images/en/thumbs/biotic_rounds.bff2b53e80e11cd1378cc71e1ba4f814.128x128.webp" + } + } + }, + { + "id": "67c84009646a0f9183433501", + "slug": "leaded_gas", + "gameRef": "/Lotus/Upgrades/Mods/Nightwave/NightwaveLasSilencedPistolAugmentMod", + "tags": [ + "mod", + "rare", + "secondary", + "vesper_77" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Leaded Gas", + "icon": "items/images/en/leaded_gas.dc5d14fde8d1412d3bb842c8e6210609.webp", + "thumb": "items/images/en/thumbs/leaded_gas.dc5d14fde8d1412d3bb842c8e6210609.128x128.webp" + } + } + }, + { + "id": "67db5f459cec3e52e62523d8", + "slug": "lith_s17_relic", + "gameRef": "/Lotus/Types/Game/Projections/T1VoidProjectionNidusSarynVaultA", + "tags": [ + "lith", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Lith S17 Relic", + "icon": "items/images/en/lith_s17_relic.78903ffe750d335f05034144948ad67d.webp", + "thumb": "items/images/en/thumbs/lith_s17_relic.78903ffe750d335f05034144948ad67d.128x128.webp" + } + } + }, + { + "id": "67db5f469cec3e52e62523d9", + "slug": "meso_s15_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNidusSarynVaultA", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso S15 Relic", + "icon": "items/images/en/meso_s15_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_s15_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67db5f469cec3e52e62523da", + "slug": "meso_m5_relic", + "gameRef": "/Lotus/Types/Game/Projections/T2VoidProjectionNidusSarynVaultB", + "tags": [ + "relic", + "meso" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Meso M5 Relic", + "icon": "items/images/en/meso_m5_relic.a2f3850abeecafbbe3369af2aaf253ff.webp", + "thumb": "items/images/en/thumbs/meso_m5_relic.a2f3850abeecafbbe3369af2aaf253ff.128x128.webp" + } + } + }, + { + "id": "67db5f479cec3e52e62523db", + "slug": "neo_n19_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNidusSarynVaultA", + "tags": [ + "relic", + "neo" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo N19 Relic", + "icon": "items/images/en/neo_n19_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_n19_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67db5f489cec3e52e62523dc", + "slug": "neo_s19_relic", + "gameRef": "/Lotus/Types/Game/Projections/T3VoidProjectionNidusSarynVaultB", + "tags": [ + "relic", + "neo" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Neo S19 Relic", + "icon": "items/images/en/neo_s19_relic.08a3b3471bad10b739bd40b1236505c6.webp", + "thumb": "items/images/en/thumbs/neo_s19_relic.08a3b3471bad10b739bd40b1236505c6.128x128.webp" + } + } + }, + { + "id": "67db5f499cec3e52e62523dd", + "slug": "axi_n12_relic", + "gameRef": "/Lotus/Types/Game/Projections/T4VoidProjectionNidusSarynVaultA", + "tags": [ + "axi", + "relic" + ], + "subtypes": [ + "intact", + "exceptional", + "flawless", + "radiant" + ], + "vaulted": true, + "i18n": { + "en": { + "name": "Axi N12 Relic", + "icon": "items/images/en/axi_n12_relic.a5484024a9f5498b339499cd10cb825f.webp", + "thumb": "items/images/en/thumbs/axi_n12_relic.a5484024a9f5498b339499cd10cb825f.128x128.webp" + } + } + }, + { + "id": "67db600a9cec3e52e62523df", + "slug": "worm_away", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusTwoMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Worm Away", + "icon": "items/images/en/worm_away.e154b426b8f6d11634f2f923b8316417.webp", + "thumb": "items/images/en/thumbs/worm_away.e154b426b8f6d11634f2f923b8316417.128x128.webp" + } + } + }, + { + "id": "67db600c9cec3e52e62523e0", + "slug": "trojan_tracker", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusThreeMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Trojan Tracker", + "icon": "items/images/en/trojan_tracker.8271433ac33d325bb0b9b14dd53be9d5.webp", + "thumb": "items/images/en/thumbs/trojan_tracker.8271433ac33d325bb0b9b14dd53be9d5.128x128.webp" + } + } + }, + { + "id": "67db600d9cec3e52e62523e1", + "slug": "soft_safe", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusSixMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Soft Safe", + "icon": "items/images/en/soft_safe.30113885f90a3783b0d551e14728dfe3.webp", + "thumb": "items/images/en/thumbs/soft_safe.30113885f90a3783b0d551e14728dfe3.128x128.webp" + } + } + }, + { + "id": "67db600e9cec3e52e62523e2", + "slug": "anti_v", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusSevenMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Anti-V", + "icon": "items/images/en/anti_v.8bea75b3c049ea5311b7765916ee1b71.webp", + "thumb": "items/images/en/thumbs/anti_v.8bea75b3c049ea5311b7765916ee1b71.128x128.webp" + } + } + }, + { + "id": "67db600f9cec3e52e62523e3", + "slug": "byteryte", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusOneMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "ByteRyte", + "icon": "items/images/en/byteryte.b243cf7e52d9957bde234d5dce410bd3.webp", + "thumb": "items/images/en/thumbs/byteryte.b243cf7e52d9957bde234d5dce410bd3.128x128.webp" + } + } + }, + { + "id": "67db60119cec3e52e62523e4", + "slug": "keep_clean", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusFourMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Keep-Clean", + "icon": "items/images/en/keep_clean.c35f41c7f373c6f6c3ef3d6614f4b3d3.webp", + "thumb": "items/images/en/thumbs/keep_clean.c35f41c7f373c6f6c3ef3d6614f4b3d3.128x128.webp" + } + } + }, + { + "id": "67db60129cec3e52e62523e5", + "slug": "drive_duster", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusFiveMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Drive-Duster", + "icon": "items/images/en/drive_duster.dced663281c84e934b15716af21d586b.webp", + "thumb": "items/images/en/thumbs/drive_duster.dced663281c84e934b15716af21d586b.128x128.webp" + } + } + }, + { + "id": "67db60149cec3e52e62523e6", + "slug": "computer_cop", + "gameRef": "/Lotus/Upgrades/Mods/Immortal/AntivirusEightMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Computer Cop", + "icon": "items/images/en/computer_cop.94ec9afd1c25db7f15e362bf689c4e31.webp", + "thumb": "items/images/en/thumbs/computer_cop.94ec9afd1c25db7f15e362bf689c4e31.128x128.webp" + } + } + }, + { + "id": "67db60559cec3e52e62523e8", + "slug": "quick_correct", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Potency/GainAntivirusSmallOnSingleUseMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Quick Correct", + "icon": "items/images/en/quick_correct.f59d1c087df311818004ce44cd834b8e.webp", + "thumb": "items/images/en/thumbs/quick_correct.f59d1c087df311818004ce44cd834b8e.128x128.webp" + } + } + }, + { + "id": "67db60559cec3e52e62523e9", + "slug": "immuno_shield", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Potency/GainAntivirusOnUseMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Immuno Shield", + "icon": "items/images/en/immuno_shield.9b9998f01e4b2be94c383f958f7b7ef6.webp", + "thumb": "items/images/en/thumbs/immuno_shield.9b9998f01e4b2be94c383f958f7b7ef6.128x128.webp" + } + } + }, + { + "id": "67db60559cec3e52e62523ea", + "slug": "instant_secure", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Potency/GainAntivirusLargeOnSingleUseMod", + "tags": [ + "mod", + "common", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Instant Secure", + "icon": "items/images/en/instant_secure.cc913bbb9ae6df448f63a6fef7a73b04.webp", + "thumb": "items/images/en/thumbs/instant_secure.cc913bbb9ae6df448f63a6fef7a73b04.128x128.webp" + } + } + }, + { + "id": "67db60569cec3e52e62523eb", + "slug": "threat_blocker", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Potency/GainAntivirusAndWeaponDamageOnUseMod", + "tags": [ + "mod", + "uncommon", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Threat Blocker", + "icon": "items/images/en/threat_blocker.6e745271e8b284c5604405fa0053fb32.webp", + "thumb": "items/images/en/thumbs/threat_blocker.6e745271e8b284c5604405fa0053fb32.128x128.webp" + } + } + }, + { + "id": "67db60569cec3e52e62523ec", + "slug": "turbo_protect", + "gameRef": "/Lotus/Upgrades/Mods/DataSpike/Potency/GainAntivirusAndSpeedOnUseMod", + "tags": [ + "mod", + "rare", + "parazon" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Turbo Protect", + "icon": "items/images/en/turbo_protect.c7202e88435e332751d9e1eba81498d8.webp", + "thumb": "items/images/en/thumbs/turbo_protect.c7202e88435e332751d9e1eba81498d8.128x128.webp" + } + } + }, + { + "id": "67db60639cec3e52e62523ee", + "slug": "technocyte_coda_stadium_scene", + "gameRef": "/Lotus/Types/Items/PhotoBooth/PhotoboothTileRJLasXStadiumBossArena", + "tags": [ + "scene" + ], + "i18n": { + "en": { + "name": "Technocyte Coda Stadium Scene", + "icon": "items/images/en/technocyte_coda_stadium_scene.12413b6912f2f7eaea7e909415274572.webp", + "thumb": "items/images/en/thumbs/technocyte_coda_stadium_scene.12413b6912f2f7eaea7e909415274572.128x128.webp" + } + } + }, + { + "id": "67db60849cec3e52e62523f0", + "slug": "cataclysmic_gate", + "gameRef": "/Lotus/Powersuits/Wisp/WispSunAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "wisp" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Cataclysmic Gate", + "icon": "items/images/en/cataclysmic_gate.d10ed0788b9090b251aaf2578c221e74.webp", + "thumb": "items/images/en/thumbs/cataclysmic_gate.d10ed0788b9090b251aaf2578c221e74.128x128.webp" + } + } + }, + { + "id": "67db60849cec3e52e62523f1", + "slug": "omikujis_fortune", + "gameRef": "/Lotus/Powersuits/Koumei/KoumeiFortuneAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "koumei" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Omikuji's Fortune", + "icon": "items/images/en/omikujis_fortune.7108a45c6b6429ed4eaf8cc2812cbc6b.webp", + "thumb": "items/images/en/thumbs/omikujis_fortune.7108a45c6b6429ed4eaf8cc2812cbc6b.128x128.webp" + } + } + }, + { + "id": "67db60859cec3e52e62523f2", + "slug": "conductive_sphere", + "gameRef": "/Lotus/Powersuits/Gyre/GyrePulseAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "gyre" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Conductive Sphere", + "icon": "items/images/en/conductive_sphere.8c1849daaf94f9404d2160952ae70691.webp", + "thumb": "items/images/en/thumbs/conductive_sphere.8c1849daaf94f9404d2160952ae70691.128x128.webp" + } + } + }, + { + "id": "67db60859cec3e52e62523f3", + "slug": "fused_crucible", + "gameRef": "/Lotus/Powersuits/ConcreteFrame/ConcreteLaserAugmentCard", + "tags": [ + "mod", + "rare", + "warframe", + "qorvex" + ], + "maxRank": 3, + "i18n": { + "en": { + "name": "Fused Crucible", + "icon": "items/images/en/fused_crucible.5034790b46d86f81e5459d0d034f18f3.webp", + "thumb": "items/images/en/thumbs/fused_crucible.5034790b46d86f81e5459d0d034f18f3.128x128.webp" + } + } + }, + { + "id": "67db60869cec3e52e62523f4", + "slug": "arcane_escapist", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Defensive/InvulnerabilityOnDeathOnMercyKill", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Escapist", + "icon": "items/images/en/arcane_escapist.6cb2df04a06f551dc77235e17ee3d685.webp", + "thumb": "items/images/en/thumbs/arcane_escapist.6cb2df04a06f551dc77235e17ee3d685.128x128.webp" + } + } + }, + { + "id": "67db60889cec3e52e62523f5", + "slug": "arcane_hot_shot", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Offensive/AbilityHeatProcsGiveCritChance", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Hot Shot", + "icon": "items/images/en/arcane_hot_shot.b488affbc34321e8b1dba284f889d634.webp", + "thumb": "items/images/en/thumbs/arcane_hot_shot.b488affbc34321e8b1dba284f889d634.128x128.webp" + } + } + }, + { + "id": "67db60899cec3e52e62523f6", + "slug": "arcane_universal_fallout", + "gameRef": "/Lotus/Upgrades/CosmeticEnhancers/Utility/AbilityRadiationProcsCreateUniversalOrbsOnKill", + "tags": [ + "rare", + "arcane_enhancement" + ], + "maxRank": 5, + "i18n": { + "en": { + "name": "Arcane Universal Fallout", + "icon": "items/images/en/arcane_universal_fallout.a2684caa30e88e5ef81c183acefe3354.webp", + "thumb": "items/images/en/thumbs/arcane_universal_fallout.a2684caa30e88e5ef81c183acefe3354.128x128.webp" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/lich_ephemera.json b/src/market/models/fixtures/lich_ephemera.json new file mode 100644 index 0000000..eacd93e --- /dev/null +++ b/src/market/models/fixtures/lich_ephemera.json @@ -0,0 +1,104 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "5e98548a3d9f64004f9136bb", + "slug": "vengeful_charge", + "gameRef": "/Lotus/Upgrades/Skins/Effects/Kuva/KuvaLightningEphemera", + "animation": "lich_ephemeras/animations/vengeful_charge.9682a7978dd10f8c63fa160d5ba1660e.webp", + "element": "electricity", + "i18n": { + "en": { + "name": "Vengeful Charge Ephemera", + "icon": "lich_ephemeras/images/vengeful_charge.68e07295ec11cdb303755a9f26e87f0e.png", + "thumb": "lich_ephemeras/images/thumbs/vengeful_charge.68e07295ec11cdb303755a9f26e87f0e.128x128.png" + } + } + }, + { + "id": "5e9854b93d9f64004f9136bd", + "slug": "vengeful_shockwave", + "gameRef": "/Lotus/Upgrades/Skins/Effects/Kuva/KuvaImpactEphemera", + "animation": "lich_ephemeras/animations/vengeful_shockwave.7e4b599ef5c6c80a4130fecb9d9283cd.webp", + "element": "impact", + "i18n": { + "en": { + "name": "Vengeful Shockwave Ephemera", + "icon": "lich_ephemeras/images/vengeful_shockwave.6020e14eb5e9516d4bc6ccf5023c864c.png", + "thumb": "lich_ephemeras/images/thumbs/vengeful_shockwave.6020e14eb5e9516d4bc6ccf5023c864c.128x128.png" + } + } + }, + { + "id": "5e9854ec3d9f64004f9136bf", + "slug": "vengeful_trickster", + "gameRef": "/Lotus/Upgrades/Skins/Effects/Kuva/KuvaTricksterEphemera", + "animation": "lich_ephemeras/animations/vengeful_trickster.67975a6fe8161b7cd5d7522bfd380bfa.webp", + "element": "radiation", + "i18n": { + "en": { + "name": "Vengeful Trickster Ephemera", + "icon": "lich_ephemeras/images/vengeful_trickster.3b85b181837a55263dbd3e1a529c39cc.png", + "thumb": "lich_ephemeras/images/thumbs/vengeful_trickster.3b85b181837a55263dbd3e1a529c39cc.128x128.png" + } + } + }, + { + "id": "5e98545e3d9f64004f9136b9", + "slug": "vengeful_pull", + "gameRef": "/Lotus/Upgrades/Skins/Effects/Kuva/KuvaMagneticEphemera", + "animation": "lich_ephemeras/animations/vengeful_pull.9845f38d9403bcda43a04618e6f9766b.webp", + "element": "magnetic", + "i18n": { + "en": { + "name": "Vengeful Pull Ephemera", + "icon": "lich_ephemeras/images/vengeful_pull.e80eed69fd9cc1995a514df3a4e64596.png", + "thumb": "lich_ephemeras/images/thumbs/vengeful_pull.e80eed69fd9cc1995a514df3a4e64596.128x128.png" + } + } + }, + { + "id": "5e9854a23d9f64004f9136bc", + "slug": "vengeful_chill", + "gameRef": "/Lotus/Upgrades/Skins/Effects/Kuva/KuvaIceEphemera", + "animation": "lich_ephemeras/animations/vengeful_chill.ad315100d13553ec46de9a3da6c1a50d.webp", + "element": "cold", + "i18n": { + "en": { + "name": "Vengeful Chill Ephemera", + "icon": "lich_ephemeras/images/vengeful_chill.ad1a1cb39a4bc8bf34c7d4c1e18814a0.png", + "thumb": "lich_ephemeras/images/thumbs/vengeful_chill.ad1a1cb39a4bc8bf34c7d4c1e18814a0.128x128.png" + } + } + }, + { + "id": "5e9854ce3d9f64004f9136be", + "slug": "vengeful_toxin", + "gameRef": "/Lotus/Upgrades/Skins/Effects/Kuva/KuvaToxinEphemera", + "animation": "lich_ephemeras/animations/vengeful_toxin.65b862a6210de26b1ec94243a4b71f48.webp", + "element": "toxin", + "i18n": { + "en": { + "name": "Vengeful Toxin Ephemera", + "icon": "lich_ephemeras/images/vengeful_toxin.4b0f7027e99675f64183a0abadf28c5e.png", + "thumb": "lich_ephemeras/images/thumbs/vengeful_toxin.4b0f7027e99675f64183a0abadf28c5e.128x128.png" + } + } + }, + { + "id": "5e98546d3d9f64004f9136ba", + "slug": "vengeful_flame", + "gameRef": "/Lotus/Upgrades/Skins/Effects/Kuva/KuvaFireEphemera", + "animation": "lich_ephemeras/animations/vengeful_flame.d2b5e53f9eb160103d354d96b46a14ea.webp", + "element": "heat", + "i18n": { + "en": { + "name": "Vengeful Flame Ephemera", + "icon": "lich_ephemeras/images/vengeful_flame.1c2faa83c219e6d6699524495b578d7f.png", + "thumb": "lich_ephemeras/images/thumbs/vengeful_flame.1c2faa83c219e6d6699524495b578d7f.128x128.png" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/lich_quirk.json b/src/market/models/fixtures/lich_quirk.json new file mode 100644 index 0000000..9f59ea3 --- /dev/null +++ b/src/market/models/fixtures/lich_quirk.json @@ -0,0 +1,266 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "5e9855a43d9f6400697e895c", + "slug": "poor_sense_of_balance", + "group": "default", + "i18n": { + "en": { + "name": "Poor Sense of Balance", + "description": "The lich will retreat after kneeling down and without stabbing", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8961", + "slug": "pyromaniac", + "group": "default", + "i18n": { + "en": { + "name": "Pyromaniac", + "description": "Talks when the player is on fire", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8963", + "slug": "bloodhound", + "group": "default", + "i18n": { + "en": { + "name": "Bloodhound", + "description": "Makes comments when the player turns invisible", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8964", + "slug": "fear_of_kubrows", + "group": "default", + "i18n": { + "en": { + "name": "Fear of Kubrows", + "description": "Is afraid of Feral Kubrows and Drahks", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8966", + "slug": "prone_to_vertigo", + "group": "default", + "i18n": { + "en": { + "name": "Prone to Vertigo", + "description": "Stays on the ground level of the map. Avoids going up stairs and catwalks", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e895d", + "slug": "deserter", + "group": "default", + "i18n": { + "en": { + "name": "Deserter", + "description": "Can leave the mission unexpectedly", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e895f", + "slug": "trophy_hunter", + "group": "default", + "i18n": { + "en": { + "name": "Trophy Hunter", + "description": "Reward tax is higher than usual, allowing the Lich to steal more rewards", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8960", + "slug": "fear_of_children", + "group": "default", + "i18n": { + "en": { + "name": "Fear of Children", + "description": "Is afraid of the player's Operator", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8962", + "slug": "none", + "group": "top", + "i18n": { + "en": { + "name": "None", + "description": "Doesn't have any quirks", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8965", + "slug": "always_hungry", + "group": "default", + "i18n": { + "en": { + "name": "Always Hungry", + "description": "Talks about getting a snack after appearing on a mission", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a43d9f6400697e8967", + "slug": "paranoid", + "group": "default", + "i18n": { + "en": { + "name": "Paranoid", + "description": "Attacks allied Grineer troops; prevents the conversion of nearby Grineer into thralls", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e8968", + "slug": "allergic_to_nature", + "group": "default", + "i18n": { + "en": { + "name": "Allergic to Nature", + "description": "Talks about being allergic to nature", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e8969", + "slug": "vain", + "group": "default", + "i18n": { + "en": { + "name": "Vain", + "description": "Talks about how beautiful they are after appearing on a mission", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e896a", + "slug": "hatred_of_infested", + "group": "default", + "i18n": { + "en": { + "name": "Hatred of Infested", + "description": "Talks about hating Infested when spawned on Infested tilesets", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e896b", + "slug": "fear_of_space_travel", + "group": "default", + "i18n": { + "en": { + "name": "Fear of Space Travel", + "description": "Upon spawning on a ship, sometimes stands frightened and does not attack first", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e896c", + "slug": "fear_of_being_alone", + "group": "default", + "i18n": { + "en": { + "name": "Fear of Being Alone", + "description": "Is afraid of fighting without backup", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e896d", + "slug": "coward", + "group": "default", + "i18n": { + "en": { + "name": "Coward", + "description": "Can leave the mission at low health", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e896e", + "slug": "loner", + "group": "default", + "i18n": { + "en": { + "name": "Loner", + "description": "Talks about preferring to fight alone", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "5e9855a53d9f6400697e896f", + "slug": "hatred_of_corpus", + "group": "default", + "i18n": { + "en": { + "name": "Hatred of Corpus", + "description": "Talks about hating Corpus when spawned on Corpus tilesets", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + }, + { + "id": "653833f4123a401b2563081f", + "slug": "hatered_of_children", + "group": "default", + "i18n": { + "en": { + "name": "Hatred of Children", + "description": "Makes aggressive comments if the player's Operator appears.", + "icon": "lich_quirks/unknown.png", + "thumb": "lich_quirks/unknown.thumb.png" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/lich_weapon.json b/src/market/models/fixtures/lich_weapon.json new file mode 100644 index 0000000..f137329 --- /dev/null +++ b/src/market/models/fixtures/lich_weapon.json @@ -0,0 +1,266 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "5e9855993d9f64005cd702e6", + "slug": "kuva_drakgoon", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Drakgoon/KuvaDrakgoon", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Drakgoon", + "icon": "lich_weapons/images/kuva_drakgoon.1c7452cc19e0d37f8403777906f06f7a.png", + "thumb": "lich_weapons/images/thumbs/kuva_drakgoon.1c7452cc19e0d37f8403777906f06f7a.128x128.png" + } + } + }, + { + "id": "5e9855993d9f64005cd702e9", + "slug": "kuva_brakk", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/Secondaries/Brakk/KuvaBrakk", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Brakk", + "icon": "lich_weapons/images/kuva_brakk.c9024c7ca1061849149a6c369905b357.png", + "thumb": "lich_weapons/images/thumbs/kuva_brakk.c9024c7ca1061849149a6c369905b357.128x128.png" + } + } + }, + { + "id": "5e98559a3d9f64005cd702eb", + "slug": "kuva_bramma", + "gameRef": "/Lotus/Weapons/Grineer/Bows/GrnBow/GrnBowWeapon", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Bramma", + "icon": "lich_weapons/images/kuva_bramma.17dd34e07e8d3228514a95b0852c0aa0.png", + "thumb": "lich_weapons/images/thumbs/kuva_bramma.17dd34e07e8d3228514a95b0852c0aa0.128x128.png" + } + } + }, + { + "id": "5e9855973d9f64005cd702e3", + "slug": "kuva_chakkhurr", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnKuvaLichRifle/GrnKuvaLichRifleWeapon", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Chakkhurr", + "icon": "lich_weapons/images/kuva_chakkhurr.c8ae46ec1358d74e80e1cad8c74fe62b.png", + "thumb": "lich_weapons/images/thumbs/kuva_chakkhurr.c8ae46ec1358d74e80e1cad8c74fe62b.128x128.png" + } + } + }, + { + "id": "5e9855983d9f64005cd702e4", + "slug": "kuva_karak", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Karak/KuvaKarak", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Karak", + "icon": "lich_weapons/images/kuva_karak.0f177fd58167a1d99403bafbb8002261.png", + "thumb": "lich_weapons/images/thumbs/kuva_karak.0f177fd58167a1d99403bafbb8002261.128x128.png" + } + } + }, + { + "id": "5e9855983d9f64005cd702e5", + "slug": "kuva_twin_stubbas", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/Secondaries/Stubba/KuvaStubba", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Twin Stubbas", + "icon": "lich_weapons/images/kuva_twin_stubbas.5a3db1dfc19808a7c0e2f55659c5dfd8.png", + "thumb": "lich_weapons/images/thumbs/kuva_twin_stubbas.5a3db1dfc19808a7c0e2f55659c5dfd8.128x128.png" + } + } + }, + { + "id": "5e9855993d9f64005cd702e7", + "slug": "kuva_nukor", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/Secondaries/Nukor/KuvaNukor", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Nukor", + "icon": "lich_weapons/images/kuva_nukor.0a0d118ccf2b40a6323c8be28fed7cd8.png", + "thumb": "lich_weapons/images/thumbs/kuva_nukor.0a0d118ccf2b40a6323c8be28fed7cd8.128x128.png" + } + } + }, + { + "id": "5e9855993d9f64005cd702e8", + "slug": "kuva_tonkor", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Tonkor/KuvaTonkor", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Tonkor", + "icon": "lich_weapons/images/kuva_tonkor.994564ca588b4618eba74255e2991f0e.png", + "thumb": "lich_weapons/images/thumbs/kuva_tonkor.994564ca588b4618eba74255e2991f0e.128x128.png" + } + } + }, + { + "id": "5e98559a3d9f64005cd702ea", + "slug": "kuva_kraken", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/Secondaries/Kraken/KuvaKraken", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Kraken", + "icon": "lich_weapons/images/kuva_kraken.0989fa722c36b1bff23be1c9225bca3c.png", + "thumb": "lich_weapons/images/thumbs/kuva_kraken.0989fa722c36b1bff23be1c9225bca3c.128x128.png" + } + } + }, + { + "id": "5e9855963d9f64005cd702dc", + "slug": "kuva_hind", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Hind/KuvaHind", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Hind", + "icon": "lich_weapons/images/kuva_hind.d1b0fe6fa47a41c144ee2061dbc2e4bf.png", + "thumb": "lich_weapons/images/thumbs/kuva_hind.d1b0fe6fa47a41c144ee2061dbc2e4bf.128x128.png" + } + } + }, + { + "id": "5e9855963d9f64005cd702dd", + "slug": "kuva_ayanga", + "gameRef": "/Lotus/Weapons/Grineer/HeavyWeapons/GrnHeavyGrenadeLauncher", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Ayanga", + "icon": "lich_weapons/images/kuva_ayanga.26966415815f338dd697922c5a60548c.png", + "thumb": "lich_weapons/images/thumbs/kuva_ayanga.26966415815f338dd697922c5a60548c.128x128.png" + } + } + }, + { + "id": "5e9855963d9f64005cd702de", + "slug": "kuva_seer", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/Secondaries/Seer/KuvaSeer", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Seer", + "icon": "lich_weapons/images/kuva_seer.9b0112c7f74af198e75031ebded81247.png", + "thumb": "lich_weapons/images/thumbs/kuva_seer.9b0112c7f74af198e75031ebded81247.128x128.png" + } + } + }, + { + "id": "5e9855973d9f64005cd702df", + "slug": "kuva_shildeg", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnKuvaLichScythe/GrnKuvaLichScytheWeapon", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Shildeg", + "icon": "lich_weapons/images/kuva_shildeg.47590eb4b2c5287e2439b854597ffbb5.png", + "thumb": "lich_weapons/images/thumbs/kuva_shildeg.47590eb4b2c5287e2439b854597ffbb5.128x128.png" + } + } + }, + { + "id": "5e9855973d9f64005cd702e0", + "slug": "kuva_quartakk", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Quartakk/KuvaQuartakk", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Quartakk", + "icon": "lich_weapons/images/kuva_quartakk.2e1afaadacb52e87658f580186909cbd.png", + "thumb": "lich_weapons/images/thumbs/kuva_quartakk.2e1afaadacb52e87658f580186909cbd.128x128.png" + } + } + }, + { + "id": "5e9855973d9f64005cd702e1", + "slug": "kuva_kohm", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Kohm/KuvaKohm", + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Kohm", + "icon": "lich_weapons/images/kuva_kohm.73012940121135681c03a6a4c06217f2.png", + "thumb": "lich_weapons/images/thumbs/kuva_kohm.73012940121135681c03a6a4c06217f2.128x128.png" + } + } + }, + { + "id": "5e9855973d9f64005cd702e2", + "slug": "kuva_ogris", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Ogris/KuvaOgris", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Ogris", + "icon": "lich_weapons/images/kuva_ogris.a26e82525e40ead8dc42fd164c9483fe.png", + "thumb": "lich_weapons/images/thumbs/kuva_ogris.a26e82525e40ead8dc42fd164c9483fe.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e9996c", + "slug": "kuva_zarr", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Zarr/KuvaZarr", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Zarr", + "icon": "lich_weapons/images/kuva_zarr.cdd90308a83389d132aebb6ff355450d.png", + "thumb": "lich_weapons/images/thumbs/kuva_zarr.cdd90308a83389d132aebb6ff355450d.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e9996d", + "slug": "kuva_grattler", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/HeavyWeapons/Grattler/KuvaGrattler", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Grattler", + "icon": "lich_weapons/images/kuva_grattler.c837078c24d1ef6577457f362278dc1a.png", + "thumb": "lich_weapons/images/thumbs/kuva_grattler.c837078c24d1ef6577457f362278dc1a.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e9996e", + "slug": "kuva_hek", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Hek/KuvaHekWeapon", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Hek", + "icon": "lich_weapons/images/kuva_hek.e29029bfcaf0e8105318d24455db8fa8.png", + "thumb": "lich_weapons/images/thumbs/kuva_hek.e29029bfcaf0e8105318d24455db8fa8.128x128.png" + } + } + }, + { + "id": "664538cd6cf5812870c33d27", + "slug": "kuva_sobek", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Sobek/KuvaSobek", + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Sobek", + "icon": "lich_weapons/images/kuva_sobek.baeb38a91e138bf51b24cd666667c62f.png", + "thumb": "lich_weapons/images/thumbs/kuva_sobek.baeb38a91e138bf51b24cd666667c62f.128x128.png" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/location.json b/src/market/models/fixtures/location.json new file mode 100644 index 0000000..d484496 --- /dev/null +++ b/src/market/models/fixtures/location.json @@ -0,0 +1,5800 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "62d2eb5075156700663c83b4", + "slug": "amarna", + "gameRef": "ClanNode14", + "faction": "infested", + "minLevel": 35, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Amarna", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5175156700663c83bc", + "slug": "fossa", + "gameRef": "SolNode104", + "faction": "corpus", + "minLevel": 6, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Fossa", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb6375156700663c8407", + "slug": "grimaldi", + "gameRef": "SolNode301", + "faction": "grineer", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Grimaldi", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb6475156700663c8408", + "slug": "oro", + "gameRef": "SolNode24", + "faction": "grineer", + "minLevel": 20, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Oro", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb6475156700663c8409", + "slug": "cervantes", + "gameRef": "SolNode75", + "faction": "grineer", + "minLevel": 4, + "maxLevel": 6, + "i18n": { + "en": { + "nodeName": "Cervantes", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb6475156700663c840a", + "slug": "skyresh", + "gameRef": "SettlementNode2", + "faction": "corpus", + "minLevel": 12, + "maxLevel": 14, + "i18n": { + "en": { + "nodeName": "Skyresh", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb6575156700663c840b", + "slug": "boethius", + "gameRef": "SolNode223", + "faction": "infested", + "minLevel": 8, + "maxLevel": 10, + "i18n": { + "en": { + "nodeName": "Boethius", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb6575156700663c840c", + "slug": "alator", + "gameRef": "SolNode106", + "faction": "grineer", + "minLevel": 8, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "Alator", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb6575156700663c840d", + "slug": "hyf", + "gameRef": "SolNode707", + "faction": "infested", + "minLevel": 15, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Hyf", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb6575156700663c840e", + "slug": "ultor", + "gameRef": "SolNode14", + "faction": "corpus", + "minLevel": 11, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "Ultor", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb6575156700663c840f", + "slug": "galilea", + "gameRef": "SolNode905", + "faction": "corpus", + "minLevel": 15, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Galilea", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb6675156700663c8410", + "slug": "laomedeia", + "gameRef": "SolNode118", + "faction": "corpus", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Laomedeia", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb6675156700663c8411", + "slug": "armaros", + "gameRef": "SolNode204", + "faction": "infested", + "minLevel": 18, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Armaros", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb6675156700663c8412", + "slug": "suisei", + "gameRef": "SolNode225", + "faction": "grineer", + "minLevel": 8, + "maxLevel": 10, + "i18n": { + "en": { + "nodeName": "Suisei", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb6775156700663c8413", + "slug": "everest", + "gameRef": "SolNode39", + "faction": "grineer", + "minLevel": 1, + "maxLevel": 6, + "i18n": { + "en": { + "nodeName": "Everest", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb6775156700663c8414", + "slug": "magnacidium", + "gameRef": "SolNode712", + "faction": "infested", + "minLevel": 20, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Magnacidium", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb6775156700663c8415", + "slug": "adaro", + "gameRef": "SolNode181", + "faction": "grineer", + "minLevel": 32, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Adaro", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb6775156700663c8416", + "slug": "cerberus", + "gameRef": "SolNode43", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Cerberus", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb6875156700663c8417", + "slug": "terminus", + "gameRef": "SolNode28", + "faction": "infested", + "minLevel": 8, + "maxLevel": 10, + "i18n": { + "en": { + "nodeName": "Terminus", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb6d75156700663c842c", + "slug": "calabash", + "gameRef": "CrewBattleNode538", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Calabash", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb6d75156700663c842d", + "slug": "dione", + "gameRef": "SolNode67", + "faction": "grineer", + "minLevel": 21, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Dione", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb6d75156700663c842e", + "slug": "akkad", + "gameRef": "ClanNode18", + "faction": "infested", + "minLevel": 35, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Akkad", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb6d75156700663c842f", + "slug": "linea", + "gameRef": "SolNode109", + "faction": "corpus", + "minLevel": 5, + "maxLevel": 7, + "i18n": { + "en": { + "nodeName": "Linea", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb6d75156700663c8430", + "slug": "neso", + "gameRef": "SolNode62", + "faction": "corpus", + "minLevel": 29, + "maxLevel": 31, + "i18n": { + "en": { + "nodeName": "Neso", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb6e75156700663c8433", + "slug": "lu_yan", + "gameRef": "CrewBattleNode542", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Lu-yan", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb6e75156700663c8434", + "slug": "cassini", + "gameRef": "SolNode70", + "faction": "grineer", + "minLevel": 21, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Cassini", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb6e75156700663c8435", + "slug": "thon", + "gameRef": "SolNode135", + "faction": "grineer", + "minLevel": 15, + "maxLevel": 17, + "i18n": { + "en": { + "nodeName": "Thon", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb6e75156700663c8436", + "slug": "flexa", + "gameRef": "CrewBattleNode553", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Flexa", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb6f75156700663c8437", + "slug": "mot", + "gameRef": "SolNode409", + "faction": "corrupted", + "minLevel": 40, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Mot", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb6f75156700663c8438", + "slug": "arc_silver", + "gameRef": "CrewBattleNode540", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Arc Silver", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb6f75156700663c8439", + "slug": "oxomoco", + "gameRef": "SolNode407", + "faction": "corrupted", + "minLevel": 30, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Oxomoco", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb6f75156700663c843a", + "slug": "tikal", + "gameRef": "ClanNode3", + "faction": "infested", + "minLevel": 6, + "maxLevel": 16, + "i18n": { + "en": { + "nodeName": "Tikal", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb7075156700663c843b", + "slug": "titania", + "gameRef": "SolNode105", + "faction": "grineer", + "minLevel": 27, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Titania", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb7075156700663c843c", + "slug": "cressida", + "gameRef": "SolNode83", + "faction": "grineer", + "minLevel": 27, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Cressida", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb7075156700663c843d", + "slug": "salacia", + "gameRef": "SolNode908", + "faction": "corpus", + "minLevel": 27, + "maxLevel": 32, + "i18n": { + "en": { + "nodeName": "Salacia", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb7075156700663c843e", + "slug": "seimeni", + "gameRef": "ClanNode22", + "faction": "infested", + "minLevel": 15, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Seimeni", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb7175156700663c843f", + "slug": "zeugma", + "gameRef": "ClanNode11", + "faction": "infested", + "minLevel": 15, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Zeugma", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb7175156700663c8440", + "slug": "baal", + "gameRef": "SolNode205", + "faction": "corpus", + "minLevel": 21, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Baal", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb7175156700663c8441", + "slug": "oceanum", + "gameRef": "SolNode102", + "faction": "corpus", + "minLevel": 32, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Oceanum", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb7175156700663c8442", + "slug": "syrtis", + "gameRef": "SolNode904", + "faction": "grineer", + "minLevel": 8, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "Syrtis", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb7275156700663c8443", + "slug": "io", + "gameRef": "SolNode125", + "faction": "corpus", + "minLevel": 15, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Io", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb7275156700663c8444", + "slug": "gabii", + "gameRef": "ClanNode23", + "faction": "infested", + "minLevel": 15, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Gabii", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb7275156700663c8445", + "slug": "minthe", + "gameRef": "SolNode38", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 34, + "i18n": { + "en": { + "nodeName": "Minthe", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb7375156700663c8446", + "slug": "hellas", + "gameRef": "SolNode58", + "faction": "grineer", + "minLevel": 8, + "maxLevel": 10, + "i18n": { + "en": { + "nodeName": "Hellas", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb7375156700663c8447", + "slug": "venera", + "gameRef": "SolNode107", + "faction": "corpus", + "minLevel": 5, + "maxLevel": 7, + "i18n": { + "en": { + "nodeName": "Venera", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb7375156700663c8448", + "slug": "pantheon", + "gameRef": "SolNode226", + "faction": "grineer", + "minLevel": 6, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Pantheon", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb7375156700663c8449", + "slug": "kiliken", + "gameRef": "SolNode101", + "faction": "corpus", + "minLevel": 3, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Kiliken", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb7475156700663c844a", + "slug": "kokabiel", + "gameRef": "SolNode220", + "faction": "corpus", + "minLevel": 20, + "maxLevel": 22, + "i18n": { + "en": { + "nodeName": "Kokabiel", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb7475156700663c844b", + "slug": "calypso", + "gameRef": "SolNode82", + "faction": "grineer", + "minLevel": 24, + "maxLevel": 26, + "i18n": { + "en": { + "nodeName": "Calypso", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb7475156700663c844c", + "slug": "spear", + "gameRef": "SolNode46", + "faction": "grineer", + "minLevel": 8, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "Spear", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb7475156700663c844d", + "slug": "pallas", + "gameRef": "SolNode131", + "faction": "grineer", + "minLevel": 12, + "maxLevel": 14, + "i18n": { + "en": { + "nodeName": "Pallas", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb7575156700663c844e", + "slug": "anthe", + "gameRef": "SolNode31", + "faction": "grineer", + "minLevel": 22, + "maxLevel": 24, + "i18n": { + "en": { + "nodeName": "Anthe", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb7575156700663c844f", + "slug": "bode", + "gameRef": "SolNode132", + "faction": "grineer", + "minLevel": 12, + "maxLevel": 14, + "i18n": { + "en": { + "nodeName": "Bode", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb7575156700663c8450", + "slug": "kiste", + "gameRef": "SolNode140", + "faction": "grineer", + "minLevel": 13, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Kiste", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2f0fa751567007abb19ac", + "slug": "hapke", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Hapke", + "systemName": "Ceres", + "icon": "locations/images/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.png", + "thumb": "locations/images/thumbs/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.128x128.png" + } + } + }, + { + "id": "62d2f0fa751567007abb19ad", + "slug": "beleth", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Beleth", + "systemName": "Europa", + "icon": "locations/images/europa.3c96640406faebd3978d5f6bfe83e1a2.png", + "thumb": "locations/images/thumbs/europa.3c96640406faebd3978d5f6bfe83e1a2.128x128.png" + } + } + }, + { + "id": "62d2f0fa751567007abb19ae", + "slug": "trinculo", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Trinculo", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19af", + "slug": "wendell", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Wendell", + "systemName": "Phobos", + "icon": "locations/images/phobos.9c2b777c15f75fa960b2ab91348e0e43.png", + "thumb": "locations/images/thumbs/phobos.9c2b777c15f75fa960b2ab91348e0e43.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19b0", + "slug": "miranda", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Miranda", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19b1", + "slug": "tikoloshe", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Tikoloshe", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19b2", + "slug": "profit_margin", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Profit Margin", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19b3", + "slug": "cyath", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Cyath", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19b4", + "slug": "the_index_endurance", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "The Index: Endurance", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19b5", + "slug": "grildrig", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Grildrig", + "systemName": "Phobos", + "icon": "locations/images/phobos.9c2b777c15f75fa960b2ab91348e0e43.png", + "thumb": "locations/images/thumbs/phobos.9c2b777c15f75fa960b2ab91348e0e43.128x128.png" + } + } + }, + { + "id": "62d2f0fb751567007abb19b6", + "slug": "egeria", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Egeria", + "systemName": "Ceres", + "icon": "locations/images/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.png", + "thumb": "locations/images/thumbs/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19b7", + "slug": "(variant)_annihilation", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "(Variant) Annihilation", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19b8", + "slug": "gnathos", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Gnathos", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19b9", + "slug": "lepis", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Lepis", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19ba", + "slug": "the_index_endurance_(high_risk)", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "The Index: Endurance (High Risk)", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19bb", + "slug": "arva_vector", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Arva Vector", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19bc", + "slug": "team_annihilation", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Team Annihilation", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19bd", + "slug": "vesper", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Vesper", + "systemName": "Venus", + "icon": "locations/images/venus.fdba8acbd2e92834009d3ca7be516da8.png", + "thumb": "locations/images/thumbs/venus.fdba8acbd2e92834009d3ca7be516da8.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19be", + "slug": "flimnap", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Flimnap", + "systemName": "Phobos", + "icon": "locations/images/phobos.9c2b777c15f75fa960b2ab91348e0e43.png", + "thumb": "locations/images/thumbs/phobos.9c2b777c15f75fa960b2ab91348e0e43.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19bf", + "slug": "bendar_cluster", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Bendar Cluster", + "systemName": "Earth", + "icon": "locations/images/earth.608f116848b865847123226a9a7babdf.png", + "thumb": "locations/images/thumbs/earth.608f116848b865847123226a9a7babdf.128x128.png" + } + } + }, + { + "id": "62d2f0fc751567007abb19c0", + "slug": "caduceus", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Caduceus", + "systemName": "Mercury", + "icon": "locations/images/mercury.209b17d59d9840ea0e3df7b175da1224.png", + "thumb": "locations/images/thumbs/mercury.209b17d59d9840ea0e3df7b175da1224.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c1", + "slug": "mab", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Mab", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c2", + "slug": "cosis", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Cosis", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c3", + "slug": "(variant)_cephalon_capture", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "(Variant) Cephalon Capture", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c4", + "slug": "setebos", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Setebos", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c5", + "slug": "cephalon_capture", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Cephalon Capture", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c6", + "slug": "iota_temple", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Iota Temple", + "systemName": "Earth", + "icon": "locations/images/earth.608f116848b865847123226a9a7babdf.png", + "thumb": "locations/images/thumbs/earth.608f116848b865847123226a9a7babdf.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c7", + "slug": "khufu_envoy", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Khufu Envoy", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c8", + "slug": "mordo_cluster", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Mordo Cluster", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f0fd751567007abb19c9", + "slug": "ranova", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Ranova", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19ca", + "slug": "phithale", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Phithale", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19cb", + "slug": "lupal_pass", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Lupal Pass", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19cc", + "slug": "mammons_prospect", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Mammon'S Prospect", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19cd", + "slug": "iapetus", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Iapetus", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19ce", + "slug": "prospero", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Prospero", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19cf", + "slug": "portia", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Portia", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19d0", + "slug": "candiru", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Candiru", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19d1", + "slug": "quirinus", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Quirinus", + "systemName": "Mars", + "icon": "locations/images/mars.6680ac7f125a58ddacba6eaf53f5e251.png", + "thumb": "locations/images/thumbs/mars.6680ac7f125a58ddacba6eaf53f5e251.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19d2", + "slug": "thalassa", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Thalassa", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0fe751567007abb19d3", + "slug": "the_index_endurance_(medium_risk)", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "The Index: Endurance (Medium Risk)", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19d4", + "slug": "obol_crossing", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Obol Crossing", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19d5", + "slug": "zariman", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Zariman", + "systemName": "Zariman", + "icon": "locations/images/zariman.1ad0f297e230a8711c842c486f7e4fe7.png", + "thumb": "locations/images/thumbs/zariman.1ad0f297e230a8711c842c486f7e4fe7.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19d6", + "slug": "korms_belt", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Korm'S Belt", + "systemName": "Earth", + "icon": "locations/images/earth.608f116848b865847123226a9a7babdf.png", + "thumb": "locations/images/thumbs/earth.608f116848b865847123226a9a7babdf.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19d7", + "slug": "peregrine_axis", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Peregrine Axis", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19d8", + "slug": "todd", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Todd", + "systemName": "Phobos", + "icon": "locations/images/phobos.9c2b777c15f75fa960b2ab91348e0e43.png", + "thumb": "locations/images/thumbs/phobos.9c2b777c15f75fa960b2ab91348e0e43.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19d9", + "slug": "brom_cluster", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Brom Cluster", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19da", + "slug": "elite_sanctuary_onslaught", + "gameRef": "", + "i18n": { + "en": { + "nodeName": "Elite Sanctuary Onslaught", + "systemName": "Sanctuary", + "icon": "locations/images/sanctuary.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "locations/images/thumbs/sanctuary.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19db", + "slug": "halimede", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Halimede", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f0ff751567007abb19dc", + "slug": "enkidu_ice_drifts", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Enkidu Ice Drifts", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19dd", + "slug": "mimas", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Mimas", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19de", + "slug": "vesper_strait", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Vesper Strait", + "systemName": "Venus", + "icon": "locations/images/venus.fdba8acbd2e92834009d3ca7be516da8.png", + "thumb": "locations/images/thumbs/venus.fdba8acbd2e92834009d3ca7be516da8.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19df", + "slug": "limtoc", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Limtoc", + "systemName": "Phobos", + "icon": "locations/images/phobos.9c2b777c15f75fa960b2ab91348e0e43.png", + "thumb": "locations/images/thumbs/phobos.9c2b777c15f75fa960b2ab91348e0e43.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19e0", + "slug": "arcadia", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Arcadia", + "systemName": "Mars", + "icon": "locations/images/mars.6680ac7f125a58ddacba6eaf53f5e251.png", + "thumb": "locations/images/thumbs/mars.6680ac7f125a58ddacba6eaf53f5e251.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19e1", + "slug": "hymeno", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Hymeno", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19e2", + "slug": "sporid", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Sporid", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19e3", + "slug": "nodo_gap", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Nodo Gap", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19e4", + "slug": "corb", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Corb", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f100751567007abb19e5", + "slug": "beacon_shield_ring", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Beacon Shield Ring", + "systemName": "Venus", + "icon": "locations/images/venus.fdba8acbd2e92834009d3ca7be516da8.png", + "thumb": "locations/images/thumbs/venus.fdba8acbd2e92834009d3ca7be516da8.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19e6", + "slug": "charon", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Charon", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19e7", + "slug": "yemaja", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Yemaja", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19e8", + "slug": "shax", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Shax", + "systemName": "Europa", + "icon": "locations/images/europa.3c96640406faebd3978d5f6bfe83e1a2.png", + "thumb": "locations/images/thumbs/europa.3c96640406faebd3978d5f6bfe83e1a2.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19e9", + "slug": "aegaeon", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Aegaeon", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19ea", + "slug": "vand_cluster", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Vand Cluster", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19eb", + "slug": "sparga", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Sparga", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19ec", + "slug": "nu_gua_mines", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Nu-Gua Mines", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19ed", + "slug": "sovereign_grasp", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Sovereign Grasp", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19ee", + "slug": "phoebe", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Phoebe", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f101751567007abb19ef", + "slug": "gamygyn", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Gamygyn", + "systemName": "Europa", + "icon": "locations/images/europa.3c96640406faebd3978d5f6bfe83e1a2.png", + "thumb": "locations/images/thumbs/europa.3c96640406faebd3978d5f6bfe83e1a2.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f0", + "slug": "fentons_field", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Fenton'S Field", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f1", + "slug": "(variant)_team_annihilation", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "(Variant) Team Annihilation", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f2", + "slug": "scylla", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Scylla", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f3", + "slug": "orvin_haarc", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Orvin-Haarc", + "systemName": "Venus", + "icon": "locations/images/venus.fdba8acbd2e92834009d3ca7be516da8.png", + "thumb": "locations/images/thumbs/venus.fdba8acbd2e92834009d3ca7be516da8.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f4", + "slug": "ogal_cluster", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Ogal Cluster", + "systemName": "Earth", + "icon": "locations/images/earth.608f116848b865847123226a9a7babdf.png", + "thumb": "locations/images/thumbs/earth.608f116848b865847123226a9a7babdf.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f5", + "slug": "zagan", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Zagan", + "systemName": "Europa", + "icon": "locations/images/europa.3c96640406faebd3978d5f6bfe83e1a2.png", + "thumb": "locations/images/thumbs/europa.3c96640406faebd3978d5f6bfe83e1a2.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f6", + "slug": "jengu", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Jengu", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f7", + "slug": "undine", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Undine", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f102751567007abb19f8", + "slug": "cryotic_front", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Cryotic Front", + "systemName": "Europa", + "icon": "locations/images/europa.3c96640406faebd3978d5f6bfe83e1a2.png", + "thumb": "locations/images/thumbs/europa.3c96640406faebd3978d5f6bfe83e1a2.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb19f9", + "slug": "luckless_expanse", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Luckless Expanse", + "systemName": "Venus", + "icon": "locations/images/venus.fdba8acbd2e92834009d3ca7be516da8.png", + "thumb": "locations/images/thumbs/venus.fdba8acbd2e92834009d3ca7be516da8.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb19fa", + "slug": "veles", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Veles", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb19fb", + "slug": "ixodes", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Ixodes", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb19fc", + "slug": "sover_strait", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Sover Strait", + "systemName": "Earth", + "icon": "locations/images/earth.608f116848b865847123226a9a7babdf.png", + "thumb": "locations/images/thumbs/earth.608f116848b865847123226a9a7babdf.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb19fd", + "slug": "pallene", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Pallene", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb19fe", + "slug": "lunaro_arena", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Lunaro Arena", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb19ff", + "slug": "camenae", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Camenae", + "systemName": "Sedna", + "icon": "locations/images/sedna.521a6e5a16acd63157fb462581e68708.png", + "thumb": "locations/images/thumbs/sedna.521a6e5a16acd63157fb462581e68708.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb1a00", + "slug": "viver", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Viver", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb1a01", + "slug": "annihilation", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Annihilation", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f103751567007abb1a02", + "slug": "eligor", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Eligor", + "systemName": "Europa", + "icon": "locations/images/europa.3c96640406faebd3978d5f6bfe83e1a2.png", + "thumb": "locations/images/thumbs/europa.3c96640406faebd3978d5f6bfe83e1a2.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a03", + "slug": "bianca", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Bianca", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a04", + "slug": "opik", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Opik", + "systemName": "Phobos", + "icon": "locations/images/phobos.9c2b777c15f75fa960b2ab91348e0e43.png", + "thumb": "locations/images/thumbs/phobos.9c2b777c15f75fa960b2ab91348e0e43.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a05", + "slug": "neruda", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Neruda", + "systemName": "Mercury", + "icon": "locations/images/mercury.209b17d59d9840ea0e3df7b175da1224.png", + "thumb": "locations/images/thumbs/mercury.209b17d59d9840ea0e3df7b175da1224.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a06", + "slug": "kasios_rest", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Kasio'S Rest", + "systemName": "Saturn", + "icon": "locations/images/saturn.5b8c41408d9ef7cd3261531bfc26a648.png", + "thumb": "locations/images/thumbs/saturn.5b8c41408d9ef7cd3261531bfc26a648.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a07", + "slug": "sanctuary_onslaught", + "gameRef": "", + "i18n": { + "en": { + "nodeName": "Sanctuary Onslaught", + "systemName": "Sanctuary", + "icon": "locations/images/sanctuary.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "locations/images/thumbs/sanctuary.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a08", + "slug": "the_index_endurance_(low_risk)", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "The Index: Endurance (Low Risk)", + "systemName": "Neptune", + "icon": "locations/images/neptune.7ca401e7010eb90e56fd030e94d1033f.png", + "thumb": "locations/images/thumbs/neptune.7ca401e7010eb90e56fd030e94d1033f.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a09", + "slug": "drunlo", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Drunlo", + "systemName": "Phobos", + "icon": "locations/images/phobos.9c2b777c15f75fa960b2ab91348e0e43.png", + "thumb": "locations/images/thumbs/phobos.9c2b777c15f75fa960b2ab91348e0e43.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a0a", + "slug": "lillith", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Lillith", + "systemName": "Europa", + "icon": "locations/images/europa.3c96640406faebd3978d5f6bfe83e1a2.png", + "thumb": "locations/images/thumbs/europa.3c96640406faebd3978d5f6bfe83e1a2.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a0b", + "slug": "psoro", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Psoro", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a0c", + "slug": "phalan", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Phalan", + "systemName": "Eris", + "icon": "locations/images/eris.1229499c3377f04e4b527f24b7b51ef6.png", + "thumb": "locations/images/thumbs/eris.1229499c3377f04e4b527f24b7b51ef6.128x128.png" + } + } + }, + { + "id": "62d2f104751567007abb1a0d", + "slug": "varro", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Varro", + "systemName": "Ceres", + "icon": "locations/images/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.png", + "thumb": "locations/images/thumbs/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.128x128.png" + } + } + }, + { + "id": "62d2f105751567007abb1a0e", + "slug": "olla", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Olla", + "systemName": "Ceres", + "icon": "locations/images/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.png", + "thumb": "locations/images/thumbs/ceres.d5fe370fc9595cfc5aa7776edf02b1eb.128x128.png" + } + } + }, + { + "id": "62d2f105751567007abb1a0f", + "slug": "falling_glory", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Falling Glory", + "systemName": "Venus", + "icon": "locations/images/venus.fdba8acbd2e92834009d3ca7be516da8.png", + "thumb": "locations/images/thumbs/venus.fdba8acbd2e92834009d3ca7be516da8.128x128.png" + } + } + }, + { + "id": "62d2f105751567007abb1a10", + "slug": "cupid", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Cupid", + "systemName": "Uranus", + "icon": "locations/images/uranus.1cce1f73611790f7a4f944681483d452.png", + "thumb": "locations/images/thumbs/uranus.1cce1f73611790f7a4f944681483d452.128x128.png" + } + } + }, + { + "id": "62d2f105751567007abb1a11", + "slug": "seven_sirens", + "gameRef": "", + "faction": "infested", + "i18n": { + "en": { + "nodeName": "Seven Sirens", + "systemName": "Pluto", + "icon": "locations/images/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.png", + "thumb": "locations/images/thumbs/pluto.f5a0e4e8db203a41f7db2aacc5ac3853.128x128.png" + } + } + }, + { + "id": "62d2f105751567007abb1a12", + "slug": "bifrost_echo", + "gameRef": "", + "faction": "corpus", + "i18n": { + "en": { + "nodeName": "Bifrost Echo", + "systemName": "Venus", + "icon": "locations/images/venus.fdba8acbd2e92834009d3ca7be516da8.png", + "thumb": "locations/images/thumbs/venus.fdba8acbd2e92834009d3ca7be516da8.128x128.png" + } + } + }, + { + "id": "63887510e7c98800de87fdd1", + "slug": "yuvarium", + "gameRef": "SolNode309", + "faction": "corrupted", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Yuvarium", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "63887511e7c98800de87fdd2", + "slug": "circulus", + "gameRef": "SolNode310", + "faction": "corrupted", + "minLevel": 80, + "maxLevel": 100, + "i18n": { + "en": { + "nodeName": "Circulus", + "systemName": "Lua", + "icon": "locations/images/lua.6bc4c714a8babcab9dad8c97d955a001.png", + "thumb": "locations/images/thumbs/lua.6bc4c714a8babcab9dad8c97d955a001.128x128.png" + } + } + }, + { + "id": "63ee03bd10125411f5fc6dbb", + "slug": "tyana_pass", + "gameRef": "SolNode450", + "faction": "corpus", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Tyana Pass", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "644b01ab7ec190004dbb80c1", + "slug": "duviri", + "gameRef": "", + "i18n": { + "en": { + "nodeName": "Duviri", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "62d2eb4275156700663c8379", + "slug": "koro", + "gameRef": "SolNode741", + "faction": "grineer", + "minLevel": 29, + "maxLevel": 31, + "i18n": { + "en": { + "nodeName": "Koro", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb4275156700663c837a", + "slug": "montes", + "gameRef": "SolNode902", + "faction": "corpus", + "minLevel": 3, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Montes", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb4475156700663c8383", + "slug": "adrastea", + "gameRef": "SolNode88", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Adrastea", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb4575156700663c8389", + "slug": "themisto", + "gameRef": "SolNode53", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Themisto", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb4675156700663c838a", + "slug": "stickney", + "gameRef": "SettlementNode3", + "faction": "corpus", + "minLevel": 10, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Stickney", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb4675156700663c838b", + "slug": "ariel", + "gameRef": "SolNode33", + "faction": "grineer", + "minLevel": 25, + "maxLevel": 27, + "i18n": { + "en": { + "nodeName": "Ariel", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb4675156700663c838c", + "slug": "aten", + "gameRef": "SolNode410", + "faction": "corrupted", + "minLevel": 40, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Aten", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb4675156700663c838d", + "slug": "carme", + "gameRef": "SolNode74", + "faction": "corpus", + "minLevel": 16, + "maxLevel": 18, + "i18n": { + "en": { + "nodeName": "Carme", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb4775156700663c838e", + "slug": "lares", + "gameRef": "SolNode130", + "faction": "infested", + "minLevel": 6, + "maxLevel": 11, + "i18n": { + "en": { + "nodeName": "Lares", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb4775156700663c838f", + "slug": "exequias", + "gameRef": "SolNode713", + "faction": "infested", + "minLevel": 30, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Exequias", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb4775156700663c8390", + "slug": "marduk", + "gameRef": "SolNode411", + "faction": "corrupted", + "minLevel": 40, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Marduk", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb4775156700663c8391", + "slug": "m_prime", + "gameRef": "SolNode103", + "faction": "infested", + "minLevel": 7, + "maxLevel": 9, + "i18n": { + "en": { + "nodeName": "M Prime", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb4775156700663c8392", + "slug": "tamu", + "gameRef": "SolNode745", + "faction": "grineer", + "minLevel": 35, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Tamu", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb4875156700663c8394", + "slug": "arval", + "gameRef": "SolNode41", + "faction": "grineer", + "minLevel": 9, + "maxLevel": 11, + "i18n": { + "en": { + "nodeName": "Arval", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb4975156700663c8396", + "slug": "puck", + "gameRef": "SolNode114", + "faction": "grineer", + "minLevel": 27, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Puck", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb4975156700663c8398", + "slug": "proteus", + "gameRef": "SolNode17", + "faction": "corpus", + "minLevel": 27, + "maxLevel": 32, + "i18n": { + "en": { + "nodeName": "Proteus", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb4a75156700663c839a", + "slug": "taranis", + "gameRef": "SolNode402", + "faction": "corrupted", + "minLevel": 10, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Taranis", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb4a75156700663c839c", + "slug": "coba", + "gameRef": "ClanNode2", + "faction": "infested", + "minLevel": 6, + "maxLevel": 16, + "i18n": { + "en": { + "nodeName": "Coba", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb4a75156700663c839e", + "slug": "pago", + "gameRef": "SolNode747", + "faction": "grineer", + "minLevel": 31, + "maxLevel": 33, + "i18n": { + "en": { + "nodeName": "Pago", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb4b75156700663c83a0", + "slug": "kelashin", + "gameRef": "ClanNode21", + "faction": "infested", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Kelashin", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb4b75156700663c83a2", + "slug": "oestrus", + "gameRef": "SolNode167", + "faction": "infested", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Oestrus", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb4c75156700663c83a3", + "slug": "the_ropalolyst", + "gameRef": "SolNode740", + "faction": "ropalolyst", + "minLevel": 40, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "The Ropalolyst", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb4c75156700663c83a4", + "slug": "vallis", + "gameRef": "SolNode68", + "faction": "grineer", + "minLevel": 11, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "Vallis", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb4c75156700663c83a5", + "slug": "halako_perimeter", + "gameRef": "SolNode231", + "faction": "grineer", + "minLevel": 50, + "maxLevel": 55, + "i18n": { + "en": { + "nodeName": "Halako Perimeter", + "systemName": "Zariman", + "icon": "locations/images/zariman.092efa88f59e399d90399fcb9169bce0.png", + "thumb": "locations/images/thumbs/zariman.092efa88f59e399d90399fcb9169bce0.128x128.png" + } + } + }, + { + "id": "62d2eb4c75156700663c83a6", + "slug": "draco", + "gameRef": "SolNode146", + "faction": "grineer", + "minLevel": 12, + "maxLevel": 17, + "i18n": { + "en": { + "nodeName": "Draco", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb4d75156700663c83a7", + "slug": "isos", + "gameRef": "SolNode162", + "faction": "infested", + "minLevel": 32, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Isos", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb4d75156700663c83a8", + "slug": "hydron", + "gameRef": "SolNode195", + "faction": "grineer", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Hydron", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb4d75156700663c83a9", + "slug": "malva", + "gameRef": "ClanNode1", + "faction": "infested", + "minLevel": 8, + "maxLevel": 18, + "i18n": { + "en": { + "nodeName": "Malva", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb4d75156700663c83aa", + "slug": "palus", + "gameRef": "SolNode81", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Palus", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb5075156700663c83b3", + "slug": "thebe", + "gameRef": "SolNode10", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Thebe", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb5075156700663c83b6", + "slug": "larzac", + "gameRef": "ClanNode6", + "faction": "infested", + "minLevel": 23, + "maxLevel": 33, + "i18n": { + "en": { + "nodeName": "Larzac", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb5075156700663c83b7", + "slug": "keeler", + "gameRef": "SolNode93", + "faction": "grineer", + "minLevel": 23, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Keeler", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb5175156700663c83b8", + "slug": "formido", + "gameRef": "SolNode710", + "faction": "infested", + "minLevel": 14, + "maxLevel": 16, + "i18n": { + "en": { + "nodeName": "Formido", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb5175156700663c83b9", + "slug": "ose", + "gameRef": "SolNode211", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Ose", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb5175156700663c83ba", + "slug": "erato", + "gameRef": "CrewBattleNode541", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Erato", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb5175156700663c83bb", + "slug": "valac", + "gameRef": "SolNode215", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Valac", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb5275156700663c83be", + "slug": "carpo", + "gameRef": "SolNode121", + "faction": "corpus", + "minLevel": 17, + "maxLevel": 19, + "i18n": { + "en": { + "nodeName": "Carpo", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb5275156700663c83bf", + "slug": "triton", + "gameRef": "SolNode78", + "faction": "corpus", + "minLevel": 28, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Triton", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb5375156700663c83c0", + "slug": "berehynia", + "gameRef": "SolNode185", + "faction": "grineer", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Berehynia", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5375156700663c83c1", + "slug": "narcissus", + "gameRef": "SolNode21", + "faction": "corpus", + "minLevel": 32, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Narcissus", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb5375156700663c83c2", + "slug": "cinxia", + "gameRef": "SolNode147", + "faction": "grineer", + "minLevel": 12, + "maxLevel": 17, + "i18n": { + "en": { + "nodeName": "Cinxia", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb5375156700663c83c3", + "slug": "terrorem", + "gameRef": "SolNode711", + "faction": "infested", + "minLevel": 25, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Terrorem", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb5475156700663c83c4", + "slug": "war", + "gameRef": "SolNode99", + "faction": "grineer", + "minLevel": 11, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "War", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb5475156700663c83c5", + "slug": "kadesh", + "gameRef": "ClanNode8", + "faction": "infested", + "minLevel": 10, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Kadesh", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb5475156700663c83c6", + "slug": "despina", + "gameRef": "SolNode6", + "faction": "corpus", + "minLevel": 27, + "maxLevel": 32, + "i18n": { + "en": { + "nodeName": "Despina", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb5475156700663c83c7", + "slug": "tycho", + "gameRef": "SolNode302", + "faction": "corpus", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Tycho", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb5475156700663c83c8", + "slug": "psamathe", + "gameRef": "SolNode127", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 32, + "i18n": { + "en": { + "nodeName": "Psamathe", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb5575156700663c83c9", + "slug": "garus", + "gameRef": "SolNode748", + "faction": "grineer", + "minLevel": 31, + "maxLevel": 33, + "i18n": { + "en": { + "nodeName": "Garus", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb5575156700663c83ca", + "slug": "larissa", + "gameRef": "SolNode49", + "faction": "corpus", + "minLevel": 29, + "maxLevel": 31, + "i18n": { + "en": { + "nodeName": "Larissa", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb5575156700663c83cb", + "slug": "rhea", + "gameRef": "SolNode18", + "faction": "grineer", + "minLevel": 21, + "maxLevel": 26, + "i18n": { + "en": { + "nodeName": "Rhea", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb5575156700663c83cc", + "slug": "hepit", + "gameRef": "SolNode401", + "faction": "corrupted", + "minLevel": 10, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Hepit", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb5675156700663c83cd", + "slug": "assur", + "gameRef": "ClanNode17", + "faction": "infested", + "minLevel": 25, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Assur", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb5675156700663c83ce", + "slug": "horend", + "gameRef": "SolNode706", + "faction": "infested", + "minLevel": 12, + "maxLevel": 14, + "i18n": { + "en": { + "nodeName": "Horend", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb5675156700663c83cf", + "slug": "plato", + "gameRef": "SolNode300", + "faction": "grineer", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Plato", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb5675156700663c83d0", + "slug": "ur", + "gameRef": "ClanNode16", + "faction": "infested", + "minLevel": 30, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Ur", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb5775156700663c83d1", + "slug": "tessera", + "gameRef": "SolNode22", + "faction": "corpus", + "minLevel": 3, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Tessera", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb5775156700663c83d2", + "slug": "iliad", + "gameRef": "SettlementNode20", + "faction": "corpus", + "minLevel": 13, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Iliad", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb5775156700663c83d3", + "slug": "enceladus", + "gameRef": "SolNode19", + "faction": "grineer", + "minLevel": 23, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Enceladus", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb5775156700663c83d4", + "slug": "cypress", + "gameRef": "SolNode56", + "faction": "corpus", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Cypress", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb5875156700663c83d5", + "slug": "naamah", + "gameRef": "SolNode210", + "faction": "corpus", + "minLevel": 21, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Naamah", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb5875156700663c83d6", + "slug": "abaddon", + "gameRef": "SolNode203", + "faction": "corpus", + "minLevel": 21, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Abaddon", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb5875156700663c83d7", + "slug": "shklovsky", + "gameRef": "SettlementNode14", + "faction": "corpus", + "minLevel": 11, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "Shklovsky", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb5875156700663c83d8", + "slug": "naga", + "gameRef": "SolNode189", + "faction": "grineer", + "minLevel": 30, + "maxLevel": 34, + "i18n": { + "en": { + "nodeName": "Naga", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5975156700663c83d9", + "slug": "regna", + "gameRef": "SolNode48", + "faction": "corpus", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Regna", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb5975156700663c83da", + "slug": "memphis", + "gameRef": "ClanNode10", + "faction": "infested", + "minLevel": 15, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Memphis", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb5975156700663c83db", + "slug": "e_prime", + "gameRef": "SolNode27", + "faction": "grineer", + "minLevel": 1, + "maxLevel": 3, + "i18n": { + "en": { + "nodeName": "E Prime", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb5975156700663c83dc", + "slug": "rosalind", + "gameRef": "SolNode9", + "faction": "grineer", + "minLevel": 27, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Rosalind", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb5a75156700663c83dd", + "slug": "ishtar", + "gameRef": "SolNode61", + "faction": "corpus", + "minLevel": 6, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Ishtar", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb5a75156700663c83de", + "slug": "cytherean", + "gameRef": "SolNode23", + "faction": "corpus", + "minLevel": 3, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Cytherean", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb5a75156700663c83df", + "slug": "rusalka", + "gameRef": "SolNode184", + "faction": "grineer", + "minLevel": 32, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Rusalka", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5b75156700663c83e0", + "slug": "cambria", + "gameRef": "SolNode79", + "faction": "grineer", + "minLevel": 2, + "maxLevel": 4, + "i18n": { + "en": { + "nodeName": "Cambria", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb5b75156700663c83e1", + "slug": "dirus", + "gameRef": "SolNode709", + "faction": "infested", + "minLevel": 15, + "maxLevel": 17, + "i18n": { + "en": { + "nodeName": "Dirus", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb5b75156700663c83e2", + "slug": "apollo", + "gameRef": "SolNode308", + "faction": "corpus", + "minLevel": 35, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Apollo", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb5b75156700663c83e3", + "slug": "amalthea", + "gameRef": "SolNode97", + "faction": "corpus", + "minLevel": 17, + "maxLevel": 19, + "i18n": { + "en": { + "nodeName": "Amalthea", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb5b75156700663c83e4", + "slug": "romula", + "gameRef": "ClanNode0", + "faction": "infested", + "minLevel": 8, + "maxLevel": 18, + "i18n": { + "en": { + "nodeName": "Romula", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb5c75156700663c83e5", + "slug": "piscinas", + "gameRef": "ClanNode13", + "faction": "infested", + "minLevel": 26, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Piscinas", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb5c75156700663c83e6", + "slug": "orb_vallis", + "gameRef": "SolNode129", + "faction": "corpus", + "minLevel": 10, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Orb Vallis", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb5c75156700663c83e7", + "slug": "nakki", + "gameRef": "SolNode190", + "faction": "grineer", + "minLevel": 40, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Nakki", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5c75156700663c83e8", + "slug": "marid", + "gameRef": "SolNode191", + "faction": "grineer", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Marid", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5c75156700663c83e9", + "slug": "galatea", + "gameRef": "SolNode1", + "faction": "corpus", + "minLevel": 27, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Galatea", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb5d75156700663c83ea", + "slug": "selkie", + "gameRef": "SolNode187", + "faction": "grineer", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Selkie", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5d75156700663c83eb", + "slug": "nimus", + "gameRef": "SolNode166", + "faction": "infested", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Nimus", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb5d75156700663c83ec", + "slug": "gradivus", + "gameRef": "SolNode65", + "faction": "corpus", + "minLevel": 9, + "maxLevel": 11, + "i18n": { + "en": { + "nodeName": "Gradivus", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb5d75156700663c83ed", + "slug": "monolith", + "gameRef": "SettlementNode12", + "faction": "corpus", + "minLevel": 13, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Monolith", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb5e75156700663c83ee", + "slug": "sorath", + "gameRef": "SolNode214", + "faction": "corpus", + "minLevel": 19, + "maxLevel": 21, + "i18n": { + "en": { + "nodeName": "Sorath", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb5e75156700663c83ef", + "slug": "unda", + "gameRef": "SolNode66", + "faction": "corpus", + "minLevel": 4, + "maxLevel": 6, + "i18n": { + "en": { + "nodeName": "Unda", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb5e75156700663c83f0", + "slug": "h_2_cloud", + "gameRef": "CrewBattleNode554", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "H-2 Cloud", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb5e75156700663c83f1", + "slug": "ukko", + "gameRef": "SolNode406", + "faction": "corrupted", + "minLevel": 30, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Ukko", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb5f75156700663c83f2", + "slug": "outer_terminus", + "gameRef": "SolNode72", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Outer Terminus", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb5f75156700663c83f3", + "slug": "kelpie", + "gameRef": "SolNode188", + "faction": "grineer", + "minLevel": 35, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Kelpie", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb5f75156700663c83f4", + "slug": "stribog", + "gameRef": "SolNode404", + "faction": "corrupted", + "minLevel": 20, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Stribog", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb5f75156700663c83f5", + "slug": "caracol", + "gameRef": "ClanNode12", + "faction": "infested", + "minLevel": 26, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Caracol", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb5f75156700663c83f6", + "slug": "solium", + "gameRef": "SolNode173", + "faction": "infested", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Solium", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb6075156700663c83f7", + "slug": "elara", + "gameRef": "SolNode100", + "faction": "corpus", + "minLevel": 15, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Elara", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb6075156700663c83f8", + "slug": "kappa", + "gameRef": "SolNode177", + "faction": "grineer", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Kappa", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb6075156700663c83f9", + "slug": "ker", + "gameRef": "SolNode141", + "faction": "grineer", + "minLevel": 14, + "maxLevel": 16, + "i18n": { + "en": { + "nodeName": "Ker", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb6075156700663c83fa", + "slug": "tuvul_commons", + "gameRef": "SolNode232", + "faction": "grineer", + "minLevel": 50, + "maxLevel": 55, + "i18n": { + "en": { + "nodeName": "Tuvul Commons", + "systemName": "Zariman", + "icon": "locations/images/zariman.092efa88f59e399d90399fcb9169bce0.png", + "thumb": "locations/images/thumbs/zariman.092efa88f59e399d90399fcb9169bce0.128x128.png" + } + } + }, + { + "id": "62d2eb6075156700663c83fb", + "slug": "numina", + "gameRef": "CrewBattleNode539", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Numina", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb6175156700663c83fc", + "slug": "lith", + "gameRef": "SolNode26", + "faction": "grineer", + "minLevel": 1, + "maxLevel": 6, + "i18n": { + "en": { + "nodeName": "Lith", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb6175156700663c83fd", + "slug": "mariana", + "gameRef": "SolNode89", + "faction": "grineer", + "minLevel": 1, + "maxLevel": 3, + "i18n": { + "en": { + "nodeName": "Mariana", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb6175156700663c83fe", + "slug": "vodyanoi", + "gameRef": "SolNode183", + "faction": "grineer", + "minLevel": 85, + "maxLevel": 85, + "i18n": { + "en": { + "nodeName": "Vodyanoi", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb6275156700663c83ff", + "slug": "tharsis", + "gameRef": "SolNode11", + "faction": "grineer", + "minLevel": 8, + "maxLevel": 10, + "i18n": { + "en": { + "nodeName": "Tharsis", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb6275156700663c8400", + "slug": "wahiba", + "gameRef": "ClanNode9", + "faction": "infested", + "minLevel": 10, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Wahiba", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb6275156700663c8401", + "slug": "titan", + "gameRef": "SolNode96", + "faction": "grineer", + "minLevel": 21, + "maxLevel": 26, + "i18n": { + "en": { + "nodeName": "Titan", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb6275156700663c8402", + "slug": "ara", + "gameRef": "SolNode45", + "faction": "grineer", + "minLevel": 10, + "maxLevel": 12, + "i18n": { + "en": { + "nodeName": "Ara", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb6275156700663c8403", + "slug": "nuovo", + "gameRef": "SolNode137", + "faction": "grineer", + "minLevel": 13, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Nuovo", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb6375156700663c8404", + "slug": "morax", + "gameRef": "SolNode209", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Morax", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb6375156700663c8405", + "slug": "xini", + "gameRef": "SolNode172", + "faction": "infested", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Xini", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb6375156700663c8406", + "slug": "acheron", + "gameRef": "SolNode4", + "faction": "corpus", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Acheron", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb6875156700663c8419", + "slug": "copernicus", + "gameRef": "SolNode304", + "faction": "corpus", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Copernicus", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb6875156700663c841a", + "slug": "hydra", + "gameRef": "SolNode76", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 34, + "i18n": { + "en": { + "nodeName": "Hydra", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb6975156700663c841b", + "slug": "exta", + "gameRef": "SolNode144", + "faction": "grineer", + "minLevel": 14, + "maxLevel": 16, + "i18n": { + "en": { + "nodeName": "Exta", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb6975156700663c841c", + "slug": "sabmir_cloud", + "gameRef": "CrewBattleNode543", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Sabmir Cloud", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb6975156700663c841d", + "slug": "e_gate", + "gameRef": "SolNode128", + "faction": "corpus", + "minLevel": 3, + "maxLevel": 5, + "i18n": { + "en": { + "nodeName": "E Gate", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb6975156700663c841e", + "slug": "lex", + "gameRef": "SolNode139", + "faction": "grineer", + "minLevel": 14, + "maxLevel": 16, + "i18n": { + "en": { + "nodeName": "Lex", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb6975156700663c841f", + "slug": "casta", + "gameRef": "SolNode149", + "faction": "grineer", + "minLevel": 12, + "maxLevel": 17, + "i18n": { + "en": { + "nodeName": "Casta", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb6a75156700663c8420", + "slug": "rotuma", + "gameRef": "SolNode743", + "faction": "grineer", + "minLevel": 30, + "maxLevel": 32, + "i18n": { + "en": { + "nodeName": "Rotuma", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb6a75156700663c8421", + "slug": "v_prime", + "gameRef": "SolNode123", + "faction": "corpus", + "minLevel": 3, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "V Prime", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb6a75156700663c8422", + "slug": "eurasia", + "gameRef": "SolNode59", + "faction": "grineer", + "minLevel": 3, + "maxLevel": 5, + "i18n": { + "en": { + "nodeName": "Eurasia", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb6a75156700663c8423", + "slug": "olympus", + "gameRef": "SolNode30", + "faction": "grineer", + "minLevel": 15, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Olympus", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb6b75156700663c8424", + "slug": "aphrodite", + "gameRef": "SolNode2", + "faction": "corpus", + "minLevel": 6, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Aphrodite", + "systemName": "Venus", + "icon": "locations/images/venus.3d3da95c321bff1421432e0c7430a65b.png", + "thumb": "locations/images/thumbs/venus.3d3da95c321bff1421432e0c7430a65b.128x128.png" + } + } + }, + { + "id": "62d2eb6b75156700663c8425", + "slug": "teshub", + "gameRef": "SolNode400", + "faction": "corrupted", + "minLevel": 10, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Teshub", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb6b75156700663c8426", + "slug": "belenus", + "gameRef": "SolNode408", + "faction": "corrupted", + "minLevel": 30, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Belenus", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb6b75156700663c8427", + "slug": "sharpless", + "gameRef": "SettlementNode15", + "faction": "corpus", + "minLevel": 11, + "maxLevel": 13, + "i18n": { + "en": { + "nodeName": "Sharpless", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb6c75156700663c8428", + "slug": "caliban", + "gameRef": "SolNode60", + "faction": "grineer", + "minLevel": 25, + "maxLevel": 27, + "i18n": { + "en": { + "nodeName": "Caliban", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb6c75156700663c8429", + "slug": "brugia", + "gameRef": "SolNode153", + "faction": "infested", + "minLevel": 32, + "maxLevel": 36, + "i18n": { + "en": { + "nodeName": "Brugia", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb6c75156700663c842a", + "slug": "sangeru", + "gameRef": "ClanNode15", + "faction": "infested", + "minLevel": 35, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Sangeru", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb6c75156700663c842b", + "slug": "saxis", + "gameRef": "SolNode171", + "faction": "infested", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Saxis", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb6e75156700663c8432", + "slug": "nabuk", + "gameRef": "SolNode742", + "faction": "grineer", + "minLevel": 30, + "maxLevel": 32, + "i18n": { + "en": { + "nodeName": "Nabuk", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb3975156700663c8359", + "slug": "mithra", + "gameRef": "SolNode412", + "faction": "corrupted", + "minLevel": 40, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Mithra", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb3975156700663c835a", + "slug": "paimon", + "gameRef": "SolNode212", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Paimon", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb3a75156700663c835b", + "slug": "metis", + "gameRef": "SolNode126", + "faction": "corpus", + "minLevel": 15, + "maxLevel": 17, + "i18n": { + "en": { + "nodeName": "Metis", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb3a75156700663c835c", + "slug": "cambion_drift", + "gameRef": "SolNode229", + "faction": "infested", + "minLevel": 15, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Cambion Drift", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb3a75156700663c835d", + "slug": "pavlov", + "gameRef": "SolNode306", + "faction": "corpus", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Pavlov", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb3a75156700663c835e", + "slug": "apollodorus", + "gameRef": "SolNode94", + "faction": "infested", + "minLevel": 6, + "maxLevel": 11, + "i18n": { + "en": { + "nodeName": "Apollodorus", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb3b75156700663c835f", + "slug": "taveuni", + "gameRef": "SolNode744", + "faction": "grineer", + "minLevel": 32, + "maxLevel": 37, + "i18n": { + "en": { + "nodeName": "Taveuni", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb3b75156700663c8360", + "slug": "kepler", + "gameRef": "SettlementNode10", + "faction": "corpus", + "minLevel": 12, + "maxLevel": 14, + "i18n": { + "en": { + "nodeName": "Kepler", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb3b75156700663c8361", + "slug": "caelus", + "gameRef": "SolNode907", + "faction": "grineer", + "minLevel": 24, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Caelus", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb3c75156700663c8362", + "slug": "callisto", + "gameRef": "SolNode25", + "faction": "corpus", + "minLevel": 15, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "Callisto", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb3c75156700663c8363", + "slug": "martialis", + "gameRef": "SolNode36", + "faction": "grineer", + "minLevel": 10, + "maxLevel": 12, + "i18n": { + "en": { + "nodeName": "Martialis", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb3c75156700663c8364", + "slug": "oro_works", + "gameRef": "SolNode233", + "faction": "grineer", + "minLevel": 50, + "maxLevel": 55, + "i18n": { + "en": { + "nodeName": "Oro Works", + "systemName": "Zariman", + "icon": "locations/images/zariman.092efa88f59e399d90399fcb9169bce0.png", + "thumb": "locations/images/thumbs/zariman.092efa88f59e399d90399fcb9169bce0.128x128.png" + } + } + }, + { + "id": "62d2eb3d75156700663c8365", + "slug": "gulliver", + "gameRef": "SettlementNode11", + "faction": "corpus", + "minLevel": 10, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Gulliver", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb3d75156700663c8366", + "slug": "erpo", + "gameRef": "SolNode903", + "faction": "grineer", + "minLevel": 1, + "maxLevel": 6, + "i18n": { + "en": { + "nodeName": "Erpo", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb3d75156700663c8367", + "slug": "plains_of_eidolon", + "gameRef": "SolNode228", + "faction": "grineer", + "minLevel": 10, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Plains of Eidolon", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb3d75156700663c8368", + "slug": "st├Âfler", + "gameRef": "SolNode305", + "faction": "grineer", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "St├Âfler", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb3e75156700663c8369", + "slug": "sechura", + "gameRef": "ClanNode24", + "faction": "infested", + "minLevel": 35, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Sechura", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb3e75156700663c836a", + "slug": "augustus", + "gameRef": "SolNode16", + "faction": "grineer", + "minLevel": 9, + "maxLevel": 14, + "i18n": { + "en": { + "nodeName": "Augustus", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb3e75156700663c836b", + "slug": "hieracon", + "gameRef": "ClanNode25", + "faction": "infested", + "minLevel": 35, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Hieracon", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb3e75156700663c836c", + "slug": "merrow", + "gameRef": "SolNode193", + "faction": "grineer", + "minLevel": 35, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Merrow", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb3f75156700663c836d", + "slug": "ani", + "gameRef": "SolNode405", + "faction": "corrupted", + "minLevel": 20, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Ani", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb3f75156700663c836e", + "slug": "telesto", + "gameRef": "SolNode20", + "faction": "grineer", + "minLevel": 22, + "maxLevel": 24, + "i18n": { + "en": { + "nodeName": "Telesto", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb3f75156700663c836f", + "slug": "sycorax", + "gameRef": "SolNode34", + "faction": "grineer", + "minLevel": 24, + "maxLevel": 26, + "i18n": { + "en": { + "nodeName": "Sycorax", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb3f75156700663c8370", + "slug": "stephano", + "gameRef": "SolNode122", + "faction": "grineer", + "minLevel": 24, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Stephano", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb4075156700663c8371", + "slug": "ludi", + "gameRef": "SolNode138", + "faction": "grineer", + "minLevel": 15, + "maxLevel": 17, + "i18n": { + "en": { + "nodeName": "Ludi", + "systemName": "Ceres", + "icon": "locations/images/ceres.83a89d616813a7815cf1ee30ac9b01b8.png", + "thumb": "locations/images/thumbs/ceres.83a89d616813a7815cf1ee30ac9b01b8.128x128.png" + } + } + }, + { + "id": "62d2eb4075156700663c8372", + "slug": "tiwaz", + "gameRef": "SolNode403", + "faction": "corrupted", + "minLevel": 20, + "maxLevel": 25, + "i18n": { + "en": { + "nodeName": "Tiwaz", + "systemName": "Void", + "icon": "locations/images/void.8704d0ff850b2435afcb1c2ebc242188.png", + "thumb": "locations/images/thumbs/void.8704d0ff850b2435afcb1c2ebc242188.128x128.png" + } + } + }, + { + "id": "62d2eb4075156700663c8373", + "slug": "pacific", + "gameRef": "SolNode15", + "faction": "grineer", + "minLevel": 3, + "maxLevel": 6, + "i18n": { + "en": { + "nodeName": "Pacific", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb4075156700663c8374", + "slug": "everview_arc", + "gameRef": "SolNode230", + "faction": "grineer", + "minLevel": 50, + "maxLevel": 55, + "i18n": { + "en": { + "nodeName": "Everview Arc", + "systemName": "Zariman", + "icon": "locations/images/zariman.092efa88f59e399d90399fcb9169bce0.png", + "thumb": "locations/images/thumbs/zariman.092efa88f59e399d90399fcb9169bce0.128x128.png" + } + } + }, + { + "id": "62d2eb4175156700663c8375", + "slug": "caloris", + "gameRef": "SolNode119", + "faction": "grineer", + "minLevel": 6, + "maxLevel": 8, + "i18n": { + "en": { + "nodeName": "Caloris", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb4175156700663c8376", + "slug": "nereid", + "gameRef": "SolNode84", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 32, + "i18n": { + "en": { + "nodeName": "Nereid", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb4175156700663c8377", + "slug": "naeglar", + "gameRef": "SolNode175", + "faction": "infested", + "minLevel": 30, + "maxLevel": 34, + "i18n": { + "en": { + "nodeName": "Naeglar", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb4175156700663c8378", + "slug": "ganymede", + "gameRef": "SolNode87", + "faction": "corpus", + "minLevel": 30, + "maxLevel": 35, + "i18n": { + "en": { + "nodeName": "Ganymede", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb4275156700663c837b", + "slug": "yursa", + "gameRef": "ClanNode20", + "faction": "infested", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Yursa", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb4275156700663c837c", + "slug": "phlegyas", + "gameRef": "SolNode708", + "faction": "infested", + "minLevel": 13, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Phlegyas", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "62d2eb4275156700663c837d", + "slug": "r_9_cloud", + "gameRef": "CrewBattleNode555", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "R-9 Cloud", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb4375156700663c837e", + "slug": "orias", + "gameRef": "SolNode217", + "faction": "corpus", + "minLevel": 20, + "maxLevel": 22, + "i18n": { + "en": { + "nodeName": "Orias", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb4375156700663c837f", + "slug": "charybdis", + "gameRef": "SolNode196", + "faction": "grineer", + "minLevel": 34, + "maxLevel": 38, + "i18n": { + "en": { + "nodeName": "Charybdis", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb4375156700663c8380", + "slug": "roche", + "gameRef": "SettlementNode1", + "faction": "corpus", + "minLevel": 10, + "maxLevel": 12, + "i18n": { + "en": { + "nodeName": "Roche", + "systemName": "Phobos", + "icon": "locations/images/phobos.d04228f826fc4860a8d17540a9244dbc.png", + "thumb": "locations/images/thumbs/phobos.d04228f826fc4860a8d17540a9244dbc.128x128.png" + } + } + }, + { + "id": "62d2eb4375156700663c8381", + "slug": "pandora", + "gameRef": "SolNode906", + "faction": "grineer", + "minLevel": 21, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Pandora", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb4375156700663c8382", + "slug": "zeipel", + "gameRef": "SolNode307", + "faction": "corpus", + "minLevel": 25, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Zeipel", + "systemName": "Lua", + "icon": "locations/images/lua.2950e989359a62ff9f82527edefdc895.png", + "thumb": "locations/images/thumbs/lua.2950e989359a62ff9f82527edefdc895.128x128.png" + } + } + }, + { + "id": "62d2eb4475156700663c8384", + "slug": "elion", + "gameRef": "SolNode12", + "faction": "grineer", + "minLevel": 7, + "maxLevel": 9, + "i18n": { + "en": { + "nodeName": "Elion", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb4475156700663c8385", + "slug": "cameria", + "gameRef": "ClanNode5", + "faction": "infested", + "minLevel": 20, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Cameria", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb4575156700663c8386", + "slug": "sao", + "gameRef": "SolNode57", + "faction": "corpus", + "minLevel": 29, + "maxLevel": 31, + "i18n": { + "en": { + "nodeName": "Sao", + "systemName": "Neptune", + "icon": "locations/images/neptune.9a1714643cc377be91e87862454e34bf.png", + "thumb": "locations/images/thumbs/neptune.9a1714643cc377be91e87862454e34bf.128x128.png" + } + } + }, + { + "id": "62d2eb4575156700663c8387", + "slug": "hades", + "gameRef": "SolNode51", + "faction": "corpus", + "minLevel": 35, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Hades", + "systemName": "Pluto", + "icon": "locations/images/pluto.59b657435d72516e29e57b7900cd3b19.png", + "thumb": "locations/images/thumbs/pluto.59b657435d72516e29e57b7900cd3b19.128x128.png" + } + } + }, + { + "id": "62d2eb4575156700663c8388", + "slug": "sinai", + "gameRef": "ClanNode4", + "faction": "infested", + "minLevel": 20, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Sinai", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb4875156700663c8393", + "slug": "valefor", + "gameRef": "SolNode216", + "faction": "corpus", + "minLevel": 18, + "maxLevel": 23, + "i18n": { + "en": { + "nodeName": "Valefor", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb4875156700663c8395", + "slug": "desdemona", + "gameRef": "SolNode98", + "faction": "grineer", + "minLevel": 26, + "maxLevel": 28, + "i18n": { + "en": { + "nodeName": "Desdemona", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb4975156700663c8397", + "slug": "tolstoj", + "gameRef": "SolNode108", + "faction": "grineer", + "minLevel": 8, + "maxLevel": 10, + "i18n": { + "en": { + "nodeName": "Tolstoj", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb4975156700663c8399", + "slug": "kala_azar", + "gameRef": "SolNode164", + "faction": "infested", + "minLevel": 30, + "maxLevel": 40, + "i18n": { + "en": { + "nodeName": "Kala-azar", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "62d2eb4a75156700663c839b", + "slug": "nsu_grid", + "gameRef": "CrewBattleNode550", + "faction": "unknown", + "i18n": { + "en": { + "nodeName": "Nsu Grid", + "systemName": "Veil", + "icon": "locations/images/veil.9f77e846653b45a852918b20d2d32e03.png", + "thumb": "locations/images/thumbs/veil.9f77e846653b45a852918b20d2d32e03.128x128.png" + } + } + }, + { + "id": "62d2eb4a75156700663c839d", + "slug": "dakata", + "gameRef": "SolNode746", + "faction": "grineer", + "minLevel": 28, + "maxLevel": 30, + "i18n": { + "en": { + "nodeName": "Dakata", + "systemName": "Kuva Fortress", + "icon": "locations/images/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.png", + "thumb": "locations/images/thumbs/kuva_fortress.71c6995e78069aa1fc63ad40263065c3.128x128.png" + } + } + }, + { + "id": "62d2eb4b75156700663c839f", + "slug": "ophelia", + "gameRef": "SolNode69", + "faction": "grineer", + "minLevel": 24, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Ophelia", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb4b75156700663c83a1", + "slug": "umbriel", + "gameRef": "SolNode64", + "faction": "grineer", + "minLevel": 24, + "maxLevel": 29, + "i18n": { + "en": { + "nodeName": "Umbriel", + "systemName": "Uranus", + "icon": "locations/images/uranus.fe9767706b17740e867b703ae3cfd89d.png", + "thumb": "locations/images/thumbs/uranus.fe9767706b17740e867b703ae3cfd89d.128x128.png" + } + } + }, + { + "id": "62d2eb4e75156700663c83ab", + "slug": "mantle", + "gameRef": "SolNode63", + "faction": "grineer", + "minLevel": 2, + "maxLevel": 4, + "i18n": { + "en": { + "nodeName": "Mantle", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb4e75156700663c83ac", + "slug": "ares", + "gameRef": "SolNode113", + "faction": "grineer", + "minLevel": 9, + "maxLevel": 11, + "i18n": { + "en": { + "nodeName": "Ares", + "systemName": "Mars", + "icon": "locations/images/mars.314b4b1dd7efd923b28d0413915e1b4e.png", + "thumb": "locations/images/thumbs/mars.314b4b1dd7efd923b28d0413915e1b4e.128x128.png" + } + } + }, + { + "id": "62d2eb4e75156700663c83ad", + "slug": "gaia", + "gameRef": "SolNode85", + "faction": "grineer", + "minLevel": 1, + "maxLevel": 6, + "i18n": { + "en": { + "nodeName": "Gaia", + "systemName": "Earth", + "icon": "locations/images/earth.d8f57553e5e9f5aa193463ded490159c.png", + "thumb": "locations/images/thumbs/earth.d8f57553e5e9f5aa193463ded490159c.128x128.png" + } + } + }, + { + "id": "62d2eb4e75156700663c83ae", + "slug": "yam", + "gameRef": "SolNode199", + "faction": "grineer", + "minLevel": 60, + "maxLevel": 60, + "i18n": { + "en": { + "nodeName": "Yam", + "systemName": "Sedna", + "icon": "locations/images/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.png", + "thumb": "locations/images/thumbs/sedna.8c77b332a2c4e0d07a03c66cc2b1290e.128x128.png" + } + } + }, + { + "id": "62d2eb4f75156700663c83af", + "slug": "the_greenway", + "gameRef": "SolNode235", + "faction": "grineer", + "minLevel": 50, + "maxLevel": 55, + "i18n": { + "en": { + "nodeName": "The Greenway", + "systemName": "Zariman", + "icon": "locations/images/zariman.092efa88f59e399d90399fcb9169bce0.png", + "thumb": "locations/images/thumbs/zariman.092efa88f59e399d90399fcb9169bce0.128x128.png" + } + } + }, + { + "id": "62d2eb4f75156700663c83b0", + "slug": "tethys", + "gameRef": "SolNode32", + "faction": "grineer", + "minLevel": 24, + "maxLevel": 26, + "i18n": { + "en": { + "nodeName": "Tethys", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb4f75156700663c83b1", + "slug": "helene", + "gameRef": "SolNode42", + "faction": "grineer", + "minLevel": 21, + "maxLevel": 26, + "i18n": { + "en": { + "nodeName": "Helene", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb4f75156700663c83b2", + "slug": "odin", + "gameRef": "SolNode224", + "faction": "grineer", + "minLevel": 6, + "maxLevel": 11, + "i18n": { + "en": { + "nodeName": "Odin", + "systemName": "Mercury", + "icon": "locations/images/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.png", + "thumb": "locations/images/thumbs/mercury.753d39e11cf2cf6d5b1ffe5727e132ca.128x128.png" + } + } + }, + { + "id": "62d2eb5075156700663c83b5", + "slug": "numa", + "gameRef": "SolNode50", + "faction": "grineer", + "minLevel": 22, + "maxLevel": 24, + "i18n": { + "en": { + "nodeName": "Numa", + "systemName": "Saturn", + "icon": "locations/images/saturn.483c5d0ea8c11e58cb80cae151bcffdf.png", + "thumb": "locations/images/thumbs/saturn.483c5d0ea8c11e58cb80cae151bcffdf.128x128.png" + } + } + }, + { + "id": "62d2eb5275156700663c83bd", + "slug": "ananke", + "gameRef": "SolNode73", + "faction": "corpus", + "minLevel": 16, + "maxLevel": 18, + "i18n": { + "en": { + "nodeName": "Ananke", + "systemName": "Jupiter", + "icon": "locations/images/jupiter.1be73824b2873e1a8c1a7006aa555d15.png", + "thumb": "locations/images/thumbs/jupiter.1be73824b2873e1a8c1a7006aa555d15.128x128.png" + } + } + }, + { + "id": "62d2eb6875156700663c8418", + "slug": "cholistan", + "gameRef": "ClanNode7", + "faction": "infested", + "minLevel": 23, + "maxLevel": 33, + "i18n": { + "en": { + "nodeName": "Cholistan", + "systemName": "Europa", + "icon": "locations/images/europa.0cd2b497c0c7755e60460955613521e3.png", + "thumb": "locations/images/thumbs/europa.0cd2b497c0c7755e60460955613521e3.128x128.png" + } + } + }, + { + "id": "62d2eb6e75156700663c8431", + "slug": "zabala", + "gameRef": "ClanNode19", + "faction": "infested", + "minLevel": 35, + "maxLevel": 45, + "i18n": { + "en": { + "nodeName": "Zabala", + "systemName": "Eris", + "icon": "locations/images/eris.852be24fc6be11c48d8387dbcbc29ab0.png", + "thumb": "locations/images/thumbs/eris.852be24fc6be11c48d8387dbcbc29ab0.128x128.png" + } + } + }, + { + "id": "652f40277775256d92a9e3e6", + "slug": "the_duviri_experience", + "gameRef": "SolNode236", + "faction": "ropalolyst", + "minLevel": 20, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "The Duviri Experience", + "systemName": "Duviri", + "icon": "locations/images/duviri.eed500948d3b9223390c016d94d352b4.png", + "thumb": "locations/images/thumbs/duviri.eed500948d3b9223390c016d94d352b4.128x128.png" + } + } + }, + { + "id": "652f40277775256d92a9e3e7", + "slug": "the_lone_story", + "gameRef": "SolNode237", + "faction": "ropalolyst", + "minLevel": 20, + "maxLevel": 20, + "i18n": { + "en": { + "nodeName": "The Lone Story", + "systemName": "Duviri", + "icon": "locations/images/duviri.eed500948d3b9223390c016d94d352b4.png", + "thumb": "locations/images/thumbs/duviri.eed500948d3b9223390c016d94d352b4.128x128.png" + } + } + }, + { + "id": "652f40277775256d92a9e3e8", + "slug": "the_circuit", + "gameRef": "SolNode238", + "faction": "corrupted", + "minLevel": 35, + "maxLevel": 55, + "i18n": { + "en": { + "nodeName": "The Circuit", + "systemName": "Duviri", + "icon": "locations/images/duviri.eed500948d3b9223390c016d94d352b4.png", + "thumb": "locations/images/thumbs/duviri.eed500948d3b9223390c016d94d352b4.128x128.png" + } + } + }, + { + "id": "652f40457775256d92a9e3ea", + "slug": "recall", + "gameRef": "", + "i18n": { + "en": { + "nodeName": "Recall", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "657f0f408820fb8f3c5f45b9", + "slug": "effervo", + "gameRef": "SolNode715", + "faction": "murmur", + "minLevel": 55, + "maxLevel": 60, + "i18n": { + "en": { + "nodeName": "Effervo", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "657f0f408820fb8f3c5f45ba", + "slug": "nex", + "gameRef": "SolNode716", + "faction": "murmur", + "minLevel": 55, + "maxLevel": 60, + "i18n": { + "en": { + "nodeName": "Nex", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "657f0f418820fb8f3c5f45bb", + "slug": "persto", + "gameRef": "SolNode717", + "faction": "murmur", + "minLevel": 55, + "maxLevel": 60, + "i18n": { + "en": { + "nodeName": "Persto", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "657f0f418820fb8f3c5f45bc", + "slug": "cambire", + "gameRef": "SolNode718", + "faction": "murmur", + "minLevel": 55, + "maxLevel": 60, + "i18n": { + "en": { + "nodeName": "Cambire", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "657f0f418820fb8f3c5f45bd", + "slug": "munio", + "gameRef": "SolNode719", + "faction": "murmur", + "minLevel": 55, + "maxLevel": 60, + "i18n": { + "en": { + "nodeName": "Munio", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "660495e5dbdd5c1673781d9c", + "slug": "armatus", + "gameRef": "SolNode721", + "faction": "murmur", + "minLevel": 55, + "maxLevel": 60, + "i18n": { + "en": { + "nodeName": "Armatus", + "systemName": "Deimos", + "icon": "locations/images/deimos.ee362b00bd1f15c0d62b85d6547b0c30.png", + "thumb": "locations/images/thumbs/deimos.ee362b00bd1f15c0d62b85d6547b0c30.128x128.png" + } + } + }, + { + "id": "6676c3fd07a5007fadf3ec64", + "slug": "brutus", + "gameRef": "", + "faction": "grineer", + "i18n": { + "en": { + "nodeName": "Brutus", + "systemName": "Uranus", + "icon": "locations/images/uranus.e7954967007884ce3ed4ed3e961bdd03.webp", + "thumb": "locations/images/thumbs/uranus.e7954967007884ce3ed4ed3e961bdd03.128x128.webp" + } + } + }, + { + "id": "66fd61893a826eccf651cd47", + "slug": "sayas_visions", + "gameRef": "SolNode451", + "faction": "infested", + "minLevel": 5, + "maxLevel": 15, + "i18n": { + "en": { + "nodeName": "Saya's Visions", + "systemName": "Earth", + "icon": "locations/images/earth.bde632cc98705be2e58be33d1da13243.webp", + "thumb": "locations/images/thumbs/earth.bde632cc98705be2e58be33d1da13243.128x128.webp" + } + } + }, + { + "id": "675c419e7b18977f6e6453db", + "slug": "legacyte_harvest", + "gameRef": "SolNode850", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Legacyte Harvest", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "675c419f7b18977f6e6453dc", + "slug": "hell_scrub_scaldra", + "gameRef": "SolNode851", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Hell-Scrub: Scaldra", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "675c419f7b18977f6e6453dd", + "slug": "hell_scrub_techrot", + "gameRef": "SolNode852", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Hell-Scrub: Techrot", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "675c41a17b18977f6e6453de", + "slug": "exterminate_scaldra", + "gameRef": "SolNode853", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Exterminate: Scaldra", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "675c41a17b18977f6e6453df", + "slug": "exterminate_techrot", + "gameRef": "SolNode854", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Exterminate: Techrot", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "675c41a27b18977f6e6453e0", + "slug": "faceoff_squad_vs_squad", + "gameRef": "SolNode855", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Faceoff: Squad VS Squad", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "675c41a37b18977f6e6453e1", + "slug": "faceoff_single_squad", + "gameRef": "SolNode857", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Faceoff: Single Squad", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "675c41a47b18977f6e6453e2", + "slug": "assassinate_h_09_tank", + "gameRef": "SolNode856", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Assassinate: H-09 Tank", + "systemName": "H├Âllvania", + "icon": "locations/unknown.png", + "thumb": "locations/unknown.thumb.png" + } + } + }, + { + "id": "67db5d4e9cec3e52e6252242", + "slug": "solstice_square", + "gameRef": "SolNode858", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Solstice Square", + "systemName": "H├Âllvania", + "icon": "items/images/en/solstice_square.3e567fd52d292917b158be0273dab8fd.webp", + "thumb": "items/images/en/thumbs/solstice_square.3e567fd52d292917b158be0273dab8fd.128x128.webp" + } + } + }, + { + "id": "67db5d4f9cec3e52e6252243", + "slug": "ph_lich_bounty_mission_name", + "gameRef": "SolNode859", + "faction": "unknown", + "minLevel": 65, + "maxLevel": 70, + "i18n": { + "en": { + "nodeName": "Antivirus Bounty", + "systemName": "H├Âllvania", + "icon": "items/images/en/ph_lich_bounty_mission_name.3e567fd52d292917b158be0273dab8fd.webp", + "thumb": "items/images/en/thumbs/ph_lich_bounty_mission_name.3e567fd52d292917b158be0273dab8fd.128x128.webp" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/mission.json b/src/market/models/fixtures/mission.json new file mode 100644 index 0000000..5acea08 --- /dev/null +++ b/src/market/models/fixtures/mission.json @@ -0,0 +1,1542 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "62d2f049751567007abb1956", + "slug": "level_50_70_orb_vallis_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 50 - 70 Orb Vallis Bounty", + "icon": "missions/images/level_50_70_orb_vallis_bounty.3401f96abd2236fdb1a6f745b12d597d.png", + "thumb": "missions/images/thumbs/level_50_70_orb_vallis_bounty.3401f96abd2236fdb1a6f745b12d597d.128x128.png" + } + } + }, + { + "id": "62d2f04a751567007abb1957", + "slug": "defection", + "gameRef": "", + "i18n": { + "en": { + "name": "Defection", + "icon": "missions/images/defection.5c261aae5449cd14a79b92d03513913d.png", + "thumb": "missions/images/thumbs/defection.5c261aae5449cd14a79b92d03513913d.128x128.png" + } + } + }, + { + "id": "62d2f04a751567007abb1958", + "slug": "level_5_15_cambion_drift_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 5 - 15 Cambion Drift Bounty", + "icon": "missions/images/level_5_15_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.png", + "thumb": "missions/images/thumbs/level_5_15_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.128x128.png" + } + } + }, + { + "id": "62d2f052751567007abb1959", + "slug": "void_storm_(saturn)", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Storm (Saturn)", + "icon": "missions/images/void_storm_(saturn).45461f611855402672a61e0d874c6a9f.png", + "thumb": "missions/images/thumbs/void_storm_(saturn).45461f611855402672a61e0d874c6a9f.128x128.png" + } + } + }, + { + "id": "62d2f053751567007abb195a", + "slug": "level_15_25_cambion_drift_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 15 - 25 Cambion Drift Bounty", + "icon": "missions/images/level_15_25_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.png", + "thumb": "missions/images/thumbs/level_15_25_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.128x128.png" + } + } + }, + { + "id": "62d2f05c751567007abb195b", + "slug": "razorback", + "gameRef": "", + "i18n": { + "en": { + "name": "Razorback", + "icon": "missions/images/razorback.58fc969d0d9521ecd85558b606f848ab.png", + "thumb": "missions/images/thumbs/razorback.58fc969d0d9521ecd85558b606f848ab.128x128.png" + } + } + }, + { + "id": "62d2f05d751567007abb195c", + "slug": "caches", + "gameRef": "", + "i18n": { + "en": { + "name": "Caches", + "icon": "missions/images/caches.1a87e3227f22643addf6919720ed6365.png", + "thumb": "missions/images/thumbs/caches.1a87e3227f22643addf6919720ed6365.128x128.png" + } + } + }, + { + "id": "62d2f05d751567007abb195d", + "slug": "level_40_60_profit_taker_phase_2", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 60 Profit-Taker - Phase 2", + "icon": "missions/images/level_40_60_profit_taker_phase_2.6e7f2f2a2b290f59aea9f19cca008ccb.png", + "thumb": "missions/images/thumbs/level_40_60_profit_taker_phase_2.6e7f2f2a2b290f59aea9f19cca008ccb.128x128.png" + } + } + }, + { + "id": "62d2f05d751567007abb195e", + "slug": "level_5_15_orb_vallis_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 5 - 15 Orb Vallis Bounty", + "icon": "missions/images/level_5_15_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/level_5_15_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f063751567007abb195f", + "slug": "level_10_30_cetus_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 10 - 30 Cetus Bounty", + "icon": "missions/images/level_10_30_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_10_30_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f063751567007abb1960", + "slug": "level_30_50_cetus_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 30 - 50 Cetus Bounty", + "icon": "missions/images/level_30_50_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_30_50_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f063751567007abb1961", + "slug": "capture", + "gameRef": "", + "i18n": { + "en": { + "name": "Capture", + "icon": "missions/images/capture.2159242c089e7672367553f7def531b3.png", + "thumb": "missions/images/thumbs/capture.2159242c089e7672367553f7def531b3.128x128.png" + } + } + }, + { + "id": "62d2f064751567007abb1962", + "slug": "level_25_30_cambion_drift_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 25 - 30 Cambion Drift Bounty", + "icon": "missions/images/level_25_30_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.png", + "thumb": "missions/images/thumbs/level_25_30_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.128x128.png" + } + } + }, + { + "id": "62d2f064751567007abb1963", + "slug": "extended_granum_void", + "gameRef": "", + "i18n": { + "en": { + "name": "Extended Granum Void", + "icon": "missions/images/extended_granum_void.49ae036e62bc5efd9c18a98684263af4.png", + "thumb": "missions/images/thumbs/extended_granum_void.49ae036e62bc5efd9c18a98684263af4.128x128.png" + } + } + }, + { + "id": "62d2f065751567007abb1964", + "slug": "rescue", + "gameRef": "", + "i18n": { + "en": { + "name": "Rescue", + "icon": "missions/images/rescue.41a3494bcc9e128e6f538f096115f513.png", + "thumb": "missions/images/thumbs/rescue.41a3494bcc9e128e6f538f096115f513.128x128.png" + } + } + }, + { + "id": "62d2f065751567007abb1965", + "slug": "level_40_50_isolation_vault", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 50 Isolation Vault", + "icon": "missions/images/level_40_50_isolation_vault.d437c8b16bf417d5c271c9f249fef139.png", + "thumb": "missions/images/thumbs/level_40_50_isolation_vault.d437c8b16bf417d5c271c9f249fef139.128x128.png" + } + } + }, + { + "id": "62d2f098751567007abb1979", + "slug": "level_20_40_cetus_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 20 - 40 Cetus Bounty", + "icon": "missions/images/level_20_40_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_20_40_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f098751567007abb197a", + "slug": "sunkiller", + "gameRef": "", + "i18n": { + "en": { + "name": "Sunkiller", + "icon": "missions/images/sunkiller.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/sunkiller.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f098751567007abb197b", + "slug": "void_storm_(earth)", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Storm (Earth)", + "icon": "missions/images/void_storm_(earth).45461f611855402672a61e0d874c6a9f.png", + "thumb": "missions/images/thumbs/void_storm_(earth).45461f611855402672a61e0d874c6a9f.128x128.png" + } + } + }, + { + "id": "62d2f099751567007abb197d", + "slug": "excavation", + "gameRef": "", + "i18n": { + "en": { + "name": "Excavation", + "icon": "missions/images/excavation.91c5df7bad3d061ad5254cf13db6a24c.png", + "thumb": "missions/images/thumbs/excavation.91c5df7bad3d061ad5254cf13db6a24c.128x128.png" + } + } + }, + { + "id": "62d2f099751567007abb197e", + "slug": "family_reunion", + "gameRef": "", + "i18n": { + "en": { + "name": "Family Reunion", + "icon": "missions/images/family_reunion.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/family_reunion.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f09a751567007abb1983", + "slug": "level_50_70_cetus_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 50 - 70 Cetus Bounty", + "icon": "missions/images/level_50_70_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_50_70_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f0f3751567007abb1991", + "slug": "sabotage", + "gameRef": "", + "i18n": { + "en": { + "name": "Sabotage", + "icon": "missions/images/sabotage.69b13228d8cd2728a00537aadd4b946b.png", + "thumb": "missions/images/thumbs/sabotage.69b13228d8cd2728a00537aadd4b946b.128x128.png" + } + } + }, + { + "id": "62d2f0f3751567007abb1992", + "slug": "level_20_40_orb_vallis_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 20 - 40 Orb Vallis Bounty", + "icon": "missions/images/level_20_40_orb_vallis_bounty.3401f96abd2236fdb1a6f745b12d597d.png", + "thumb": "missions/images/thumbs/level_20_40_orb_vallis_bounty.3401f96abd2236fdb1a6f745b12d597d.128x128.png" + } + } + }, + { + "id": "62d2f0f3751567007abb1993", + "slug": "arena", + "gameRef": "", + "i18n": { + "en": { + "name": "Arena", + "icon": "missions/images/arena.8ea2168b2dbe44bf3531f9433d9c320d.png", + "thumb": "missions/images/thumbs/arena.8ea2168b2dbe44bf3531f9433d9c320d.128x128.png" + } + } + }, + { + "id": "62d2f0f3751567007abb1994", + "slug": "operation_orphix_venom", + "gameRef": "", + "i18n": { + "en": { + "name": "Operation: Orphix Venom", + "icon": "missions/images/operation_orphix_venom.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/operation_orphix_venom.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f0f4751567007abb1995", + "slug": "level_40_60_profit_taker_phase_1", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 60 Profit-Taker - Phase 1", + "icon": "missions/images/level_40_60_profit_taker_phase_1.6e7f2f2a2b290f59aea9f19cca008ccb.png", + "thumb": "missions/images/thumbs/level_40_60_profit_taker_phase_1.6e7f2f2a2b290f59aea9f19cca008ccb.128x128.png" + } + } + }, + { + "id": "62d2f0f4751567007abb1996", + "slug": "nightmare_granum_void", + "gameRef": "", + "i18n": { + "en": { + "name": "Nightmare Granum Void", + "icon": "missions/images/nightmare_granum_void.49ae036e62bc5efd9c18a98684263af4.png", + "thumb": "missions/images/thumbs/nightmare_granum_void.49ae036e62bc5efd9c18a98684263af4.128x128.png" + } + } + }, + { + "id": "62d2f0f4751567007abb1997", + "slug": "void_armageddon", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Armageddon", + "icon": "missions/images/void_armageddon.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/void_armageddon.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f0f4751567007abb1998", + "slug": "the_aftermath", + "gameRef": "", + "i18n": { + "en": { + "name": "The Aftermath", + "icon": "missions/images/the_aftermath.2f883fe24537bf79f49d4beb9a09dbb8.png", + "thumb": "missions/images/thumbs/the_aftermath.2f883fe24537bf79f49d4beb9a09dbb8.128x128.png" + } + } + }, + { + "id": "62d2f0f4751567007abb1999", + "slug": "level_40_60_cetus_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 60 Cetus Bounty", + "icon": "missions/images/level_40_60_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_40_60_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f0f5751567007abb199a", + "slug": "level_90_95_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 90 - 95 Zariman Bounty", + "icon": "missions/images/level_90_95_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.png", + "thumb": "missions/images/thumbs/level_90_95_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.128x128.png" + } + } + }, + { + "id": "62d2f0f5751567007abb199b", + "slug": "disruption", + "gameRef": "", + "i18n": { + "en": { + "name": "Disruption", + "icon": "missions/images/disruption.9a9741172b625b659aa630fe0483d7a6.png", + "thumb": "missions/images/thumbs/disruption.9a9741172b625b659aa630fe0483d7a6.128x128.png" + } + } + }, + { + "id": "62d2f0f6751567007abb199c", + "slug": "infested_salvage", + "gameRef": "", + "i18n": { + "en": { + "name": "Infested Salvage", + "icon": "missions/images/infested_salvage.7a16d2c4d46319601706469df4ac00ab.png", + "thumb": "missions/images/thumbs/infested_salvage.7a16d2c4d46319601706469df4ac00ab.128x128.png" + } + } + }, + { + "id": "62d2f0f6751567007abb199d", + "slug": "level_50_60_arcana_isolation_vault", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 50 - 60 Arcana Isolation Vault", + "icon": "missions/images/level_50_60_arcana_isolation_vault.d437c8b16bf417d5c271c9f249fef139.png", + "thumb": "missions/images/thumbs/level_50_60_arcana_isolation_vault.d437c8b16bf417d5c271c9f249fef139.128x128.png" + } + } + }, + { + "id": "62d2f0f6751567007abb199e", + "slug": "level_50_60_isolation_vault", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 50 - 60 Isolation Vault", + "icon": "missions/images/level_50_60_isolation_vault.d437c8b16bf417d5c271c9f249fef139.png", + "thumb": "missions/images/thumbs/level_50_60_isolation_vault.d437c8b16bf417d5c271c9f249fef139.128x128.png" + } + } + }, + { + "id": "62d2f0f6751567007abb199f", + "slug": "derelict_vault", + "gameRef": "", + "i18n": { + "en": { + "name": "Derelict Vault", + "icon": "missions/images/derelict_vault.503f1b78936f3c8c8436a26f002c317c.png", + "thumb": "missions/images/thumbs/derelict_vault.503f1b78936f3c8c8436a26f002c317c.128x128.png" + } + } + }, + { + "id": "62d2f0f7751567007abb19a0", + "slug": "level_30_40_cambion_drift_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 30 - 40 Cambion Drift Bounty", + "icon": "missions/images/level_30_40_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.png", + "thumb": "missions/images/thumbs/level_30_40_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.128x128.png" + } + } + }, + { + "id": "62d2f0f7751567007abb19a1", + "slug": "level_100_100_orb_vallis_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 100 - 100 Orb Vallis Bounty", + "icon": "missions/images/level_100_100_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/level_100_100_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f0f7751567007abb19a2", + "slug": "kuva_flood", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Flood", + "icon": "missions/images/kuva_flood.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/kuva_flood.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f0f7751567007abb19a3", + "slug": "hallowed_flame_endurance_caches", + "gameRef": "", + "i18n": { + "en": { + "name": "Hallowed Flame Endurance Caches", + "icon": "missions/images/hallowed_flame_endurance_caches.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/hallowed_flame_endurance_caches.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f049751567007abb1955", + "slug": "another_betrayer", + "gameRef": "", + "i18n": { + "en": { + "name": "Another Betrayer", + "icon": "missions/images/another_betrayer.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/another_betrayer.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f065751567007abb1966", + "slug": "level_30_50_orb_vallis_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 30 - 50 Orb Vallis Bounty", + "icon": "missions/images/level_30_50_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/level_30_50_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f065751567007abb1967", + "slug": "void_flood", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Flood", + "icon": "missions/images/void_flood.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/void_flood.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f065751567007abb1968", + "slug": "granum_void", + "gameRef": "", + "i18n": { + "en": { + "name": "Granum Void", + "icon": "missions/images/granum_void.49ae036e62bc5efd9c18a98684263af4.png", + "thumb": "missions/images/thumbs/granum_void.49ae036e62bc5efd9c18a98684263af4.128x128.png" + } + } + }, + { + "id": "62d2f071751567007abb1969", + "slug": "level_60_65_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 60 - 65 Zariman Bounty", + "icon": "missions/images/level_60_65_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.png", + "thumb": "missions/images/thumbs/level_60_65_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.128x128.png" + } + } + }, + { + "id": "62d2f071751567007abb196a", + "slug": "level_40_50_arcana_isolation_vault", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 50 Arcana Isolation Vault", + "icon": "missions/images/level_40_50_arcana_isolation_vault.d437c8b16bf417d5c271c9f249fef139.png", + "thumb": "missions/images/thumbs/level_40_50_arcana_isolation_vault.d437c8b16bf417d5c271c9f249fef139.128x128.png" + } + } + }, + { + "id": "62d2f072751567007abb196b", + "slug": "level_100_100_cambion_drift_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 100 - 100 Cambion Drift Bounty", + "icon": "missions/images/level_100_100_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.png", + "thumb": "missions/images/thumbs/level_100_100_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.128x128.png" + } + } + }, + { + "id": "62d2f072751567007abb196c", + "slug": "conclave", + "gameRef": "", + "i18n": { + "en": { + "name": "Conclave", + "icon": "missions/images/conclave.35dceb8f27c25744ba547935817e297f.png", + "thumb": "missions/images/thumbs/conclave.35dceb8f27c25744ba547935817e297f.128x128.png" + } + } + }, + { + "id": "62d2f072751567007abb196d", + "slug": "arbitrations", + "gameRef": "", + "i18n": { + "en": { + "name": "Arbitrations", + "icon": "missions/images/arbitrations.2fab747f7a89367aefac600d2a040ab7.png", + "thumb": "missions/images/thumbs/arbitrations.2fab747f7a89367aefac600d2a040ab7.128x128.png" + } + } + }, + { + "id": "62d2f072751567007abb196e", + "slug": "sortie", + "gameRef": "", + "i18n": { + "en": { + "name": "Sortie", + "icon": "missions/images/sortie.55cdcee1857994c33bb8e3d2ac36e137.png", + "thumb": "missions/images/thumbs/sortie.55cdcee1857994c33bb8e3d2ac36e137.128x128.png" + } + } + }, + { + "id": "62d2f073751567007abb196f", + "slug": "interception", + "gameRef": "", + "i18n": { + "en": { + "name": "Interception", + "icon": "missions/images/interception.970e67a985601ae6713169b96313a77f.png", + "thumb": "missions/images/thumbs/interception.970e67a985601ae6713169b96313a77f.128x128.png" + } + } + }, + { + "id": "62d2f07a751567007abb1970", + "slug": "skirmish", + "gameRef": "", + "i18n": { + "en": { + "name": "Skirmish", + "icon": "missions/images/skirmish.d62b024b95987305d41d9aae5a84ff2a.png", + "thumb": "missions/images/thumbs/skirmish.d62b024b95987305d41d9aae5a84ff2a.128x128.png" + } + } + }, + { + "id": "62d2f07a751567007abb1971", + "slug": "level_50_60_profit_taker_phase_4", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 50 - 60 Profit-Taker - Phase 4", + "icon": "missions/images/level_50_60_profit_taker_phase_4.6e7f2f2a2b290f59aea9f19cca008ccb.png", + "thumb": "missions/images/thumbs/level_50_60_profit_taker_phase_4.6e7f2f2a2b290f59aea9f19cca008ccb.128x128.png" + } + } + }, + { + "id": "62d2f07e751567007abb1972", + "slug": "table_for_two", + "gameRef": "", + "i18n": { + "en": { + "name": "Table For Two", + "icon": "missions/images/table_for_two.e0bec01371bc5050d5fe40dad3ec2d61.png", + "thumb": "missions/images/thumbs/table_for_two.e0bec01371bc5050d5fe40dad3ec2d61.128x128.png" + } + } + }, + { + "id": "62d2f07e751567007abb1973", + "slug": "nightmare_mode_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Nightmare Mode Rewards", + "icon": "missions/images/nightmare_mode_rewards.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/nightmare_mode_rewards.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f097751567007abb1974", + "slug": "recover_the_orokin_archive", + "gameRef": "", + "i18n": { + "en": { + "name": "Recover The Orokin Archive", + "icon": "missions/images/recover_the_orokin_archive.39166f9989f3be4858aa58b8bf913fdf.png", + "thumb": "missions/images/thumbs/recover_the_orokin_archive.39166f9989f3be4858aa58b8bf913fdf.128x128.png" + } + } + }, + { + "id": "62d2f097751567007abb1975", + "slug": "exterminate", + "gameRef": "", + "i18n": { + "en": { + "name": "Exterminate", + "icon": "missions/images/exterminate.031fe00db9d8ce72deca8369a6c29c48.png", + "thumb": "missions/images/thumbs/exterminate.031fe00db9d8ce72deca8369a6c29c48.128x128.png" + } + } + }, + { + "id": "62d2f097751567007abb1976", + "slug": "rush", + "gameRef": "", + "i18n": { + "en": { + "name": "Rush", + "icon": "missions/images/rush.cb12f5cf2b3e66dc77305f289c0f47e8.png", + "thumb": "missions/images/thumbs/rush.cb12f5cf2b3e66dc77305f289c0f47e8.128x128.png" + } + } + }, + { + "id": "62d2f097751567007abb1977", + "slug": "kuva_siphon", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Siphon", + "icon": "missions/images/kuva_siphon.4eacb86b56949e56f50bacd6ee136798.png", + "thumb": "missions/images/thumbs/kuva_siphon.4eacb86b56949e56f50bacd6ee136798.128x128.png" + } + } + }, + { + "id": "62d2f098751567007abb1978", + "slug": "level_15_25_ghoul_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 15 - 25 Ghoul Bounty", + "icon": "missions/images/level_15_25_ghoul_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_15_25_ghoul_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f098751567007abb197c", + "slug": "hallowed_flame_mission_caches", + "gameRef": "", + "i18n": { + "en": { + "name": "Hallowed Flame Mission Caches", + "icon": "missions/images/hallowed_flame_mission_caches.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/hallowed_flame_mission_caches.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f099751567007abb197f", + "slug": "level_110_115_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 110 - 115 Zariman Bounty", + "icon": "missions/images/level_110_115_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.png", + "thumb": "missions/images/thumbs/level_110_115_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.128x128.png" + } + } + }, + { + "id": "62d2f099751567007abb1980", + "slug": "level_40_60_profit_taker_phase_3", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 60 Profit-Taker - Phase 3", + "icon": "missions/images/level_40_60_profit_taker_phase_3.6e7f2f2a2b290f59aea9f19cca008ccb.png", + "thumb": "missions/images/thumbs/level_40_60_profit_taker_phase_3.6e7f2f2a2b290f59aea9f19cca008ccb.128x128.png" + } + } + }, + { + "id": "62d2f099751567007abb1981", + "slug": "sanctuary_onslaught", + "gameRef": "", + "i18n": { + "en": { + "name": "Sanctuary Onslaught", + "icon": "missions/images/sanctuary_onslaught.aefe673b69f9640ce47bd7274d192583.png", + "thumb": "missions/images/thumbs/sanctuary_onslaught.aefe673b69f9640ce47bd7274d192583.128x128.png" + } + } + }, + { + "id": "62d2f099751567007abb1982", + "slug": "void_cascade", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Cascade", + "icon": "missions/images/void_cascade.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/void_cascade.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f09a751567007abb1984", + "slug": "level_40_60_orb_vallis_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 60 Orb Vallis Bounty", + "icon": "missions/images/level_40_60_orb_vallis_bounty.3401f96abd2236fdb1a6f745b12d597d.png", + "thumb": "missions/images/thumbs/level_40_60_orb_vallis_bounty.3401f96abd2236fdb1a6f745b12d597d.128x128.png" + } + } + }, + { + "id": "62d2f09a751567007abb1985", + "slug": "level_30_40_arcana_isolation_vault", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 30 - 40 Arcana Isolation Vault", + "icon": "missions/images/level_30_40_arcana_isolation_vault.d437c8b16bf417d5c271c9f249fef139.png", + "thumb": "missions/images/thumbs/level_30_40_arcana_isolation_vault.d437c8b16bf417d5c271c9f249fef139.128x128.png" + } + } + }, + { + "id": "62d2f09b751567007abb1986", + "slug": "level_100_100_cetus_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 100 - 100 Cetus Bounty", + "icon": "missions/images/level_100_100_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_100_100_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f09b751567007abb1987", + "slug": "mobile_defense", + "gameRef": "", + "i18n": { + "en": { + "name": "Mobile Defense", + "icon": "missions/images/mobile_defense.e4d2f29022fa93c53569f951402f768a.png", + "thumb": "missions/images/thumbs/mobile_defense.e4d2f29022fa93c53569f951402f768a.128x128.png" + } + } + }, + { + "id": "62d2f09c751567007abb1988", + "slug": "level_5_15_cetus_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 5 - 15 Cetus Bounty", + "icon": "missions/images/level_5_15_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_5_15_cetus_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f0a2751567007abb1989", + "slug": "hot_mess", + "gameRef": "", + "i18n": { + "en": { + "name": "Hot Mess", + "icon": "missions/images/hot_mess.0684a7636e8c4a0ac5f60f0fcc18dd38.png", + "thumb": "missions/images/thumbs/hot_mess.0684a7636e8c4a0ac5f60f0fcc18dd38.128x128.png" + } + } + }, + { + "id": "62d2f0a2751567007abb198a", + "slug": "times_up", + "gameRef": "", + "i18n": { + "en": { + "name": "Time'S Up", + "icon": "missions/images/times_up.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/times_up.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f0a2751567007abb198b", + "slug": "defense", + "gameRef": "", + "i18n": { + "en": { + "name": "Defense", + "icon": "missions/images/defense.2b71ffcffdbdd082b41aaa77945905ff.png", + "thumb": "missions/images/thumbs/defense.2b71ffcffdbdd082b41aaa77945905ff.128x128.png" + } + } + }, + { + "id": "62d2f0cb751567007abb198c", + "slug": "pursuit", + "gameRef": "", + "i18n": { + "en": { + "name": "Pursuit", + "icon": "missions/images/pursuit.89abfc217773ad8dda28d1a2efa0811f.png", + "thumb": "missions/images/thumbs/pursuit.89abfc217773ad8dda28d1a2efa0811f.128x128.png" + } + } + }, + { + "id": "62d2f0cb751567007abb198d", + "slug": "survival", + "gameRef": "", + "i18n": { + "en": { + "name": "Survival", + "icon": "missions/images/survival.2d9b1ae89a8f5f4821c144b054ab5641.png", + "thumb": "missions/images/thumbs/survival.2d9b1ae89a8f5f4821c144b054ab5641.128x128.png" + } + } + }, + { + "id": "62d2f0cb751567007abb198e", + "slug": "assassination", + "gameRef": "", + "i18n": { + "en": { + "name": "Assassination", + "icon": "missions/images/assassination.35548bb512328ddf6a6f66fb6a4119de.png", + "thumb": "missions/images/thumbs/assassination.35548bb512328ddf6a6f66fb6a4119de.128x128.png" + } + } + }, + { + "id": "62d2f0cb751567007abb198f", + "slug": "level_10_30_orb_vallis_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 10 - 30 Orb Vallis Bounty", + "icon": "missions/images/level_10_30_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "missions/images/thumbs/level_10_30_orb_vallis_bounty.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f0cb751567007abb1990", + "slug": "void_storm_(venus)", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Storm (Venus)", + "icon": "missions/images/void_storm_(venus).45461f611855402672a61e0d874c6a9f.png", + "thumb": "missions/images/thumbs/void_storm_(venus).45461f611855402672a61e0d874c6a9f.128x128.png" + } + } + }, + { + "id": "62d2f0f7751567007abb19a4", + "slug": "level_70_75_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 70 - 75 Zariman Bounty", + "icon": "missions/images/level_70_75_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.png", + "thumb": "missions/images/thumbs/level_70_75_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.128x128.png" + } + } + }, + { + "id": "62d2f0f8751567007abb19a5", + "slug": "level_40_60_cambion_drift_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 60 Cambion Drift Bounty", + "icon": "missions/images/level_40_60_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.png", + "thumb": "missions/images/thumbs/level_40_60_cambion_drift_bounty.56855ab6b3240ad3fd0c6de562112dbe.128x128.png" + } + } + }, + { + "id": "62d2f0f8751567007abb19a6", + "slug": "spy", + "gameRef": "", + "i18n": { + "en": { + "name": "Spy", + "icon": "missions/images/spy.029fbcae5b8a117c45323f240e158cc9.png", + "thumb": "missions/images/thumbs/spy.029fbcae5b8a117c45323f240e158cc9.128x128.png" + } + } + }, + { + "id": "62d2f0f9751567007abb19a7", + "slug": "level_15_25_plague_star", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 15 - 25 Plague Star", + "icon": "missions/images/level_15_25_plague_star.8f5c4ae11f7a909d920d3f3142a49305.png", + "thumb": "missions/images/thumbs/level_15_25_plague_star.8f5c4ae11f7a909d920d3f3142a49305.128x128.png" + } + } + }, + { + "id": "62d2f0f9751567007abb19a8", + "slug": "level_50_55_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 50 - 55 Zariman Bounty", + "icon": "missions/images/level_50_55_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.png", + "thumb": "missions/images/thumbs/level_50_55_zariman_bounty.dcf8b1dc8c3a28e958399b310bc09029.128x128.png" + } + } + }, + { + "id": "62d2f0f9751567007abb19a9", + "slug": "level_40_50_ghoul_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 40 - 50 Ghoul Bounty", + "icon": "missions/images/level_40_50_ghoul_bounty.a9370495b1ecadfc870afe69beaae28b.png", + "thumb": "missions/images/thumbs/level_40_50_ghoul_bounty.a9370495b1ecadfc870afe69beaae28b.128x128.png" + } + } + }, + { + "id": "62d2f0fa751567007abb19aa", + "slug": "level_30_40_isolation_vault", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 30 - 40 Isolation Vault", + "icon": "missions/images/level_30_40_isolation_vault.d437c8b16bf417d5c271c9f249fef139.png", + "thumb": "missions/images/thumbs/level_30_40_isolation_vault.d437c8b16bf417d5c271c9f249fef139.128x128.png" + } + } + }, + { + "id": "62d2f0fa751567007abb19ab", + "slug": "fomorian_sabotage", + "gameRef": "", + "i18n": { + "en": { + "name": "Fomorian Sabotage", + "icon": "missions/images/fomorian_sabotage.69b13228d8cd2728a00537aadd4b946b.png", + "thumb": "missions/images/thumbs/fomorian_sabotage.69b13228d8cd2728a00537aadd4b946b.128x128.png" + } + } + }, + { + "id": "644b00457ec1900044b9773f", + "slug": "endless_tier_3", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 3", + "icon": "missions/images/endless_tier_3.cd234b4702fe6e06fedef67b321a6a11.png", + "thumb": "missions/images/thumbs/endless_tier_3.cd234b4702fe6e06fedef67b321a6a11.128x128.png" + } + } + }, + { + "id": "644b00457ec1900044b97740", + "slug": "endless_tier_7", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 7", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "644b00457ec1900044b97741", + "slug": "endless_tier_2", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 2", + "icon": "missions/images/endless_tier_2.6af3bcd7a4d02f30a1112a9c8d33f6a3.png", + "thumb": "missions/images/thumbs/endless_tier_2.6af3bcd7a4d02f30a1112a9c8d33f6a3.128x128.png" + } + } + }, + { + "id": "644b00457ec1900044b97742", + "slug": "endless_tier_6", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 6", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "644b00457ec1900044b97743", + "slug": "endless_tier_4", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 4", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "644b00457ec1900044b97744", + "slug": "endless_tier_8", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 8", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "644b00457ec1900044b97745", + "slug": "endless_tier_9", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 9", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "644b00467ec1900044b97746", + "slug": "endless_tier_1", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Tier 1", + "icon": "missions/images/endless_tier_1.6af3bcd7a4d02f30a1112a9c8d33f6a3.png", + "thumb": "missions/images/thumbs/endless_tier_1.6af3bcd7a4d02f30a1112a9c8d33f6a3.128x128.png" + } + } + }, + { + "id": "652f40447775256d92a9e3e9", + "slug": "endless_repeated_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Endless: Repeated Rewards", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "652f40467775256d92a9e3eb", + "slug": "ten_zero", + "gameRef": "", + "i18n": { + "en": { + "name": "Ten-Zero", + "icon": "missions/images/ten_zero.43092210e01b55c81d4df16a6f4f5d1c.png", + "thumb": "missions/images/thumbs/ten_zero.43092210e01b55c81d4df16a6f4f5d1c.128x128.png" + } + } + }, + { + "id": "657f0f4b8820fb8f3c5f45be", + "slug": "mirror_defense", + "gameRef": "", + "i18n": { + "en": { + "name": "Mirror Defense", + "icon": "missions/images/mirror_defense.154f2a0065316fe0c15b2496c41e1bd4.png", + "thumb": "missions/images/thumbs/mirror_defense.154f2a0065316fe0c15b2496c41e1bd4.128x128.png" + } + } + }, + { + "id": "657f0f5f8820fb8f3c5f45bf", + "slug": "alchemy", + "gameRef": "", + "i18n": { + "en": { + "name": "Alchemy", + "icon": "missions/images/alchemy.5900ee13350b9b85817fa1ee8d81dbc2.png", + "thumb": "missions/images/thumbs/alchemy.5900ee13350b9b85817fa1ee8d81dbc2.128x128.png" + } + } + }, + { + "id": "65d64c7d453a14fbc68e2725", + "slug": "level__55_60_albrechts_laboratories_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 55 - 60 Albrecht'S Laboratories Bounty", + "icon": "missions/images/level__55_60_albrechts_laboratories_bounty.7a4397bc355f6c5be7f8d6626ec094bc.png", + "thumb": "missions/images/thumbs/level__55_60_albrechts_laboratories_bounty.7a4397bc355f6c5be7f8d6626ec094bc.128x128.png" + } + } + }, + { + "id": "65d64c7e453a14fbc68e2726", + "slug": "level__65_70_albrechts_laboratories_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 65 - 70 Albrecht'S Laboratories Bounty", + "icon": "missions/images/level__65_70_albrechts_laboratories_bounty.7a4397bc355f6c5be7f8d6626ec094bc.png", + "thumb": "missions/images/thumbs/level__65_70_albrechts_laboratories_bounty.7a4397bc355f6c5be7f8d6626ec094bc.128x128.png" + } + } + }, + { + "id": "65d64c7f453a14fbc68e2727", + "slug": "level__75_80_albrechts_laboratories_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 75 - 80 Albrecht'S Laboratories Bounty", + "icon": "missions/images/level__75_80_albrechts_laboratories_bounty.03415a4b82065439bcfa8fc258a59e49.png", + "thumb": "missions/images/thumbs/level__75_80_albrechts_laboratories_bounty.03415a4b82065439bcfa8fc258a59e49.128x128.png" + } + } + }, + { + "id": "65d64c80453a14fbc68e2728", + "slug": "level__95_100_albrechts_laboratories_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 95 - 100 Albrecht'S Laboratories Bounty", + "icon": "missions/images/level__95_100_albrechts_laboratories_bounty.956a753fa21180503518498874cdc6df.png", + "thumb": "missions/images/thumbs/level__95_100_albrechts_laboratories_bounty.956a753fa21180503518498874cdc6df.128x128.png" + } + } + }, + { + "id": "65d64c82453a14fbc68e2729", + "slug": "level__115_120_albrechts_laboratories_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 115 - 120 Albrecht'S Laboratories Bounty", + "icon": "missions/images/level__115_120_albrechts_laboratories_bounty.c9d1f14b1dfaf66100c99080885003fd.png", + "thumb": "missions/images/thumbs/level__115_120_albrechts_laboratories_bounty.c9d1f14b1dfaf66100c99080885003fd.128x128.png" + } + } + }, + { + "id": "66049623dbdd5c1673781d9d", + "slug": "level__50_55_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 50 - 55 Zariman Bounty", + "icon": "missions/images/level__50_55_zariman_bounty.fb4a9a4b61cdc9f17bce71f3763f3a10.png", + "thumb": "missions/images/thumbs/level__50_55_zariman_bounty.fb4a9a4b61cdc9f17bce71f3763f3a10.128x128.png" + } + } + }, + { + "id": "66049625dbdd5c1673781d9e", + "slug": "level__60_65_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 60 - 65 Zariman Bounty", + "icon": "missions/images/level__60_65_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.png", + "thumb": "missions/images/thumbs/level__60_65_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.128x128.png" + } + } + }, + { + "id": "66049627dbdd5c1673781d9f", + "slug": "level__70_75_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 70 - 75 Zariman Bounty", + "icon": "missions/images/level__70_75_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.png", + "thumb": "missions/images/thumbs/level__70_75_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.128x128.png" + } + } + }, + { + "id": "66049628dbdd5c1673781da0", + "slug": "level__90_95_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 90 - 95 Zariman Bounty", + "icon": "missions/images/level__90_95_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.png", + "thumb": "missions/images/thumbs/level__90_95_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.128x128.png" + } + } + }, + { + "id": "66049629dbdd5c1673781da1", + "slug": "level__110_115_zariman_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 110 - 115 Zariman Bounty", + "icon": "missions/images/level__110_115_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.png", + "thumb": "missions/images/thumbs/level__110_115_zariman_bounty.43092210e01b55c81d4df16a6f4f5d1c.128x128.png" + } + } + }, + { + "id": "6604962adbdd5c1673781da2", + "slug": "level__55_60_entrati_lab_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 55 - 60 Entrati Lab Bounty", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "6604962adbdd5c1673781da3", + "slug": "level__65_70_entrati_lab_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 65 - 70 Entrati Lab Bounty", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "6604962bdbdd5c1673781da4", + "slug": "level__75_80_entrati_lab_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 75 - 80 Entrati Lab Bounty", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "6604962bdbdd5c1673781da5", + "slug": "level__95_100_entrati_lab_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 95 - 100 Entrati Lab Bounty", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "6604962cdbdd5c1673781da6", + "slug": "level__115_120_entrati_lab_bounty", + "gameRef": "", + "i18n": { + "en": { + "name": "Level 115 - 120 Entrati Lab Bounty", + "icon": "missions/unknown.png", + "thumb": "missions/unknown.thumb.png" + } + } + }, + { + "id": "663202d1e85cac3856c86cb5", + "slug": "deep_archimedea_silver_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Deep Archimedea Silver Rewards", + "icon": "missions/images/deep_archimedea_silver_rewards.6db45847c381883ef1a08f5a1038381c.png", + "thumb": "missions/images/thumbs/deep_archimedea_silver_rewards.6db45847c381883ef1a08f5a1038381c.128x128.png" + } + } + }, + { + "id": "663202d2e85cac3856c86cb6", + "slug": "deep_archimedea_gold_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Deep Archimedea Gold Rewards", + "icon": "missions/images/deep_archimedea_gold_rewards.6db45847c381883ef1a08f5a1038381c.png", + "thumb": "missions/images/thumbs/deep_archimedea_gold_rewards.6db45847c381883ef1a08f5a1038381c.128x128.png" + } + } + }, + { + "id": "663202d3e85cac3856c86cb7", + "slug": "deep_archimedea_legendary_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Deep Archimedea Legendary Rewards", + "icon": "missions/images/deep_archimedea_legendary_rewards.6db45847c381883ef1a08f5a1038381c.png", + "thumb": "missions/images/thumbs/deep_archimedea_legendary_rewards.6db45847c381883ef1a08f5a1038381c.128x128.png" + } + } + }, + { + "id": "6676c3ff07a5007fadf3ec65", + "slug": "ascension", + "gameRef": "", + "i18n": { + "en": { + "name": "Ascension", + "icon": "missions/images/ascension.328beff695be49b3e255cf459259e2dd.webp", + "thumb": "missions/images/thumbs/ascension.328beff695be49b3e255cf459259e2dd.128x128.webp" + } + } + }, + { + "id": "6676c43807a5007fadf3ec66", + "slug": "deep_archimedea_arcane", + "gameRef": "", + "i18n": { + "en": { + "name": "Deep Archimedea Arcane", + "icon": "missions/images/deep_archimedea_arcane.8a3f1e5cc73b9f79c777b630ab1a82af.webp", + "thumb": "missions/images/thumbs/deep_archimedea_arcane.8a3f1e5cc73b9f79c777b630ab1a82af.128x128.webp" + } + } + }, + { + "id": "66fe96da755c14b58ddfa04f", + "slug": "shrine_defense", + "gameRef": "", + "i18n": { + "en": { + "name": "Shrine Defense", + "icon": "missions/images/shrine_defense.1ab339fbf01ac3a74ebfb76b1a95ec0d.webp", + "thumb": "missions/images/thumbs/shrine_defense.1ab339fbf01ac3a74ebfb76b1a95ec0d.128x128.webp" + } + } + }, + { + "id": "675c41d17b18977f6e6453e3", + "slug": "legacyte_harvest", + "gameRef": "", + "i18n": { + "en": { + "name": "Legacyte Harvest", + "icon": "items/images/en/legacyte_harvest.fcc795ecfa83d79724ea5e120d368868.webp", + "thumb": "items/images/en/thumbs/legacyte_harvest.fcc795ecfa83d79724ea5e120d368868.128x128.webp" + } + } + }, + { + "id": "6792439a125398d92c8bb4d8", + "slug": "faceoff_single_squad", + "gameRef": "", + "i18n": { + "en": { + "name": "Faceoff: Single Squad", + "icon": "items/images/en/faceoff_single_squad.e46862010cb4315bfe3dfe5d57e7b8fb.webp", + "thumb": "items/images/en/thumbs/faceoff_single_squad.e46862010cb4315bfe3dfe5d57e7b8fb.128x128.webp" + } + } + }, + { + "id": "679243a0125398d92c8bb4d9", + "slug": "faceoff_single_squad_(steel_path)", + "gameRef": "", + "i18n": { + "en": { + "name": "Faceoff: Single Squad (Steel Path)", + "icon": "items/images/en/faceoff_single_squad_(steel_path).8542f7832794c6386288ed887bbe7b73.webp", + "thumb": "items/images/en/thumbs/faceoff_single_squad_(steel_path).8542f7832794c6386288ed887bbe7b73.128x128.webp" + } + } + }, + { + "id": "679243a4125398d92c8bb4da", + "slug": "faceoff_squad_vs_squad", + "gameRef": "", + "i18n": { + "en": { + "name": "Faceoff: Squad Vs Squad", + "icon": "items/images/en/faceoff_squad_vs_squad.32bab0800c90474134ce3bfe0dba4d35.webp", + "thumb": "items/images/en/thumbs/faceoff_squad_vs_squad.32bab0800c90474134ce3bfe0dba4d35.128x128.webp" + } + } + }, + { + "id": "679243a7125398d92c8bb4db", + "slug": "faceoff_squad_vs_squad_(steel_path)", + "gameRef": "", + "i18n": { + "en": { + "name": "Faceoff: Squad Vs Squad (Steel Path)", + "icon": "items/images/en/faceoff_squad_vs_squad_(steel_path).32bab0800c90474134ce3bfe0dba4d35.webp", + "thumb": "items/images/en/thumbs/faceoff_squad_vs_squad_(steel_path).32bab0800c90474134ce3bfe0dba4d35.128x128.webp" + } + } + }, + { + "id": "67dd6035cedcd0be6d135828", + "slug": "temporal_archimedea_silver_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Temporal Archimedea Silver Rewards", + "icon": "items/images/en/temporal_archimedea_silver_rewards.ce89d8b874f6b813a35f73bcd72ea7c3.webp", + "thumb": "items/images/en/thumbs/temporal_archimedea_silver_rewards.ce89d8b874f6b813a35f73bcd72ea7c3.128x128.webp" + } + } + }, + { + "id": "67dd6037cedcd0be6d135829", + "slug": "temporal_archimedea_gold_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Temporal Archimedea Gold Rewards", + "icon": "items/images/en/temporal_archimedea_gold_rewards.ce89d8b874f6b813a35f73bcd72ea7c3.webp", + "thumb": "items/images/en/thumbs/temporal_archimedea_gold_rewards.ce89d8b874f6b813a35f73bcd72ea7c3.128x128.webp" + } + } + }, + { + "id": "67dd6039cedcd0be6d13582a", + "slug": "temporal_archimedea_arcane_rewards", + "gameRef": "", + "i18n": { + "en": { + "name": "Temporal Archimedea Arcane Rewards", + "icon": "items/images/en/temporal_archimedea_arcane_rewards.ce89d8b874f6b813a35f73bcd72ea7c3.webp", + "thumb": "items/images/en/thumbs/temporal_archimedea_arcane_rewards.ce89d8b874f6b813a35f73bcd72ea7c3.128x128.webp" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/npc.json b/src/market/models/fixtures/npc.json new file mode 100644 index 0000000..b36c4ab --- /dev/null +++ b/src/market/models/fixtures/npc.json @@ -0,0 +1,9654 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "62d2eff3751567007abb167e", + "slug": "infested_grineer", + "gameRef": "", + "i18n": { + "en": { + "name": "Infested Grineer", + "icon": "npc/images/infested_grineer.52931b27d55248a226c0f793e0863be0.png", + "thumb": "npc/images/thumbs/infested_grineer.52931b27d55248a226c0f793e0863be0.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1680", + "slug": "corrupted_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Heavy Gunner", + "icon": "npc/images/corrupted_heavy_gunner.776f942a1f1ba721ea9ae6168e5c5957.png", + "thumb": "npc/images/thumbs/corrupted_heavy_gunner.776f942a1f1ba721ea9ae6168e5c5957.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1681", + "slug": "deimos_brood_mother", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Brood Mother", + "icon": "npc/images/deimos_brood_mother.856ebcfc41f467f738f7855de3fe6da1.png", + "thumb": "npc/images/thumbs/deimos_brood_mother.856ebcfc41f467f738f7855de3fe6da1.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1682", + "slug": "orm_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Pilot", + "icon": "npc/images/orm_pilot.85980f6df033bfb9a0683a52ed457a93.png", + "thumb": "npc/images/thumbs/orm_pilot.85980f6df033bfb9a0683a52ed457a93.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1683", + "slug": "shield_dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Shield Dargyn", + "icon": "npc/images/shield_dargyn.7c7fdd2462160f9c50801cd3e6db01e4.png", + "thumb": "npc/images/thumbs/shield_dargyn.7c7fdd2462160f9c50801cd3e6db01e4.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1684", + "slug": "napalm", + "gameRef": "", + "i18n": { + "en": { + "name": "Napalm", + "icon": "npc/images/napalm.fb0facfe1e64e34c0697b91716e63b6c.png", + "thumb": "npc/images/thumbs/napalm.fb0facfe1e64e34c0697b91716e63b6c.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1685", + "slug": "drekar_hellion", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Hellion", + "icon": "npc/images/drekar_hellion.39b6315fc53dc0e82c7bb320494c232e.png", + "thumb": "npc/images/thumbs/drekar_hellion.39b6315fc53dc0e82c7bb320494c232e.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb1697", + "slug": "vorac_shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Shockwave Moa", + "icon": "npc/images/vorac_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.png", + "thumb": "npc/images/thumbs/vorac_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb1699", + "slug": "taro_numon", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Numon", + "icon": "npc/images/taro_numon.dab2c76f52bd876f14d670c407cf5d10.png", + "thumb": "npc/images/thumbs/taro_numon.dab2c76f52bd876f14d670c407cf5d10.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb169a", + "slug": "vapos_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Shield Osprey", + "icon": "npc/images/vapos_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/vapos_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb169b", + "slug": "axio_zerca", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Zerca", + "icon": "npc/images/axio_zerca.8b088ae856a60902ee436f12f8fac2b1.png", + "thumb": "npc/images/thumbs/axio_zerca.8b088ae856a60902ee436f12f8fac2b1.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb169c", + "slug": "ratel", + "gameRef": "", + "i18n": { + "en": { + "name": "Ratel", + "icon": "npc/images/ratel.e9ba3b276a97df195f05b0a3fbbd15b4.png", + "thumb": "npc/images/thumbs/ratel.e9ba3b276a97df195f05b0a3fbbd15b4.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb169e", + "slug": "juggernaut_behemoth", + "gameRef": "", + "i18n": { + "en": { + "name": "Juggernaut Behemoth", + "icon": "npc/images/juggernaut_behemoth.ac1944ed4240b4ee42b96a1f69728dac.png", + "thumb": "npc/images/thumbs/juggernaut_behemoth.ac1944ed4240b4ee42b96a1f69728dac.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb169f", + "slug": "mutalist_lightning_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Mutalist Lightning Carrier", + "icon": "npc/images/mutalist_lightning_carrier.148f62f097697e8ccd7bf0a0f0b17af8.png", + "thumb": "npc/images/thumbs/mutalist_lightning_carrier.148f62f097697e8ccd7bf0a0f0b17af8.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb16a0", + "slug": "kuva_scorpion", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Scorpion", + "icon": "npc/images/kuva_scorpion.de54a57bd66bd2e5e1e93b5032efcba5.png", + "thumb": "npc/images/thumbs/kuva_scorpion.de54a57bd66bd2e5e1e93b5032efcba5.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb16a1", + "slug": "tyl_regor", + "gameRef": "", + "i18n": { + "en": { + "name": "Tyl Regor", + "icon": "npc/images/tyl_regor.cf0d7523a9b38697208568ef3ec39288.png", + "thumb": "npc/images/thumbs/tyl_regor.cf0d7523a9b38697208568ef3ec39288.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb16a2", + "slug": "taro_stropha_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Stropha Crewman", + "icon": "npc/images/taro_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.png", + "thumb": "npc/images/thumbs/taro_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb16a3", + "slug": "the_sergeant", + "gameRef": "", + "i18n": { + "en": { + "name": "The Sergeant", + "icon": "npc/images/the_sergeant.7b68d039062da456d6d3cd2953375af7.png", + "thumb": "npc/images/thumbs/the_sergeant.7b68d039062da456d6d3cd2953375af7.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb16a4", + "slug": "vorac_engineer", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Engineer", + "icon": "npc/images/vorac_engineer.6fab825c66632fd3b0ae3e8594440a51.png", + "thumb": "npc/images/thumbs/vorac_engineer.6fab825c66632fd3b0ae3e8594440a51.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb16a5", + "slug": "isolator_bursa", + "gameRef": "", + "i18n": { + "en": { + "name": "Isolator Bursa", + "icon": "npc/images/isolator_bursa.4b1ecff0fa53eda04e8446cbaa00bbfe.png", + "thumb": "npc/images/thumbs/isolator_bursa.4b1ecff0fa53eda04e8446cbaa00bbfe.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb16a6", + "slug": "vapos_detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Detron Crewman", + "icon": "npc/images/vapos_detron_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/vapos_detron_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2eff8751567007abb16a7", + "slug": "nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Nullifier Crewman", + "icon": "npc/images/nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.png", + "thumb": "npc/images/thumbs/nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.128x128.png" + } + } + }, + { + "id": "62d2eff8751567007abb16a8", + "slug": "tusk_shield_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Shield Lancer", + "icon": "npc/images/tusk_shield_lancer.7259507df848439a593a14eee785b05b.png", + "thumb": "npc/images/thumbs/tusk_shield_lancer.7259507df848439a593a14eee785b05b.128x128.png" + } + } + }, + { + "id": "62d2eff8751567007abb16a9", + "slug": "gyre_raider_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Raider Eviscerator", + "icon": "npc/images/gyre_raider_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.png", + "thumb": "npc/images/thumbs/gyre_raider_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.128x128.png" + } + } + }, + { + "id": "62d2eff8751567007abb16aa", + "slug": "juggernaut", + "gameRef": "", + "i18n": { + "en": { + "name": "Juggernaut", + "icon": "npc/images/juggernaut.cf61f649e0c810a90038c14755167a3d.png", + "thumb": "npc/images/thumbs/juggernaut.cf61f649e0c810a90038c14755167a3d.128x128.png" + } + } + }, + { + "id": "62d2eff8751567007abb16ab", + "slug": "eidolon_teralyst_(special)", + "gameRef": "", + "i18n": { + "en": { + "name": "Eidolon Teralyst (Special)", + "icon": "npc/images/eidolon_teralyst_(special).2942a22690ae866e7bba7424d32df5ee.png", + "thumb": "npc/images/thumbs/eidolon_teralyst_(special).2942a22690ae866e7bba7424d32df5ee.128x128.png" + } + } + }, + { + "id": "62d2eff8751567007abb16ac", + "slug": "terra_attack_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Attack Drone", + "icon": "npc/images/terra_attack_drone.890f5f9c0dc36aea21e33f44dc90dc84.png", + "thumb": "npc/images/thumbs/terra_attack_drone.890f5f9c0dc36aea21e33f44dc90dc84.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16b5", + "slug": "axio_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Basilisk", + "icon": "npc/images/axio_basilisk.f0389f24dacf60d5918f955d27c0a5e7.png", + "thumb": "npc/images/thumbs/axio_basilisk.f0389f24dacf60d5918f955d27c0a5e7.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16bb", + "slug": "narmer_mite", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Mite", + "icon": "npc/images/narmer_mite.c09c5bfa900b03b346353ec503a34d02.png", + "thumb": "npc/images/thumbs/narmer_mite.c09c5bfa900b03b346353ec503a34d02.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16bc", + "slug": "orm_gox", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Gox", + "icon": "npc/images/orm_gox.9744c87fd0eb4364a77617e815ca097d.png", + "thumb": "npc/images/thumbs/orm_gox.9744c87fd0eb4364a77617e815ca097d.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16bd", + "slug": "vapos_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Tech", + "icon": "npc/images/vapos_tech.3a0017fbecedd1f9c659a467e3702f0f.png", + "thumb": "npc/images/thumbs/vapos_tech.3a0017fbecedd1f9c659a467e3702f0f.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16be", + "slug": "m_wam", + "gameRef": "", + "i18n": { + "en": { + "name": "M-W.A.M.", + "icon": "npc/images/m_wam.04238ec871dd5686761ae22eb9ba639b.png", + "thumb": "npc/images/thumbs/m_wam.04238ec871dd5686761ae22eb9ba639b.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16bf", + "slug": "striker_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Striker Moa", + "icon": "npc/images/striker_moa.d75ce40bdd8c1142a705131fcb214523.png", + "thumb": "npc/images/thumbs/striker_moa.d75ce40bdd8c1142a705131fcb214523.128x128.png" + } + } + }, + { + "id": "62d2f01a751567007abb17c7", + "slug": "tusk_thumper_bull", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Thumper Bull", + "icon": "npc/images/tusk_thumper_bull.fa0f4121cc2e7472a2ae995dc8f6f806.png", + "thumb": "npc/images/thumbs/tusk_thumper_bull.fa0f4121cc2e7472a2ae995dc8f6f806.128x128.png" + } + } + }, + { + "id": "62d2f01a751567007abb17c9", + "slug": "slo_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Slo Comba", + "icon": "npc/images/slo_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/slo_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f01a751567007abb17ca", + "slug": "zealot_baptizer", + "gameRef": "", + "i18n": { + "en": { + "name": "Zealot Baptizer", + "icon": "npc/images/zealot_baptizer.eeaa23e76b6e3f31dd8422dd70905fe0.png", + "thumb": "npc/images/thumbs/zealot_baptizer.eeaa23e76b6e3f31dd8422dd70905fe0.128x128.png" + } + } + }, + { + "id": "62d2f01a751567007abb17cc", + "slug": "drekar_ballista", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Ballista", + "icon": "npc/images/drekar_ballista.f70d970925945104a371722e106170bc.png", + "thumb": "npc/images/thumbs/drekar_ballista.f70d970925945104a371722e106170bc.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17cd", + "slug": "narmer_commander", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Commander", + "icon": "npc/images/narmer_commander.b9e9f7d2dd44e04159c2fe4c45c79f74.png", + "thumb": "npc/images/thumbs/narmer_commander.b9e9f7d2dd44e04159c2fe4c45c79f74.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17ce", + "slug": "axio_ranger_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Ranger Crewman", + "icon": "npc/images/axio_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.png", + "thumb": "npc/images/thumbs/axio_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17cf", + "slug": "juno_disc_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Disc Moa", + "icon": "npc/images/juno_disc_moa.d1465e09c31a3212857b834445f7f4a9.png", + "thumb": "npc/images/thumbs/juno_disc_moa.d1465e09c31a3212857b834445f7f4a9.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17d0", + "slug": "drekar_trooper", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Trooper", + "icon": "npc/images/drekar_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.png", + "thumb": "npc/images/thumbs/drekar_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17d1", + "slug": "ancient_disruptor", + "gameRef": "", + "i18n": { + "en": { + "name": "Ancient Disruptor", + "icon": "npc/images/ancient_disruptor.3ce67c364fbc7b22e674b9048de9d71d.png", + "thumb": "npc/images/thumbs/ancient_disruptor.3ce67c364fbc7b22e674b9048de9d71d.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17d2", + "slug": "guardsman", + "gameRef": "", + "i18n": { + "en": { + "name": "Guardsman", + "icon": "npc/images/guardsman.9e3f41a942a89f7013b738cef6be6c87.png", + "thumb": "npc/images/thumbs/guardsman.9e3f41a942a89f7013b738cef6be6c87.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17d3", + "slug": "orm_detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Detron Crewman", + "icon": "npc/images/orm_detron_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/orm_detron_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17d4", + "slug": "narmer_scorpion", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Scorpion", + "icon": "npc/images/narmer_scorpion.9c260422292d859e29b2bef91c36f5a9.png", + "thumb": "npc/images/thumbs/narmer_scorpion.9c260422292d859e29b2bef91c36f5a9.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17d5", + "slug": "deimos_saxum_rex", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Saxum Rex", + "icon": "npc/images/deimos_saxum_rex.82a783fe190007fd3ea0552d38a99085.png", + "thumb": "npc/images/thumbs/deimos_saxum_rex.82a783fe190007fd3ea0552d38a99085.128x128.png" + } + } + }, + { + "id": "62d2f01b751567007abb17d6", + "slug": "summulyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Summulyst", + "icon": "npc/images/summulyst.ac64903d538208ef5dc9d3ac9813e060.png", + "thumb": "npc/images/thumbs/summulyst.ac64903d538208ef5dc9d3ac9813e060.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17e7", + "slug": "corpus_sniper_target", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Sniper Target", + "icon": "npc/images/corpus_sniper_target.d56e10849496ebaf49504e53b0cf729d.png", + "thumb": "npc/images/thumbs/corpus_sniper_target.d56e10849496ebaf49504e53b0cf729d.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17e8", + "slug": "hyena_ln2", + "gameRef": "", + "i18n": { + "en": { + "name": "Hyena Ln2", + "icon": "npc/images/hyena_ln2.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/hyena_ln2.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17e9", + "slug": "corrupted_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Crewman", + "icon": "npc/images/corrupted_crewman.46ce7fddd54634659278818cf925ed0b.png", + "thumb": "npc/images/thumbs/corrupted_crewman.46ce7fddd54634659278818cf925ed0b.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17ea", + "slug": "verd_ie", + "gameRef": "", + "i18n": { + "en": { + "name": "Verd-Ie", + "icon": "npc/images/verd_ie.7177653692a6e1f824d85537c3570461.png", + "thumb": "npc/images/thumbs/verd_ie.7177653692a6e1f824d85537c3570461.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17eb", + "slug": "elite_exo_taktis", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Exo Taktis", + "icon": "npc/images/elite_exo_taktis.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_exo_taktis.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17ed", + "slug": "narmer_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Tech", + "icon": "npc/images/narmer_tech.51696fbf30770a77198a20f3c47fe723.png", + "thumb": "npc/images/thumbs/narmer_tech.51696fbf30770a77198a20f3c47fe723.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17ef", + "slug": "kuva_guardian", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Guardian", + "icon": "npc/images/kuva_guardian.8ac76fc981cad45a61af75608d07e429.png", + "thumb": "npc/images/thumbs/kuva_guardian.8ac76fc981cad45a61af75608d07e429.128x128.png" + } + } + }, + { + "id": "62d2f020751567007abb17f0", + "slug": "uncommon_grineer_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Uncommon Grineer Storage Container", + "icon": "npc/images/uncommon_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/uncommon_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f020751567007abb17f2", + "slug": "kuva_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Lancer", + "icon": "npc/images/kuva_lancer.d7e2c39dbe12200064810de67b6b9996.png", + "thumb": "npc/images/thumbs/kuva_lancer.d7e2c39dbe12200064810de67b6b9996.128x128.png" + } + } + }, + { + "id": "62d2f020751567007abb17f4", + "slug": "frontier_hellion", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Hellion", + "icon": "npc/images/frontier_hellion.39b6315fc53dc0e82c7bb320494c232e.png", + "thumb": "npc/images/thumbs/frontier_hellion.39b6315fc53dc0e82c7bb320494c232e.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17f6", + "slug": "terra_detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Detron Crewman", + "icon": "npc/images/terra_detron_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/terra_detron_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17f7", + "slug": "kuva_seeker", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Seeker", + "icon": "npc/images/kuva_seeker.cd7a470f47c9f879c6aa90b493612f45.png", + "thumb": "npc/images/thumbs/kuva_seeker.cd7a470f47c9f879c6aa90b493612f45.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17f8", + "slug": "mania_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Mania (Level 0 - 100)", + "icon": "npc/images/mania_(level_0_100).3a0cf25b934b34b025fd0bd9ddf2b558.png", + "thumb": "npc/images/thumbs/mania_(level_0_100).3a0cf25b934b34b025fd0bd9ddf2b558.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17f9", + "slug": "nechramech_(tier_1)", + "gameRef": "", + "i18n": { + "en": { + "name": "Nechramech (Tier 1)", + "icon": "npc/images/nechramech_(tier_1).027b9b8ee2357756aa639680c54ca76b.png", + "thumb": "npc/images/thumbs/nechramech_(tier_1).027b9b8ee2357756aa639680c54ca76b.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17fa", + "slug": "aerolyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Aerolyst", + "icon": "npc/images/aerolyst.f3d4659ff298588958e780c0cc62896b.png", + "thumb": "npc/images/thumbs/aerolyst.f3d4659ff298588958e780c0cc62896b.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17fb", + "slug": "axio_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Shield Osprey", + "icon": "npc/images/axio_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/axio_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17fc", + "slug": "kosma_gokstad_officer", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Gokstad Officer", + "icon": "npc/images/kosma_gokstad_officer.664087b3dc0d7a3d750ed00d3b0bf7e0.png", + "thumb": "npc/images/thumbs/kosma_gokstad_officer.664087b3dc0d7a3d750ed00d3b0bf7e0.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17fd", + "slug": "demolyst_heqet", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolyst Heqet", + "icon": "npc/images/demolyst_heqet.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolyst_heqet.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17fe", + "slug": "axio_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Tech", + "icon": "npc/images/axio_tech.8e0f3783f13b45c61aaeefe2445d81c9.png", + "thumb": "npc/images/thumbs/axio_tech.8e0f3783f13b45c61aaeefe2445d81c9.128x128.png" + } + } + }, + { + "id": "62d2f022751567007abb17ff", + "slug": "narmer_mine_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Mine Osprey", + "icon": "npc/images/narmer_mine_osprey.b5ba3a13446b9e9a60f43f8c493b5c72.png", + "thumb": "npc/images/thumbs/narmer_mine_osprey.b5ba3a13446b9e9a60f43f8c493b5c72.128x128.png" + } + } + }, + { + "id": "62d2f022751567007abb1800", + "slug": "alad_v", + "gameRef": "", + "i18n": { + "en": { + "name": "Alad V", + "icon": "npc/images/alad_v.5c90e3d59619131e4c61487c6c1ede0a.png", + "thumb": "npc/images/thumbs/alad_v.5c90e3d59619131e4c61487c6c1ede0a.128x128.png" + } + } + }, + { + "id": "62d2f022751567007abb1801", + "slug": "decaying_conculyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Decaying Conculyst", + "icon": "npc/images/decaying_conculyst.39af3751f71f7baf21fe426281086240.png", + "thumb": "npc/images/thumbs/decaying_conculyst.39af3751f71f7baf21fe426281086240.128x128.png" + } + } + }, + { + "id": "62d2f022751567007abb1802", + "slug": "bailiff", + "gameRef": "", + "i18n": { + "en": { + "name": "Bailiff", + "icon": "npc/images/bailiff.769f13a426c816d96c27d4805786d1a7.png", + "thumb": "npc/images/thumbs/bailiff.769f13a426c816d96c27d4805786d1a7.128x128.png" + } + } + }, + { + "id": "62d2f022751567007abb1803", + "slug": "flameblade", + "gameRef": "", + "i18n": { + "en": { + "name": "Flameblade", + "icon": "npc/images/flameblade.0b9b97b8e2427ceaa66da1a343f879cd.png", + "thumb": "npc/images/thumbs/flameblade.0b9b97b8e2427ceaa66da1a343f879cd.128x128.png" + } + } + }, + { + "id": "62d2f022751567007abb1804", + "slug": "tusk_roller", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Roller", + "icon": "npc/images/tusk_roller.5d3aaa4c39a383546f38b3c60366a86f.png", + "thumb": "npc/images/thumbs/tusk_roller.5d3aaa4c39a383546f38b3c60366a86f.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb1805", + "slug": "void_shade", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Shade", + "icon": "npc/images/void_shade.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/void_shade.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb1806", + "slug": "raptor_mt", + "gameRef": "", + "i18n": { + "en": { + "name": "Raptor Mt", + "icon": "npc/images/raptor_mt.74ac24ecdf4f5d104e79abf65d2cedff.png", + "thumb": "npc/images/thumbs/raptor_mt.74ac24ecdf4f5d104e79abf65d2cedff.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb1807", + "slug": "nemes", + "gameRef": "", + "i18n": { + "en": { + "name": "Nemes", + "icon": "npc/images/nemes.b3f2654cca3cef5b44fd96ddf9686105.png", + "thumb": "npc/images/thumbs/nemes.b3f2654cca3cef5b44fd96ddf9686105.128x128.png" + } + } + }, + { + "id": "62d2f024751567007abb1812", + "slug": "demolisher_thrasher", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Thrasher", + "icon": "npc/images/demolisher_thrasher.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_thrasher.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f025751567007abb1816", + "slug": "lancer_survivor", + "gameRef": "", + "i18n": { + "en": { + "name": "Lancer Survivor", + "icon": "npc/images/lancer_survivor.d7e2c39dbe12200064810de67b6b9996.png", + "thumb": "npc/images/thumbs/lancer_survivor.d7e2c39dbe12200064810de67b6b9996.128x128.png" + } + } + }, + { + "id": "62d2f026751567007abb181b", + "slug": "exo_elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Elite Lancer", + "icon": "npc/images/exo_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/exo_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f027751567007abb1823", + "slug": "vorac_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Moa", + "icon": "npc/images/vorac_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/vorac_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f027751567007abb1825", + "slug": "orm_engineer", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Engineer", + "icon": "npc/images/orm_engineer.6fab825c66632fd3b0ae3e8594440a51.png", + "thumb": "npc/images/thumbs/orm_engineer.6fab825c66632fd3b0ae3e8594440a51.128x128.png" + } + } + }, + { + "id": "62d2f027751567007abb1826", + "slug": "commander", + "gameRef": "", + "i18n": { + "en": { + "name": "Commander", + "icon": "npc/images/commander.4e9fcaa65e19e090528bc1167803b739.png", + "thumb": "npc/images/thumbs/commander.4e9fcaa65e19e090528bc1167803b739.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb1828", + "slug": "kuva_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Butcher", + "icon": "npc/images/kuva_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/kuva_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb1829", + "slug": "shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Shockwave Moa", + "icon": "npc/images/shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.png", + "thumb": "npc/images/thumbs/shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb182a", + "slug": "arbitration_shield_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Arbitration Shield Drone", + "icon": "npc/images/arbitration_shield_drone.85df337a5b7ef22bfebf703258acd9c5.png", + "thumb": "npc/images/thumbs/arbitration_shield_drone.85df337a5b7ef22bfebf703258acd9c5.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb182c", + "slug": "axio_disc_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Disc Moa", + "icon": "npc/images/axio_disc_moa.d1465e09c31a3212857b834445f7f4a9.png", + "thumb": "npc/images/thumbs/axio_disc_moa.d1465e09c31a3212857b834445f7f4a9.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb182d", + "slug": "aurax_culveri_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Aurax Culveri Moa", + "icon": "npc/images/aurax_culveri_moa.e0b8102cb7aa6d56b3a2a0edbd1574ab.png", + "thumb": "npc/images/thumbs/aurax_culveri_moa.e0b8102cb7aa6d56b3a2a0edbd1574ab.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb182e", + "slug": "axio_numon", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Numon", + "icon": "npc/images/axio_numon.dab2c76f52bd876f14d670c407cf5d10.png", + "thumb": "npc/images/thumbs/axio_numon.dab2c76f52bd876f14d670c407cf5d10.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb182f", + "slug": "deimos_mutalist_osprey_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Mutalist Osprey Carrier", + "icon": "npc/images/deimos_mutalist_osprey_carrier.091599706750bd2de45b2334a49d0960.png", + "thumb": "npc/images/thumbs/deimos_mutalist_osprey_carrier.091599706750bd2de45b2334a49d0960.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb1830", + "slug": "taro_zerca", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Zerca", + "icon": "npc/images/taro_zerca.8b088ae856a60902ee436f12f8fac2b1.png", + "thumb": "npc/images/thumbs/taro_zerca.8b088ae856a60902ee436f12f8fac2b1.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb1831", + "slug": "hellion_power_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Hellion Power Carrier", + "icon": "npc/images/hellion_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.png", + "thumb": "npc/images/thumbs/hellion_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb1832", + "slug": "anu_mantalyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Anu Mantalyst", + "icon": "npc/images/anu_mantalyst.39af3751f71f7baf21fe426281086240.png", + "thumb": "npc/images/thumbs/anu_mantalyst.39af3751f71f7baf21fe426281086240.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb1833", + "slug": "nervo", + "gameRef": "", + "i18n": { + "en": { + "name": "Nervo", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "62d2f028751567007abb1834", + "slug": "angst_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Angst (Level 0 - 100)", + "icon": "npc/images/angst_(level_0_100).e85cd6cb64ebdbb3496ca48a9435124a.png", + "thumb": "npc/images/thumbs/angst_(level_0_100).e85cd6cb64ebdbb3496ca48a9435124a.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb1835", + "slug": "lephantis", + "gameRef": "", + "i18n": { + "en": { + "name": "Lephantis", + "icon": "npc/images/lephantis.e99bfcbb22b94d616b385071806780bb.png", + "thumb": "npc/images/thumbs/lephantis.e99bfcbb22b94d616b385071806780bb.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb1836", + "slug": "brachiolyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Brachiolyst", + "icon": "npc/images/brachiolyst.16b3824a505322ea8708ba3e7683403d.png", + "thumb": "npc/images/thumbs/brachiolyst.16b3824a505322ea8708ba3e7683403d.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb1837", + "slug": "juno_sap_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Sap Comba", + "icon": "npc/images/juno_sap_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/juno_sap_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb1838", + "slug": "orm_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Weaver", + "icon": "npc/images/orm_weaver.b251630242173cc99fe10d2352e1f8fb.png", + "thumb": "npc/images/thumbs/orm_weaver.b251630242173cc99fe10d2352e1f8fb.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb1839", + "slug": "undying_flyer", + "gameRef": "", + "i18n": { + "en": { + "name": "Undying Flyer", + "icon": "npc/images/undying_flyer.c6a0dad6b938bbaff33b3daf8677ffd0.png", + "thumb": "npc/images/thumbs/undying_flyer.c6a0dad6b938bbaff33b3daf8677ffd0.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb183b", + "slug": "jack_onaut", + "gameRef": "", + "i18n": { + "en": { + "name": "Jack O'Naut", + "icon": "npc/images/jack_onaut.cf61f649e0c810a90038c14755167a3d.png", + "thumb": "npc/images/thumbs/jack_onaut.cf61f649e0c810a90038c14755167a3d.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb183c", + "slug": "eidolon_teralyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Eidolon Teralyst", + "icon": "npc/images/eidolon_teralyst.505382e5200f58b48b4939e0582f1cd5.png", + "thumb": "npc/images/thumbs/eidolon_teralyst.505382e5200f58b48b4939e0582f1cd5.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb183d", + "slug": "vapos_bioengineer", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Bioengineer", + "icon": "npc/images/vapos_bioengineer.3fc8ff100cd262a072e052b6fa8e40e9.png", + "thumb": "npc/images/thumbs/vapos_bioengineer.3fc8ff100cd262a072e052b6fa8e40e9.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb183e", + "slug": "lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Lancer", + "icon": "npc/images/lancer.d7e2c39dbe12200064810de67b6b9996.png", + "thumb": "npc/images/thumbs/lancer.d7e2c39dbe12200064810de67b6b9996.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb183f", + "slug": "moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Moa", + "icon": "npc/images/moa.f7dc67c464d4529babf3e3ff5b64821f.png", + "thumb": "npc/images/thumbs/moa.f7dc67c464d4529babf3e3ff5b64821f.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb1840", + "slug": "tia_mayn", + "gameRef": "", + "i18n": { + "en": { + "name": "Tia Mayn", + "icon": "npc/images/tia_mayn.987bed6b99a5a2a2eb0278e8551ea032.png", + "thumb": "npc/images/thumbs/tia_mayn.987bed6b99a5a2a2eb0278e8551ea032.128x128.png" + } + } + }, + { + "id": "62d2f02a751567007abb1841", + "slug": "deimos_juggernaut", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Juggernaut", + "icon": "npc/images/deimos_juggernaut.cf61f649e0c810a90038c14755167a3d.png", + "thumb": "npc/images/thumbs/deimos_juggernaut.cf61f649e0c810a90038c14755167a3d.128x128.png" + } + } + }, + { + "id": "62d2f02a751567007abb1842", + "slug": "tusk_bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Bombard", + "icon": "npc/images/tusk_bombard.056b10a316ea9722d413620bc6135861.png", + "thumb": "npc/images/thumbs/tusk_bombard.056b10a316ea9722d413620bc6135861.128x128.png" + } + } + }, + { + "id": "62d2f02a751567007abb1843", + "slug": "elite_exo_cutter", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Exo Cutter", + "icon": "npc/images/elite_exo_cutter.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_exo_cutter.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f02a751567007abb1844", + "slug": "seeker", + "gameRef": "", + "i18n": { + "en": { + "name": "Seeker", + "icon": "npc/images/seeker.021f9bfac0f68c04a78b24025b70957c.png", + "thumb": "npc/images/thumbs/seeker.021f9bfac0f68c04a78b24025b70957c.128x128.png" + } + } + }, + { + "id": "62d2f02b751567007abb1845", + "slug": "coildrive", + "gameRef": "", + "i18n": { + "en": { + "name": "Coildrive", + "icon": "npc/images/coildrive.6f8e60250c15061c656b2f4f1fb90dd4.png", + "thumb": "npc/images/thumbs/coildrive.6f8e60250c15061c656b2f4f1fb90dd4.128x128.png" + } + } + }, + { + "id": "62d2f02b751567007abb1846", + "slug": "demolyst_machinist", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolyst Machinist", + "icon": "npc/images/demolyst_machinist.c3b2335271d8baf1a08a4a8682be0a86.png", + "thumb": "npc/images/thumbs/demolyst_machinist.c3b2335271d8baf1a08a4a8682be0a86.128x128.png" + } + } + }, + { + "id": "62d2f02b751567007abb1847", + "slug": "minima_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Minima Moa", + "icon": "npc/images/minima_moa.db0d5eef749819510bd55ce27b18be29.png", + "thumb": "npc/images/thumbs/minima_moa.db0d5eef749819510bd55ce27b18be29.128x128.png" + } + } + }, + { + "id": "62d2f02b751567007abb1848", + "slug": "deimos_charger", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Charger", + "icon": "npc/images/deimos_charger.ea964412006b9dd67f5cd1505496fec1.png", + "thumb": "npc/images/thumbs/deimos_charger.ea964412006b9dd67f5cd1505496fec1.128x128.png" + } + } + }, + { + "id": "62d2f02b751567007abb1849", + "slug": "corpus_cestra_target", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Cestra Target", + "icon": "npc/images/corpus_cestra_target.ad73973b8def45241d7bc111cc57d6cf.png", + "thumb": "npc/images/thumbs/corpus_cestra_target.ad73973b8def45241d7bc111cc57d6cf.128x128.png" + } + } + }, + { + "id": "62d2f02b751567007abb184a", + "slug": "erra", + "gameRef": "", + "i18n": { + "en": { + "name": "Erra", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "62d2f02b751567007abb184b", + "slug": "tusk_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Butcher", + "icon": "npc/images/tusk_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/tusk_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb184c", + "slug": "tusk_ballista", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Ballista", + "icon": "npc/images/tusk_ballista.f70d970925945104a371722e106170bc.png", + "thumb": "npc/images/thumbs/tusk_ballista.f70d970925945104a371722e106170bc.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb184d", + "slug": "draga", + "gameRef": "", + "i18n": { + "en": { + "name": "Draga", + "icon": "npc/images/draga.1a387bb78d096a72833f12a4d39f0041.png", + "thumb": "npc/images/thumbs/draga.1a387bb78d096a72833f12a4d39f0041.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb184e", + "slug": "hyena_ng", + "gameRef": "", + "i18n": { + "en": { + "name": "Hyena Ng", + "icon": "npc/images/hyena_ng.1aeb7118ee2a52c4f88b1e9d7644b829.png", + "thumb": "npc/images/thumbs/hyena_ng.1aeb7118ee2a52c4f88b1e9d7644b829.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb184f", + "slug": "terra_elite_provisor", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Elite Provisor", + "icon": "npc/images/terra_elite_provisor.abde8286ab2a44ce52106e2596ba441e.png", + "thumb": "npc/images/thumbs/terra_elite_provisor.abde8286ab2a44ce52106e2596ba441e.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb1850", + "slug": "elite_exo_outrider", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Exo Outrider", + "icon": "npc/images/elite_exo_outrider.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_exo_outrider.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb1851", + "slug": "ogma", + "gameRef": "", + "i18n": { + "en": { + "name": "Ogma", + "icon": "npc/images/ogma.528d8164779fa430f65e5bb5d4596460.png", + "thumb": "npc/images/thumbs/ogma.528d8164779fa430f65e5bb5d4596460.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb1852", + "slug": "002_er", + "gameRef": "", + "i18n": { + "en": { + "name": "002-Er", + "icon": "npc/images/002_er.03ff81ac78f74e9a44e0254fa0a0f44e.png", + "thumb": "npc/images/thumbs/002_er.03ff81ac78f74e9a44e0254fa0a0f44e.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb1853", + "slug": "vorac_railgun_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Railgun Moa", + "icon": "npc/images/vorac_railgun_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/vorac_railgun_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f02c751567007abb1854", + "slug": "kuva_lich_agor_rok_(level_0_69)", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Lich Agor Rok (Level 0 - 69)", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "62d2f02c751567007abb1855", + "slug": "councilor_vay_hek", + "gameRef": "", + "i18n": { + "en": { + "name": "Councilor Vay Hek", + "icon": "npc/images/councilor_vay_hek.9658f1ce824c961fc0547320a964b819.png", + "thumb": "npc/images/thumbs/councilor_vay_hek.9658f1ce824c961fc0547320a964b819.128x128.png" + } + } + }, + { + "id": "62d2f02d751567007abb1856", + "slug": "amalgam_phase_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Phase Moa", + "icon": "npc/images/amalgam_phase_moa.03d5e4c9390f5c69043e3124bc125152.png", + "thumb": "npc/images/thumbs/amalgam_phase_moa.03d5e4c9390f5c69043e3124bc125152.128x128.png" + } + } + }, + { + "id": "62d2f02d751567007abb1857", + "slug": "pelna_cade", + "gameRef": "", + "i18n": { + "en": { + "name": "Pelna Cade", + "icon": "npc/images/pelna_cade.3acddbf59df2a37f9a854ea40c4f0490.png", + "thumb": "npc/images/thumbs/pelna_cade.3acddbf59df2a37f9a854ea40c4f0490.128x128.png" + } + } + }, + { + "id": "62d2f02d751567007abb1858", + "slug": "bailiff_defector", + "gameRef": "", + "i18n": { + "en": { + "name": "Bailiff Defector", + "icon": "npc/images/bailiff_defector.0397bc14eae3a36a40a488ad42e0dfaf.png", + "thumb": "npc/images/thumbs/bailiff_defector.0397bc14eae3a36a40a488ad42e0dfaf.128x128.png" + } + } + }, + { + "id": "62d2f02d751567007abb1859", + "slug": "elite_orm_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Orm Harpi", + "icon": "npc/images/elite_orm_harpi.062973ab342fcf0ddee4302f2a70cd33.png", + "thumb": "npc/images/thumbs/elite_orm_harpi.062973ab342fcf0ddee4302f2a70cd33.128x128.png" + } + } + }, + { + "id": "62d2f02d751567007abb185a", + "slug": "coolant_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Coolant Raknoid", + "icon": "npc/images/coolant_raknoid.22c12205641bc7aa2d9826d62bd90cf0.png", + "thumb": "npc/images/thumbs/coolant_raknoid.22c12205641bc7aa2d9826d62bd90cf0.128x128.png" + } + } + }, + { + "id": "62d2f02d751567007abb185b", + "slug": "elite_kosma_cutter", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Kosma Cutter", + "icon": "npc/images/elite_kosma_cutter.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_kosma_cutter.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f02d751567007abb185c", + "slug": "kuva_bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Bombard", + "icon": "npc/images/kuva_bombard.056b10a316ea9722d413620bc6135861.png", + "thumb": "npc/images/thumbs/kuva_bombard.056b10a316ea9722d413620bc6135861.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb185d", + "slug": "uncommon_corpus_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Uncommon Corpus Storage Container", + "icon": "npc/images/uncommon_corpus_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/uncommon_corpus_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb185e", + "slug": "ambulas", + "gameRef": "", + "i18n": { + "en": { + "name": "Ambulas", + "icon": "npc/images/ambulas.e832eb2677a79425eb3ec472e206521f.png", + "thumb": "npc/images/thumbs/ambulas.e832eb2677a79425eb3ec472e206521f.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb185f", + "slug": "juno_glaxion_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Glaxion Moa", + "icon": "npc/images/juno_glaxion_moa.345cb72b2cd5ca96fae0dba54d172e22.png", + "thumb": "npc/images/thumbs/juno_glaxion_moa.345cb72b2cd5ca96fae0dba54d172e22.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb1863", + "slug": "elite_shield_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Shield Lancer", + "icon": "npc/images/elite_shield_lancer.6b33ec1d51045435141761e91bff1eb6.png", + "thumb": "npc/images/thumbs/elite_shield_lancer.6b33ec1d51045435141761e91bff1eb6.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb1868", + "slug": "juno_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Elite Crewman", + "icon": "npc/images/juno_elite_crewman.79d2a9790f023183b3dcca186a68fcda.png", + "thumb": "npc/images/thumbs/juno_elite_crewman.79d2a9790f023183b3dcca186a68fcda.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb186b", + "slug": "taro_engineer", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Engineer", + "icon": "npc/images/taro_engineer.6fab825c66632fd3b0ae3e8594440a51.png", + "thumb": "npc/images/thumbs/taro_engineer.6fab825c66632fd3b0ae3e8594440a51.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb186d", + "slug": "terra_shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Shockwave Moa", + "icon": "npc/images/terra_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.png", + "thumb": "npc/images/thumbs/terra_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb1870", + "slug": "drover_bursa", + "gameRef": "", + "i18n": { + "en": { + "name": "Drover Bursa", + "icon": "npc/images/drover_bursa.f69e83d815fbf9858769f9b73cedb3b3.png", + "thumb": "npc/images/thumbs/drover_bursa.f69e83d815fbf9858769f9b73cedb3b3.128x128.png" + } + } + }, + { + "id": "62d2f030751567007abb1872", + "slug": "blite_captain", + "gameRef": "", + "i18n": { + "en": { + "name": "Blite Captain", + "icon": "npc/images/blite_captain.d64adf581ed1477487e79003dc4e2369.png", + "thumb": "npc/images/thumbs/blite_captain.d64adf581ed1477487e79003dc4e2369.128x128.png" + } + } + }, + { + "id": "62d2f032751567007abb1881", + "slug": "elite_gyre_outrider", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Gyre Outrider", + "icon": "npc/images/elite_gyre_outrider.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_gyre_outrider.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f032751567007abb1884", + "slug": "orm_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Moa", + "icon": "npc/images/orm_moa.f7dc67c464d4529babf3e3ff5b64821f.png", + "thumb": "npc/images/thumbs/orm_moa.f7dc67c464d4529babf3e3ff5b64821f.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb1889", + "slug": "ved_xol", + "gameRef": "", + "i18n": { + "en": { + "name": "Ved Xol", + "icon": "npc/images/ved_xol.23032160869b72695b9c6e2cdb9603dd.png", + "thumb": "npc/images/thumbs/ved_xol.23032160869b72695b9c6e2cdb9603dd.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb188b", + "slug": "terra_sniper_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Sniper Crewman", + "icon": "npc/images/terra_sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.png", + "thumb": "npc/images/thumbs/terra_sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb188d", + "slug": "polyp_hog_juggernaut", + "gameRef": "", + "i18n": { + "en": { + "name": "Polyp-Hog Juggernaut", + "icon": "npc/images/polyp_hog_juggernaut.cf61f649e0c810a90038c14755167a3d.png", + "thumb": "npc/images/thumbs/polyp_hog_juggernaut.cf61f649e0c810a90038c14755167a3d.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb188f", + "slug": "juno_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Crewman", + "icon": "npc/images/juno_crewman.56e580d1935130bd4712540f48a65763.png", + "thumb": "npc/images/thumbs/juno_crewman.56e580d1935130bd4712540f48a65763.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1891", + "slug": "leaper", + "gameRef": "", + "i18n": { + "en": { + "name": "Leaper", + "icon": "npc/images/leaper.4da7089997fc74ab2608a95de9ea5fd8.png", + "thumb": "npc/images/thumbs/leaper.4da7089997fc74ab2608a95de9ea5fd8.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1893", + "slug": "taro_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Harpi", + "icon": "npc/images/taro_harpi.062973ab342fcf0ddee4302f2a70cd33.png", + "thumb": "npc/images/thumbs/taro_harpi.062973ab342fcf0ddee4302f2a70cd33.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1895", + "slug": "gyre_elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Elite Lancer", + "icon": "npc/images/gyre_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/gyre_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1897", + "slug": "terra_anti_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Anti Moa", + "icon": "npc/images/terra_anti_moa.d75ce40bdd8c1142a705131fcb214523.png", + "thumb": "npc/images/thumbs/terra_anti_moa.d75ce40bdd8c1142a705131fcb214523.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a4", + "slug": "kosma_cutter", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Cutter", + "icon": "npc/images/kosma_cutter.a2b2c40ff309c02a264cba04ddaa500e.png", + "thumb": "npc/images/thumbs/kosma_cutter.a2b2c40ff309c02a264cba04ddaa500e.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18b8", + "slug": "roller", + "gameRef": "", + "i18n": { + "en": { + "name": "Roller", + "icon": "npc/images/roller.5d3aaa4c39a383546f38b3c60366a86f.png", + "thumb": "npc/images/thumbs/roller.5d3aaa4c39a383546f38b3c60366a86f.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18ba", + "slug": "exo_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Butcher", + "icon": "npc/images/exo_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/exo_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18bb", + "slug": "vorac_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Basilisk", + "icon": "npc/images/vorac_basilisk.f0389f24dacf60d5918f955d27c0a5e7.png", + "thumb": "npc/images/thumbs/vorac_basilisk.f0389f24dacf60d5918f955d27c0a5e7.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18bc", + "slug": "ghoul_auger_alpha", + "gameRef": "", + "i18n": { + "en": { + "name": "Ghoul Auger Alpha", + "icon": "npc/images/ghoul_auger_alpha.b3ce7a5e17c84df2ddc7b9db1e780cf0.png", + "thumb": "npc/images/thumbs/ghoul_auger_alpha.b3ce7a5e17c84df2ddc7b9db1e780cf0.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18bd", + "slug": "thrax_centurion", + "gameRef": "", + "i18n": { + "en": { + "name": "Thrax Centurion", + "icon": "npc/images/thrax_centurion.ed8f7e32c113a3ed61a51bd39328ea1a.png", + "thumb": "npc/images/thumbs/thrax_centurion.ed8f7e32c113a3ed61a51bd39328ea1a.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18be", + "slug": "narmer_shield_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Shield Lancer", + "icon": "npc/images/narmer_shield_lancer.483628350575b35f6235f25862c214df.png", + "thumb": "npc/images/thumbs/narmer_shield_lancer.483628350575b35f6235f25862c214df.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18bf", + "slug": "tusk_thumper", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Thumper", + "icon": "npc/images/tusk_thumper.c0362f100387b14f79e62c8c90fa5922.png", + "thumb": "npc/images/thumbs/tusk_thumper.c0362f100387b14f79e62c8c90fa5922.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18c0", + "slug": "lancer_dreg", + "gameRef": "", + "i18n": { + "en": { + "name": "Lancer Dreg", + "icon": "npc/images/lancer_dreg.c0dc75b75f200d8153917df93d022b5e.png", + "thumb": "npc/images/thumbs/lancer_dreg.c0dc75b75f200d8153917df93d022b5e.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18c1", + "slug": "derivator_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Derivator Crewman", + "icon": "npc/images/derivator_crewman.5251ba3d621277bf8def2b9bad74f3cc.png", + "thumb": "npc/images/thumbs/derivator_crewman.5251ba3d621277bf8def2b9bad74f3cc.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18c2", + "slug": "taro_shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Shockwave Moa", + "icon": "npc/images/taro_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.png", + "thumb": "npc/images/thumbs/taro_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18c3", + "slug": "narmer_powerfist", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Powerfist", + "icon": "npc/images/narmer_powerfist.5c3c0eb7b41b14703795ecd2349cb745.png", + "thumb": "npc/images/thumbs/narmer_powerfist.5c3c0eb7b41b14703795ecd2349cb745.128x128.png" + } + } + }, + { + "id": "62d2f039751567007abb18c4", + "slug": "lektro_commander", + "gameRef": "", + "i18n": { + "en": { + "name": "Lektro Commander", + "icon": "npc/images/lektro_commander.83e8ebe1c169bfdf1f3916711021d814.png", + "thumb": "npc/images/thumbs/lektro_commander.83e8ebe1c169bfdf1f3916711021d814.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18c5", + "slug": "mature_membroid", + "gameRef": "", + "i18n": { + "en": { + "name": "Mature Membroid", + "icon": "npc/images/mature_membroid.68ff234e13167dfc33bc8b4a4e4ef6ee.png", + "thumb": "npc/images/thumbs/mature_membroid.68ff234e13167dfc33bc8b4a4e4ef6ee.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18c6", + "slug": "kyta_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Kyta Raknoid", + "icon": "npc/images/kyta_raknoid.84d064069f50e13e7afb4176a6c02999.png", + "thumb": "npc/images/thumbs/kyta_raknoid.84d064069f50e13e7afb4176a6c02999.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18c7", + "slug": "exo_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Eviscerator", + "icon": "npc/images/exo_eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/exo_eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18c8", + "slug": "basal_diploid", + "gameRef": "", + "i18n": { + "en": { + "name": "Basal Diploid", + "icon": "npc/images/basal_diploid.0f1452d30ad9d078cc87dfdba3944765.png", + "thumb": "npc/images/thumbs/basal_diploid.0f1452d30ad9d078cc87dfdba3944765.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18c9", + "slug": "corpus_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Tech", + "icon": "npc/images/corpus_tech.8e0f3783f13b45c61aaeefe2445d81c9.png", + "thumb": "npc/images/thumbs/corpus_tech.8e0f3783f13b45c61aaeefe2445d81c9.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18db", + "slug": "narmer_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Lancer", + "icon": "npc/images/narmer_lancer.6605b808db82ed170eddc137926bea11.png", + "thumb": "npc/images/thumbs/narmer_lancer.6605b808db82ed170eddc137926bea11.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18eb", + "slug": "fog_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Fog Comba", + "icon": "npc/images/fog_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/fog_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18ec", + "slug": "demolisher_machinist", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Machinist", + "icon": "npc/images/demolisher_machinist.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_machinist.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18ed", + "slug": "forgotten_grineer_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Forgotten Grineer Storage Container", + "icon": "npc/images/forgotten_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/forgotten_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18ee", + "slug": "roller_sentry", + "gameRef": "", + "i18n": { + "en": { + "name": "Roller Sentry", + "icon": "npc/images/roller_sentry.71b5aa414f9928d2af0085f4485883a5.png", + "thumb": "npc/images/thumbs/roller_sentry.71b5aa414f9928d2af0085f4485883a5.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18ef", + "slug": "juno_slo_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Slo Comba", + "icon": "npc/images/juno_slo_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/juno_slo_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f0", + "slug": "deimos_swarm_mutalist_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Swarm Mutalist Moa", + "icon": "npc/images/deimos_swarm_mutalist_moa.4d164c8a4c6936922d95e149046b7b61.png", + "thumb": "npc/images/thumbs/deimos_swarm_mutalist_moa.4d164c8a4c6936922d95e149046b7b61.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f1", + "slug": "aurax_vertec", + "gameRef": "", + "i18n": { + "en": { + "name": "Aurax Vertec", + "icon": "npc/images/aurax_vertec.a0c462dddf5f4547d3a0e531385e2955.png", + "thumb": "npc/images/thumbs/aurax_vertec.a0c462dddf5f4547d3a0e531385e2955.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f2", + "slug": "pyr_captain", + "gameRef": "", + "i18n": { + "en": { + "name": "Pyr Captain", + "icon": "npc/images/pyr_captain.da557bea6a3888497ac1bd2cab36f23f.png", + "thumb": "npc/images/thumbs/pyr_captain.da557bea6a3888497ac1bd2cab36f23f.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f3", + "slug": "gyre_raider", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Raider", + "icon": "npc/images/gyre_raider.f642a6acaaf3e4d5f6052da3ec7e264c.png", + "thumb": "npc/images/thumbs/gyre_raider.f642a6acaaf3e4d5f6052da3ec7e264c.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f4", + "slug": "artificer", + "gameRef": "", + "i18n": { + "en": { + "name": "Artificer", + "icon": "npc/images/artificer.f5e8b1974c616de481846caade3e9215.png", + "thumb": "npc/images/thumbs/artificer.f5e8b1974c616de481846caade3e9215.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f5", + "slug": "drekar_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Lancer", + "icon": "npc/images/drekar_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/drekar_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f6", + "slug": "terra_overtaker", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Overtaker", + "icon": "npc/images/terra_overtaker.0bd236d6455ec6d7bb07226e5438fa5d.png", + "thumb": "npc/images/thumbs/terra_overtaker.0bd236d6455ec6d7bb07226e5438fa5d.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f7", + "slug": "demolyst_satyr", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolyst Satyr", + "icon": "npc/images/demolyst_satyr.659e718b1b59903132f8b191f040f790.png", + "thumb": "npc/images/thumbs/demolyst_satyr.659e718b1b59903132f8b191f040f790.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f8", + "slug": "tusk_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Lancer", + "icon": "npc/images/tusk_lancer.d7e2c39dbe12200064810de67b6b9996.png", + "thumb": "npc/images/thumbs/tusk_lancer.d7e2c39dbe12200064810de67b6b9996.128x128.png" + } + } + }, + { + "id": "62d2f03e751567007abb18f9", + "slug": "terra_provisor", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Provisor", + "icon": "npc/images/terra_provisor.abde8286ab2a44ce52106e2596ba441e.png", + "thumb": "npc/images/thumbs/terra_provisor.abde8286ab2a44ce52106e2596ba441e.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb18fb", + "slug": "kuva_larvling", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Larvling", + "icon": "npc/images/kuva_larvling.ab067a5d13ae5a31bcbe74c7596b88fb.png", + "thumb": "npc/images/thumbs/kuva_larvling.ab067a5d13ae5a31bcbe74c7596b88fb.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb18fd", + "slug": "arcane_boiler", + "gameRef": "", + "i18n": { + "en": { + "name": "Arcane Boiler", + "icon": "npc/images/arcane_boiler.b1ee75d668adaf4f47624d0c38835972.png", + "thumb": "npc/images/thumbs/arcane_boiler.b1ee75d668adaf4f47624d0c38835972.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb18fe", + "slug": "orm_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Crewman", + "icon": "npc/images/orm_crewman.56e580d1935130bd4712540f48a65763.png", + "thumb": "npc/images/thumbs/orm_crewman.56e580d1935130bd4712540f48a65763.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb18ff", + "slug": "tusk_seeker", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Seeker", + "icon": "npc/images/tusk_seeker.282cee23d27794b6280ee1d3ec9adeee.png", + "thumb": "npc/images/thumbs/tusk_seeker.282cee23d27794b6280ee1d3ec9adeee.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb1900", + "slug": "garv", + "gameRef": "", + "i18n": { + "en": { + "name": "Garv", + "icon": "npc/images/garv.3516033447c996e8f22120d327e8efba.png", + "thumb": "npc/images/thumbs/garv.3516033447c996e8f22120d327e8efba.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb1901", + "slug": "crawler", + "gameRef": "", + "i18n": { + "en": { + "name": "Crawler", + "icon": "npc/images/crawler.5afd58b250f1bcc6c60e254b5bf8d133.png", + "thumb": "npc/images/thumbs/crawler.5afd58b250f1bcc6c60e254b5bf8d133.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb1902", + "slug": "machinist", + "gameRef": "", + "i18n": { + "en": { + "name": "Machinist", + "icon": "npc/images/machinist.8b958c0163d248bd547b38357dfd6b42.png", + "thumb": "npc/images/thumbs/machinist.8b958c0163d248bd547b38357dfd6b42.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb1903", + "slug": "demolisher_anti_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Anti Moa", + "icon": "npc/images/demolisher_anti_moa.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_anti_moa.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb1904", + "slug": "hunhow", + "gameRef": "", + "i18n": { + "en": { + "name": "Hunhow", + "icon": "npc/images/hunhow.b05721664ec295dd8e7eec9981f84d24.png", + "thumb": "npc/images/thumbs/hunhow.b05721664ec295dd8e7eec9981f84d24.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb1905", + "slug": "vapos_sapping_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Sapping Osprey", + "icon": "npc/images/vapos_sapping_osprey.baf46cde3756240683515edb9e5ff03b.png", + "thumb": "npc/images/thumbs/vapos_sapping_osprey.baf46cde3756240683515edb9e5ff03b.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb1906", + "slug": "dargyn_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Dargyn Pilot", + "icon": "npc/images/dargyn_pilot.ff756c1636b5ec9efeffaa2ced25862c.png", + "thumb": "npc/images/thumbs/dargyn_pilot.ff756c1636b5ec9efeffaa2ced25862c.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb1907", + "slug": "nechramech_(tier_2)", + "gameRef": "", + "i18n": { + "en": { + "name": "Nechramech (Tier 2)", + "icon": "npc/images/nechramech_(tier_2).027b9b8ee2357756aa639680c54ca76b.png", + "thumb": "npc/images/thumbs/nechramech_(tier_2).027b9b8ee2357756aa639680c54ca76b.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb1908", + "slug": "tusk_shield_dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Shield Dargyn", + "icon": "npc/images/tusk_shield_dargyn.7c7fdd2462160f9c50801cd3e6db01e4.png", + "thumb": "npc/images/thumbs/tusk_shield_dargyn.7c7fdd2462160f9c50801cd3e6db01e4.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb1909", + "slug": "orb_vallis_temple_of_profit_enemies", + "gameRef": "", + "i18n": { + "en": { + "name": "Orb Vallis - Temple of Profit Enemies", + "icon": "npc/images/orb_vallis_temple_of_profit_enemies.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/orb_vallis_temple_of_profit_enemies.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb190a", + "slug": "juno_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Tech", + "icon": "npc/images/juno_tech.8e0f3783f13b45c61aaeefe2445d81c9.png", + "thumb": "npc/images/thumbs/juno_tech.8e0f3783f13b45c61aaeefe2445d81c9.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb190b", + "slug": "ghoul_expired", + "gameRef": "", + "i18n": { + "en": { + "name": "Ghoul Expired", + "icon": "npc/images/ghoul_expired.826601350b0f7bca40847e14e47d9743.png", + "thumb": "npc/images/thumbs/ghoul_expired.826601350b0f7bca40847e14e47d9743.128x128.png" + } + } + }, + { + "id": "62d2f040751567007abb190c", + "slug": "vapos_elite_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Elite Ranger", + "icon": "npc/images/vapos_elite_ranger.a64b52b43b46c6017e8e38c654f5a0bf.png", + "thumb": "npc/images/thumbs/vapos_elite_ranger.a64b52b43b46c6017e8e38c654f5a0bf.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb190d", + "slug": "nauseous_crawler", + "gameRef": "", + "i18n": { + "en": { + "name": "Nauseous Crawler", + "icon": "npc/images/nauseous_crawler.9fbb2a28e4cefcf72d8abc6574ec1891.png", + "thumb": "npc/images/thumbs/nauseous_crawler.9fbb2a28e4cefcf72d8abc6574ec1891.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb190e", + "slug": "ballista", + "gameRef": "", + "i18n": { + "en": { + "name": "Ballista", + "icon": "npc/images/ballista.f70d970925945104a371722e106170bc.png", + "thumb": "npc/images/thumbs/ballista.f70d970925945104a371722e106170bc.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb190f", + "slug": "drekar_elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Elite Lancer", + "icon": "npc/images/drekar_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/drekar_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb1918", + "slug": "taro_disc_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Disc Moa", + "icon": "npc/images/taro_disc_moa.d1465e09c31a3212857b834445f7f4a9.png", + "thumb": "npc/images/thumbs/taro_disc_moa.d1465e09c31a3212857b834445f7f4a9.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb1919", + "slug": "kubrow", + "gameRef": "", + "i18n": { + "en": { + "name": "Kubrow", + "icon": "npc/images/kubrow.c14165efdf13b3a7ec1ff78d078dd77a.png", + "thumb": "npc/images/thumbs/kubrow.c14165efdf13b3a7ec1ff78d078dd77a.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb191a", + "slug": "terra_jailer", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Jailer", + "icon": "npc/images/terra_jailer.7655dc7dffa015d8e85888dc2a0dd2ce.png", + "thumb": "npc/images/thumbs/terra_jailer.7655dc7dffa015d8e85888dc2a0dd2ce.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb191b", + "slug": "sentient_research_director", + "gameRef": "", + "i18n": { + "en": { + "name": "Sentient Research Director", + "icon": "npc/images/sentient_research_director.594db877f8fcfb9f83c0d97bf4b84f32.png", + "thumb": "npc/images/thumbs/sentient_research_director.594db877f8fcfb9f83c0d97bf4b84f32.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb191c", + "slug": "locust_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Locust Drone", + "icon": "npc/images/locust_drone.c8ec38f6f39e0fa6dcf0dcd925e77572.png", + "thumb": "npc/images/thumbs/locust_drone.c8ec38f6f39e0fa6dcf0dcd925e77572.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb191d", + "slug": "juvenile_membroid", + "gameRef": "", + "i18n": { + "en": { + "name": "Juvenile Membroid", + "icon": "npc/images/juvenile_membroid.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/juvenile_membroid.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb191e", + "slug": "exo_raider_carver", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Raider Carver", + "icon": "npc/images/exo_raider_carver.820006e79e70526162b22b72c853bfc0.png", + "thumb": "npc/images/thumbs/exo_raider_carver.820006e79e70526162b22b72c853bfc0.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb191f", + "slug": "sniper_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Sniper Crewman", + "icon": "npc/images/sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.png", + "thumb": "npc/images/thumbs/sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb1920", + "slug": "nightwatch_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Nightwatch Carrier", + "icon": "npc/images/nightwatch_carrier.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/nightwatch_carrier.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb1922", + "slug": "vallis_surveillance_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Vallis Surveillance Drone", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "62d2f042751567007abb1924", + "slug": "vorac_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Weaver", + "icon": "npc/images/vorac_weaver.b251630242173cc99fe10d2352e1f8fb.png", + "thumb": "npc/images/thumbs/vorac_weaver.b251630242173cc99fe10d2352e1f8fb.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb1925", + "slug": "gyre_outrider", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Outrider", + "icon": "npc/images/gyre_outrider.0d39d2a885eac433fa99f3a845cd6265.png", + "thumb": "npc/images/thumbs/gyre_outrider.0d39d2a885eac433fa99f3a845cd6265.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb1926", + "slug": "amalgam_machinist", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Machinist", + "icon": "npc/images/amalgam_machinist.c3b2335271d8baf1a08a4a8682be0a86.png", + "thumb": "npc/images/thumbs/amalgam_machinist.c3b2335271d8baf1a08a4a8682be0a86.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb1927", + "slug": "ghoul_auger", + "gameRef": "", + "i18n": { + "en": { + "name": "Ghoul Auger", + "icon": "npc/images/ghoul_auger.b3ce7a5e17c84df2ddc7b9db1e780cf0.png", + "thumb": "npc/images/thumbs/ghoul_auger.b3ce7a5e17c84df2ddc7b9db1e780cf0.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb1928", + "slug": "brood_mother", + "gameRef": "", + "i18n": { + "en": { + "name": "Brood Mother", + "icon": "npc/images/brood_mother.856ebcfc41f467f738f7855de3fe6da1.png", + "thumb": "npc/images/thumbs/brood_mother.856ebcfc41f467f738f7855de3fe6da1.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb1929", + "slug": "rana_del", + "gameRef": "", + "i18n": { + "en": { + "name": "Rana Del", + "icon": "npc/images/rana_del.95ae33da0aca97d2f15168239d5bd591.png", + "thumb": "npc/images/thumbs/rana_del.95ae33da0aca97d2f15168239d5bd591.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb192b", + "slug": "kosma_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Butcher", + "icon": "npc/images/kosma_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/kosma_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb192c", + "slug": "narmer_sensolyst_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Sensolyst Drone", + "icon": "npc/images/narmer_sensolyst_drone.20ee07cd7e9a59309fd56702f4de4819.png", + "thumb": "npc/images/thumbs/narmer_sensolyst_drone.20ee07cd7e9a59309fd56702f4de4819.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb192d", + "slug": "taro_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Moa", + "icon": "npc/images/taro_moa.8cace727651a1251a76eb09d0dcf453e.png", + "thumb": "npc/images/thumbs/taro_moa.8cace727651a1251a76eb09d0dcf453e.128x128.png" + } + } + }, + { + "id": "62d2f044751567007abb192e", + "slug": "juno_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Shield Osprey", + "icon": "npc/images/juno_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/juno_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2f044751567007abb192f", + "slug": "shik_tal", + "gameRef": "", + "i18n": { + "en": { + "name": "Shik Tal", + "icon": "npc/images/shik_tal.4829ddbda44e12d87343250ff29b3c7e.png", + "thumb": "npc/images/thumbs/shik_tal.4829ddbda44e12d87343250ff29b3c7e.128x128.png" + } + } + }, + { + "id": "62d2f044751567007abb1930", + "slug": "reinforced_orokin_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Reinforced Orokin Storage Container", + "icon": "npc/images/reinforced_orokin_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/reinforced_orokin_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f044751567007abb1932", + "slug": "axio_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Pilot", + "icon": "npc/images/axio_pilot.85980f6df033bfb9a0683a52ed457a93.png", + "thumb": "npc/images/thumbs/axio_pilot.85980f6df033bfb9a0683a52ed457a93.128x128.png" + } + } + }, + { + "id": "62d2f045751567007abb1934", + "slug": "shield_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Shield Lancer", + "icon": "npc/images/shield_lancer.7259507df848439a593a14eee785b05b.png", + "thumb": "npc/images/thumbs/shield_lancer.7259507df848439a593a14eee785b05b.128x128.png" + } + } + }, + { + "id": "62d2f045751567007abb1935", + "slug": "mutalist_alad_v", + "gameRef": "", + "i18n": { + "en": { + "name": "Mutalist Alad V", + "icon": "npc/images/mutalist_alad_v.820e4bf2572f28bc911fe9d288b8f4da.png", + "thumb": "npc/images/thumbs/mutalist_alad_v.820e4bf2572f28bc911fe9d288b8f4da.128x128.png" + } + } + }, + { + "id": "62d2f045751567007abb1936", + "slug": "amalgam_arca_kucumatz", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Arca Kucumatz", + "icon": "npc/images/amalgam_arca_kucumatz.6bb1f3bbad2633394932cab671dcb45d.png", + "thumb": "npc/images/thumbs/amalgam_arca_kucumatz.6bb1f3bbad2633394932cab671dcb45d.128x128.png" + } + } + }, + { + "id": "62d2f045751567007abb1937", + "slug": "kosma_elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Elite Lancer", + "icon": "npc/images/kosma_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/kosma_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f045751567007abb1938", + "slug": "kuva_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Heavy Gunner", + "icon": "npc/images/kuva_heavy_gunner.216c1043314a854e46b8b42ceacf1631.png", + "thumb": "npc/images/thumbs/kuva_heavy_gunner.216c1043314a854e46b8b42ceacf1631.128x128.png" + } + } + }, + { + "id": "62d2f045751567007abb1939", + "slug": "recon_commander", + "gameRef": "", + "i18n": { + "en": { + "name": "Recon Commander", + "icon": "npc/images/recon_commander.24152dc41e128a2615554d8f578c3938.png", + "thumb": "npc/images/thumbs/recon_commander.24152dc41e128a2615554d8f578c3938.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb193a", + "slug": "reinforced_grineer_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Reinforced Grineer Storage Container", + "icon": "npc/images/reinforced_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/reinforced_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb193b", + "slug": "juno_dera_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Dera Moa", + "icon": "npc/images/juno_dera_moa.272f1db368e410b30998817c9f89e8fd.png", + "thumb": "npc/images/thumbs/juno_dera_moa.272f1db368e410b30998817c9f89e8fd.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb193c", + "slug": "kavat", + "gameRef": "", + "i18n": { + "en": { + "name": "Kavat", + "icon": "npc/images/kavat.5fe6e5620fb08fcbbeff685df48c370a.png", + "thumb": "npc/images/thumbs/kavat.5fe6e5620fb08fcbbeff685df48c370a.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb193d", + "slug": "frontier_trooper", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Trooper", + "icon": "npc/images/frontier_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.png", + "thumb": "npc/images/thumbs/frontier_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb193e", + "slug": "nul_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Nul Comba", + "icon": "npc/images/nul_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/nul_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb193f", + "slug": "kuva_powerclaw", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Powerclaw", + "icon": "npc/images/kuva_powerclaw.d2e4e4ea4805dd398b1e3273e944d4d2.png", + "thumb": "npc/images/thumbs/kuva_powerclaw.d2e4e4ea4805dd398b1e3273e944d4d2.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb1940", + "slug": "deimos_therid", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Therid", + "icon": "npc/images/deimos_therid.45859849d8a86d783c5244287daa37be.png", + "thumb": "npc/images/thumbs/deimos_therid.45859849d8a86d783c5244287daa37be.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb1941", + "slug": "elite_axio_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Axio Harpi", + "icon": "npc/images/elite_axio_harpi.062973ab342fcf0ddee4302f2a70cd33.png", + "thumb": "npc/images/thumbs/elite_axio_harpi.062973ab342fcf0ddee4302f2a70cd33.128x128.png" + } + } + }, + { + "id": "62d2f046751567007abb1942", + "slug": "jordas_golem", + "gameRef": "", + "i18n": { + "en": { + "name": "Jordas Golem", + "icon": "npc/images/jordas_golem.da602a2baa4f18f26785ebfb95285cd2.png", + "thumb": "npc/images/thumbs/jordas_golem.da602a2baa4f18f26785ebfb95285cd2.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb1943", + "slug": "exploiter_orb", + "gameRef": "", + "i18n": { + "en": { + "name": "Exploiter Orb", + "icon": "npc/images/exploiter_orb.8ee212e15735f97ca082f3069746eed9.png", + "thumb": "npc/images/thumbs/exploiter_orb.8ee212e15735f97ca082f3069746eed9.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb1944", + "slug": "manic_bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Manic Bombard", + "icon": "npc/images/manic_bombard.6802abc8dc317ca6041f8afb72673db9.png", + "thumb": "npc/images/thumbs/manic_bombard.6802abc8dc317ca6041f8afb72673db9.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb1945", + "slug": "datalyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Datalyst", + "icon": "npc/images/datalyst.6d1fcf7241e0fe06a6af7c05dc6ae9f2.png", + "thumb": "npc/images/thumbs/datalyst.6d1fcf7241e0fe06a6af7c05dc6ae9f2.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb1946", + "slug": "anu_brachiolyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Anu Brachiolyst", + "icon": "npc/images/anu_brachiolyst.16b3824a505322ea8708ba3e7683403d.png", + "thumb": "npc/images/thumbs/anu_brachiolyst.16b3824a505322ea8708ba3e7683403d.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb1947", + "slug": "orm_zerca", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Zerca", + "icon": "npc/images/orm_zerca.8b088ae856a60902ee436f12f8fac2b1.png", + "thumb": "npc/images/thumbs/orm_zerca.8b088ae856a60902ee436f12f8fac2b1.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb1948", + "slug": "trooper_survivor", + "gameRef": "", + "i18n": { + "en": { + "name": "Trooper Survivor", + "icon": "npc/images/trooper_survivor.8dfac0355ee878489fa7ced7fa3419be.png", + "thumb": "npc/images/thumbs/trooper_survivor.8dfac0355ee878489fa7ced7fa3419be.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb1949", + "slug": "demolisher_nox", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Nox", + "icon": "npc/images/demolisher_nox.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_nox.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb194a", + "slug": "axio_nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Nullifier Crewman", + "icon": "npc/images/axio_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.png", + "thumb": "npc/images/thumbs/axio_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb194d", + "slug": "narmer_scorch", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Scorch", + "icon": "npc/images/narmer_scorch.a63194a981099e372fe16fb4d946d8be.png", + "thumb": "npc/images/thumbs/narmer_scorch.a63194a981099e372fe16fb4d946d8be.128x128.png" + } + } + }, + { + "id": "62d2f048751567007abb194e", + "slug": "vorac_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Elite Crewman", + "icon": "npc/images/vorac_elite_crewman.79d2a9790f023183b3dcca186a68fcda.png", + "thumb": "npc/images/thumbs/vorac_elite_crewman.79d2a9790f023183b3dcca186a68fcda.128x128.png" + } + } + }, + { + "id": "62d2f048751567007abb194f", + "slug": "kosma_flak", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Flak", + "icon": "npc/images/kosma_flak.f6b0a6a38fde1ab97c308ca6c5e23b15.png", + "thumb": "npc/images/thumbs/kosma_flak.f6b0a6a38fde1ab97c308ca6c5e23b15.128x128.png" + } + } + }, + { + "id": "62d2f048751567007abb1950", + "slug": "gyrix", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyrix", + "icon": "npc/images/gyrix.ec9c2ab7367984a86ca0702ec566cf39.png", + "thumb": "npc/images/thumbs/gyrix.ec9c2ab7367984a86ca0702ec566cf39.128x128.png" + } + } + }, + { + "id": "62d2f048751567007abb1951", + "slug": "reinforced_carrypod", + "gameRef": "", + "i18n": { + "en": { + "name": "Reinforced Carrypod", + "icon": "npc/images/reinforced_carrypod.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/reinforced_carrypod.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f048751567007abb1952", + "slug": "vapos_sniper_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Sniper Ranger", + "icon": "npc/images/vapos_sniper_ranger.4c48cc81d0e13c0812eff116c56ead34.png", + "thumb": "npc/images/thumbs/vapos_sniper_ranger.4c48cc81d0e13c0812eff116c56ead34.128x128.png" + } + } + }, + { + "id": "62d2f048751567007abb1953", + "slug": "test_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Test Moa", + "icon": "npc/images/test_moa.806f462e6be50297ae72e2c437691bdc.png", + "thumb": "npc/images/thumbs/test_moa.806f462e6be50297ae72e2c437691bdc.128x128.png" + } + } + }, + { + "id": "62d2f048751567007abb1954", + "slug": "terra_plasmor_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Plasmor Crewman", + "icon": "npc/images/terra_plasmor_crewman.040ebda162a2ab274fee70a13f656da0.png", + "thumb": "npc/images/thumbs/terra_plasmor_crewman.040ebda162a2ab274fee70a13f656da0.128x128.png" + } + } + }, + { + "id": "6322929add457f0084f1a3fe", + "slug": "narmer_machinist", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Machinist", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "6322929add457f0084f1a3ff", + "slug": "narmer_demolisher_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Demolisher Gunner", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "6322929bdd457f0084f1a400", + "slug": "narmer_power_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Power Carrier", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "6322929bdd457f0084f1a401", + "slug": "narmer_tech_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Tech Ranger", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "6322929cdd457f0084f1a402", + "slug": "narmer_crewman_warden", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Crewman Warden", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "6322929ddd457f0084f1a403", + "slug": "narmer_gunner_warden", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Gunner Warden", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "6322929ddd457f0084f1a404", + "slug": "narmer_detron_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Detron Ranger", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "6322929fdd457f0084f1a406", + "slug": "narmer_regulator", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Regulator", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a0dd457f0084f1a407", + "slug": "narmer_elite_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Elite Ranger", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a0dd457f0084f1a408", + "slug": "rogg_417", + "gameRef": "", + "i18n": { + "en": { + "name": "Rogg-417", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "63ee011210125411da49e702", + "slug": "exo_roller_sentry", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Roller Sentry", + "icon": "npc/images/exo_roller_sentry.77be53161b3cda8cb3ce23f41b3d54fc.png", + "thumb": "npc/images/thumbs/exo_roller_sentry.77be53161b3cda8cb3ce23f41b3d54fc.128x128.png" + } + } + }, + { + "id": "644b00457ec1900044b9773e", + "slug": "corrupted_power_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Power Carrier", + "icon": "npc/images/corrupted_power_carrier.2b33e32d7f8f05ca463202df5cbbd2cd.png", + "thumb": "npc/images/thumbs/corrupted_power_carrier.2b33e32d7f8f05ca463202df5cbbd2cd.128x128.png" + } + } + }, + { + "id": "649325b77ec1902187d57142", + "slug": "necramech_(tier_3)", + "gameRef": "", + "i18n": { + "en": { + "name": "Necramech (Tier 3)", + "icon": "npc/images/necramech_(tier_3).a20cbeb0e27ad7af345816dc97d73cdb.png", + "thumb": "npc/images/thumbs/necramech_(tier_3).a20cbeb0e27ad7af345816dc97d73cdb.128x128.png" + } + } + }, + { + "id": "649325b77ec1902187d57143", + "slug": "necramech_(tier_2)", + "gameRef": "", + "i18n": { + "en": { + "name": "Necramech (Tier 2)", + "icon": "npc/images/necramech_(tier_2).a20cbeb0e27ad7af345816dc97d73cdb.png", + "thumb": "npc/images/thumbs/necramech_(tier_2).a20cbeb0e27ad7af345816dc97d73cdb.128x128.png" + } + } + }, + { + "id": "62d2eff3751567007abb167f", + "slug": "drekar_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Heavy Gunner", + "icon": "npc/images/drekar_heavy_gunner.216c1043314a854e46b8b42ceacf1631.png", + "thumb": "npc/images/thumbs/drekar_heavy_gunner.216c1043314a854e46b8b42ceacf1631.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1686", + "slug": "axio_vambac", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Vambac", + "icon": "npc/images/axio_vambac.83d94c41a5dff4d16601599e48eba2a5.png", + "thumb": "npc/images/thumbs/axio_vambac.83d94c41a5dff4d16601599e48eba2a5.128x128.png" + } + } + }, + { + "id": "62d2eff4751567007abb1687", + "slug": "narmer_prod_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Prod Crewman", + "icon": "npc/images/narmer_prod_crewman.a2ac2559516e963d88f2e25bf78171de.png", + "thumb": "npc/images/thumbs/narmer_prod_crewman.a2ac2559516e963d88f2e25bf78171de.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb1688", + "slug": "hyena_pb", + "gameRef": "", + "i18n": { + "en": { + "name": "Hyena Pb", + "icon": "npc/images/hyena_pb.a69c3875fb0129e03894472fa04dd312.png", + "thumb": "npc/images/thumbs/hyena_pb.a69c3875fb0129e03894472fa04dd312.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb1689", + "slug": "narmer_sapping_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Sapping Osprey", + "icon": "npc/images/narmer_sapping_osprey.1c8d0daa92689034a9eed452d0a3522a.png", + "thumb": "npc/images/thumbs/narmer_sapping_osprey.1c8d0daa92689034a9eed452d0a3522a.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb168a", + "slug": "nako_xol", + "gameRef": "", + "i18n": { + "en": { + "name": "Nako Xol", + "icon": "npc/images/nako_xol.a76ae13a457646edfd337ec43f78e1c4.png", + "thumb": "npc/images/thumbs/nako_xol.a76ae13a457646edfd337ec43f78e1c4.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb168b", + "slug": "amalgam_swarm_satyr", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Swarm Satyr", + "icon": "npc/images/amalgam_swarm_satyr.3a2ca91f0c947383657efc3108b86dec.png", + "thumb": "npc/images/thumbs/amalgam_swarm_satyr.3a2ca91f0c947383657efc3108b86dec.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb168c", + "slug": "gyre_cutter", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Cutter", + "icon": "npc/images/gyre_cutter.a2b2c40ff309c02a264cba04ddaa500e.png", + "thumb": "npc/images/thumbs/gyre_cutter.a2b2c40ff309c02a264cba04ddaa500e.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb168d", + "slug": "grineer_power_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Grineer Power Carrier", + "icon": "npc/images/grineer_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.png", + "thumb": "npc/images/thumbs/grineer_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb168e", + "slug": "amalgam_satyr", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Satyr", + "icon": "npc/images/amalgam_satyr.659e718b1b59903132f8b191f040f790.png", + "thumb": "npc/images/thumbs/amalgam_satyr.659e718b1b59903132f8b191f040f790.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb168f", + "slug": "narmer_corpus_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Corpus Tech", + "icon": "npc/images/narmer_corpus_tech.51696fbf30770a77198a20f3c47fe723.png", + "thumb": "npc/images/thumbs/narmer_corpus_tech.51696fbf30770a77198a20f3c47fe723.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb1690", + "slug": "shock_draga", + "gameRef": "", + "i18n": { + "en": { + "name": "Shock Draga", + "icon": "npc/images/shock_draga.7bb8b78964e2dd4aa881e74418b0ba38.png", + "thumb": "npc/images/thumbs/shock_draga.7bb8b78964e2dd4aa881e74418b0ba38.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb1691", + "slug": "narmer_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Osprey", + "icon": "npc/images/narmer_osprey.b5ba3a13446b9e9a60f43f8c493b5c72.png", + "thumb": "npc/images/thumbs/narmer_osprey.b5ba3a13446b9e9a60f43f8c493b5c72.128x128.png" + } + } + }, + { + "id": "62d2eff5751567007abb1692", + "slug": "hyena_pack", + "gameRef": "", + "i18n": { + "en": { + "name": "Hyena Pack", + "icon": "npc/images/hyena_pack.a69c3875fb0129e03894472fa04dd312.png", + "thumb": "npc/images/thumbs/hyena_pack.a69c3875fb0129e03894472fa04dd312.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb1693", + "slug": "terra_cestra_manker", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Cestra Manker", + "icon": "npc/images/terra_cestra_manker.3e6cebc87182c24f82da3dd387fb906a.png", + "thumb": "npc/images/thumbs/terra_cestra_manker.3e6cebc87182c24f82da3dd387fb906a.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb1694", + "slug": "narmer_hellion", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Hellion", + "icon": "npc/images/narmer_hellion.a25bafe4a619813ce326f498f9531b3f.png", + "thumb": "npc/images/thumbs/narmer_hellion.a25bafe4a619813ce326f498f9531b3f.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb1695", + "slug": "carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Carrier", + "icon": "npc/images/carrier.80f0bdba938c641011e9d946f2a64fe6.png", + "thumb": "npc/images/thumbs/carrier.80f0bdba938c641011e9d946f2a64fe6.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb1696", + "slug": "zealoid_prelate", + "gameRef": "", + "i18n": { + "en": { + "name": "Zealoid Prelate", + "icon": "npc/images/zealoid_prelate.6b54c855950c0c4d63228d5aff253a73.png", + "thumb": "npc/images/thumbs/zealoid_prelate.6b54c855950c0c4d63228d5aff253a73.128x128.png" + } + } + }, + { + "id": "62d2eff6751567007abb1698", + "slug": "feyarch_specter", + "gameRef": "", + "i18n": { + "en": { + "name": "Feyarch Specter", + "icon": "npc/images/feyarch_specter.3804313516969a34a8b9075669a42191.png", + "thumb": "npc/images/thumbs/feyarch_specter.3804313516969a34a8b9075669a42191.128x128.png" + } + } + }, + { + "id": "62d2eff7751567007abb169d", + "slug": "taro_nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Nullifier Crewman", + "icon": "npc/images/taro_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.png", + "thumb": "npc/images/thumbs/taro_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.128x128.png" + } + } + }, + { + "id": "62d2eff8751567007abb16ad", + "slug": "orm_vambac", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Vambac", + "icon": "npc/images/orm_vambac.83d94c41a5dff4d16601599e48eba2a5.png", + "thumb": "npc/images/thumbs/orm_vambac.83d94c41a5dff4d16601599e48eba2a5.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16ae", + "slug": "corrupted_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Moa", + "icon": "npc/images/corrupted_moa.057246ed57d49f3c239ac206cca83972.png", + "thumb": "npc/images/thumbs/corrupted_moa.057246ed57d49f3c239ac206cca83972.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16af", + "slug": "terra_elite_trencher", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Elite Trencher", + "icon": "npc/images/terra_elite_trencher.0c6206b3a5dc4dd28213d2734e296388.png", + "thumb": "npc/images/thumbs/terra_elite_trencher.0c6206b3a5dc4dd28213d2734e296388.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16b0", + "slug": "eidolon_gantulyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Eidolon Gantulyst", + "icon": "npc/images/eidolon_gantulyst.0c28cec52490e7a8a3e86389ec29cf97.png", + "thumb": "npc/images/thumbs/eidolon_gantulyst.0c28cec52490e7a8a3e86389ec29cf97.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16b1", + "slug": "frontier_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Eviscerator", + "icon": "npc/images/frontier_eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/frontier_eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16b2", + "slug": "narmer_nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Nullifier Crewman", + "icon": "npc/images/narmer_nullifier_crewman.1a513777f7bf6de87fd42ea3803c0ad4.png", + "thumb": "npc/images/thumbs/narmer_nullifier_crewman.1a513777f7bf6de87fd42ea3803c0ad4.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16b3", + "slug": "kuva_elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Elite Lancer", + "icon": "npc/images/kuva_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/kuva_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2eff9751567007abb16b4", + "slug": "auditor", + "gameRef": "", + "i18n": { + "en": { + "name": "Auditor", + "icon": "npc/images/auditor.3b1faf8f402b3f837f992a034748d899.png", + "thumb": "npc/images/thumbs/auditor.3b1faf8f402b3f837f992a034748d899.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16b6", + "slug": "infested_mesa", + "gameRef": "", + "i18n": { + "en": { + "name": "Infested Mesa", + "icon": "npc/images/infested_mesa.ca64e53aa60a7fba54ffe0a29fd38464.png", + "thumb": "npc/images/thumbs/infested_mesa.ca64e53aa60a7fba54ffe0a29fd38464.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16b7", + "slug": "leekter", + "gameRef": "", + "i18n": { + "en": { + "name": "Leekter", + "icon": "npc/images/leekter.631f1bdce5b1dafbe37067a810d07aae.png", + "thumb": "npc/images/thumbs/leekter.631f1bdce5b1dafbe37067a810d07aae.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16b8", + "slug": "terra_ambulas", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Ambulas", + "icon": "npc/images/terra_ambulas.e832eb2677a79425eb3ec472e206521f.png", + "thumb": "npc/images/thumbs/terra_ambulas.e832eb2677a79425eb3ec472e206521f.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16b9", + "slug": "vorac_nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Nullifier Crewman", + "icon": "npc/images/vorac_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.png", + "thumb": "npc/images/thumbs/vorac_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.128x128.png" + } + } + }, + { + "id": "62d2effa751567007abb16ba", + "slug": "vapos_oxium_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Oxium Osprey", + "icon": "npc/images/vapos_oxium_osprey.c811aca1fec4c8278d6c530a35a6a29a.png", + "thumb": "npc/images/thumbs/vapos_oxium_osprey.c811aca1fec4c8278d6c530a35a6a29a.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c0", + "slug": "kuva_jester", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Jester", + "icon": "npc/images/kuva_jester.678a776e61a0b374ae39f3527f73db12.png", + "thumb": "npc/images/thumbs/kuva_jester.678a776e61a0b374ae39f3527f73db12.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c1", + "slug": "rathuum_broadcaster", + "gameRef": "", + "i18n": { + "en": { + "name": "Rathuum Broadcaster", + "icon": "npc/images/rathuum_broadcaster.d833e05d184be73f7668944d81281ba2.png", + "thumb": "npc/images/thumbs/rathuum_broadcaster.d833e05d184be73f7668944d81281ba2.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c2", + "slug": "terra_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Shield Osprey", + "icon": "npc/images/terra_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/terra_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c3", + "slug": "narmer_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Shield Osprey", + "icon": "npc/images/narmer_shield_osprey.0df60c4ce12e041274989b94bbf5af7e.png", + "thumb": "npc/images/thumbs/narmer_shield_osprey.0df60c4ce12e041274989b94bbf5af7e.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c4", + "slug": "elite_taro_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Taro Weaver", + "icon": "npc/images/elite_taro_weaver.dbb69302b9f97acfad9e007545f641f8.png", + "thumb": "npc/images/thumbs/elite_taro_weaver.dbb69302b9f97acfad9e007545f641f8.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c5", + "slug": "tusk_trooper", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Trooper", + "icon": "npc/images/tusk_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.png", + "thumb": "npc/images/thumbs/tusk_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c6", + "slug": "narmer_thumper_bull", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Thumper Bull", + "icon": "npc/images/narmer_thumper_bull.c0362f100387b14f79e62c8c90fa5922.png", + "thumb": "npc/images/thumbs/narmer_thumper_bull.c0362f100387b14f79e62c8c90fa5922.128x128.png" + } + } + }, + { + "id": "62d2effb751567007abb16c7", + "slug": "rare_grineer_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Rare Grineer Storage Container", + "icon": "npc/images/rare_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/rare_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16c8", + "slug": "grineer_manic", + "gameRef": "", + "i18n": { + "en": { + "name": "Grineer Manic", + "icon": "npc/images/grineer_manic.eb4b2570f789dfc14ed1928f1a8ba4be.png", + "thumb": "npc/images/thumbs/grineer_manic.eb4b2570f789dfc14ed1928f1a8ba4be.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16c9", + "slug": "demolisher_expired", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Expired", + "icon": "npc/images/demolisher_expired.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_expired.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16ca", + "slug": "kosma_raider", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Raider", + "icon": "npc/images/kosma_raider.f642a6acaaf3e4d5f6052da3ec7e264c.png", + "thumb": "npc/images/thumbs/kosma_raider.f642a6acaaf3e4d5f6052da3ec7e264c.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16cb", + "slug": "deimos_carnis", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Carnis", + "icon": "npc/images/deimos_carnis.ea964412006b9dd67f5cd1505496fec1.png", + "thumb": "npc/images/thumbs/deimos_carnis.ea964412006b9dd67f5cd1505496fec1.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16cc", + "slug": "kosma_supressor", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Supressor", + "icon": "npc/images/kosma_supressor.234f818c6836a89a57d7fd1125351f11.png", + "thumb": "npc/images/thumbs/kosma_supressor.234f818c6836a89a57d7fd1125351f11.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16cd", + "slug": "kosma_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Eviscerator", + "icon": "npc/images/kosma_eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/kosma_eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16ce", + "slug": "stalker", + "gameRef": "", + "i18n": { + "en": { + "name": "Stalker", + "icon": "npc/images/stalker.f7fefda7eee9432f63de834012f1a7e2.png", + "thumb": "npc/images/thumbs/stalker.f7fefda7eee9432f63de834012f1a7e2.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16cf", + "slug": "corpus_supra_target", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Supra Target", + "icon": "npc/images/corpus_supra_target.244c3d209d075fa5960f44abfb486255.png", + "thumb": "npc/images/thumbs/corpus_supra_target.244c3d209d075fa5960f44abfb486255.128x128.png" + } + } + }, + { + "id": "62d2effc751567007abb16d0", + "slug": "ortholyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Ortholyst", + "icon": "npc/images/ortholyst.6793414275aa69fa952e0fb3f4615fee.png", + "thumb": "npc/images/thumbs/ortholyst.6793414275aa69fa952e0fb3f4615fee.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d1", + "slug": "kuva_napalm", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Napalm", + "icon": "npc/images/kuva_napalm.fb0facfe1e64e34c0697b91716e63b6c.png", + "thumb": "npc/images/thumbs/kuva_napalm.fb0facfe1e64e34c0697b91716e63b6c.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d2", + "slug": "charger", + "gameRef": "", + "i18n": { + "en": { + "name": "Charger", + "icon": "npc/images/charger.e9cbc418bf771466d283f411c7f65c33.png", + "thumb": "npc/images/thumbs/charger.e9cbc418bf771466d283f411c7f65c33.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d3", + "slug": "juno_geminex_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Geminex Moa", + "icon": "npc/images/juno_geminex_moa.1f9ddb896ce51f0cd8d1504955118e9c.png", + "thumb": "npc/images/thumbs/juno_geminex_moa.1f9ddb896ce51f0cd8d1504955118e9c.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d4", + "slug": "eidolon_vomvalyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Eidolon Vomvalyst", + "icon": "npc/images/eidolon_vomvalyst.e5616535a91a2d73f09eace9ac8df0be.png", + "thumb": "npc/images/thumbs/eidolon_vomvalyst.e5616535a91a2d73f09eace9ac8df0be.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d5", + "slug": "ghoul_devourer", + "gameRef": "", + "i18n": { + "en": { + "name": "Ghoul Devourer", + "icon": "npc/images/ghoul_devourer.a17801d53ae55ceb0a903fc663f125db.png", + "thumb": "npc/images/thumbs/ghoul_devourer.a17801d53ae55ceb0a903fc663f125db.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d6", + "slug": "drahk", + "gameRef": "", + "i18n": { + "en": { + "name": "Drahk", + "icon": "npc/images/drahk.57f272087f6b2dc779a36072ad6ef63d.png", + "thumb": "npc/images/thumbs/drahk.57f272087f6b2dc779a36072ad6ef63d.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d7", + "slug": "gyre_hyena", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Hyena", + "icon": "npc/images/gyre_hyena.8b3a21620de91dda2991ff1839a45550.png", + "thumb": "npc/images/thumbs/gyre_hyena.8b3a21620de91dda2991ff1839a45550.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d8", + "slug": "kosma_taktis", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Taktis", + "icon": "npc/images/kosma_taktis.3ca5265acfaf813cc71ccf12ebb7bf34.png", + "thumb": "npc/images/thumbs/kosma_taktis.3ca5265acfaf813cc71ccf12ebb7bf34.128x128.png" + } + } + }, + { + "id": "62d2effd751567007abb16d9", + "slug": "orphid_husks", + "gameRef": "", + "i18n": { + "en": { + "name": "Orphid Husks", + "icon": "npc/images/orphid_husks.8cf59ee9a8ed760ffc1d9ec82980930b.png", + "thumb": "npc/images/thumbs/orphid_husks.8cf59ee9a8ed760ffc1d9ec82980930b.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16da", + "slug": "vem_tabook", + "gameRef": "", + "i18n": { + "en": { + "name": "Vem Tabook", + "icon": "npc/images/vem_tabook.53b0e9e39c85a5afc5655b4660d9b12e.png", + "thumb": "npc/images/thumbs/vem_tabook.53b0e9e39c85a5afc5655b4660d9b12e.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16db", + "slug": "deimos_carnis_rex", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Carnis Rex", + "icon": "npc/images/deimos_carnis_rex.ea964412006b9dd67f5cd1505496fec1.png", + "thumb": "npc/images/thumbs/deimos_carnis_rex.ea964412006b9dd67f5cd1505496fec1.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16dc", + "slug": "kuva_hyekka_master", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Hyekka Master", + "icon": "npc/images/kuva_hyekka_master.007af40787b4c47db3f250998163dae9.png", + "thumb": "npc/images/thumbs/kuva_hyekka_master.007af40787b4c47db3f250998163dae9.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16dd", + "slug": "electric_crawler", + "gameRef": "", + "i18n": { + "en": { + "name": "Electric Crawler", + "icon": "npc/images/electric_crawler.863c8f86c1eddee630f613bd10348013.png", + "thumb": "npc/images/thumbs/electric_crawler.863c8f86c1eddee630f613bd10348013.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16de", + "slug": "eidolon_gantulyst_(special)", + "gameRef": "", + "i18n": { + "en": { + "name": "Eidolon Gantulyst (Special)", + "icon": "npc/images/eidolon_gantulyst_(special).2942a22690ae866e7bba7424d32df5ee.png", + "thumb": "npc/images/thumbs/eidolon_gantulyst_(special).2942a22690ae866e7bba7424d32df5ee.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16df", + "slug": "zanuka_hunter", + "gameRef": "", + "i18n": { + "en": { + "name": "Zanuka Hunter", + "icon": "npc/images/zanuka_hunter.be91e1d7dc5485e1259975dc0e8ac6a9.png", + "thumb": "npc/images/thumbs/zanuka_hunter.be91e1d7dc5485e1259975dc0e8ac6a9.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16e0", + "slug": "shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Shield Osprey", + "icon": "npc/images/shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16e1", + "slug": "exo_flak", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Flak", + "icon": "npc/images/exo_flak.f6b0a6a38fde1ab97c308ca6c5e23b15.png", + "thumb": "npc/images/thumbs/exo_flak.f6b0a6a38fde1ab97c308ca6c5e23b15.128x128.png" + } + } + }, + { + "id": "62d2effe751567007abb16e2", + "slug": "orm_nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Nullifier Crewman", + "icon": "npc/images/orm_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.png", + "thumb": "npc/images/thumbs/orm_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16e3", + "slug": "juno_sniper_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Sniper Crewman", + "icon": "npc/images/juno_sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.png", + "thumb": "npc/images/thumbs/juno_sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16e4", + "slug": "narmer_flameblade", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Flameblade", + "icon": "npc/images/narmer_flameblade.65608631bab1429d999cba356bf7e05c.png", + "thumb": "npc/images/thumbs/narmer_flameblade.65608631bab1429d999cba356bf7e05c.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16e5", + "slug": "vorac_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Crewman", + "icon": "npc/images/vorac_crewman.faa6e1bad4bc25010ee27c81859f89f5.png", + "thumb": "npc/images/thumbs/vorac_crewman.faa6e1bad4bc25010ee27c81859f89f5.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16e6", + "slug": "saturn_six_fugitive", + "gameRef": "", + "i18n": { + "en": { + "name": "Saturn Six Fugitive", + "icon": "npc/images/saturn_six_fugitive.ab067a5d13ae5a31bcbe74c7596b88fb.png", + "thumb": "npc/images/thumbs/saturn_six_fugitive.ab067a5d13ae5a31bcbe74c7596b88fb.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16e7", + "slug": "kosma_raider_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Raider Eviscerator", + "icon": "npc/images/kosma_raider_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.png", + "thumb": "npc/images/thumbs/kosma_raider_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16e8", + "slug": "taro_detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Detron Crewman", + "icon": "npc/images/taro_detron_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/taro_detron_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16e9", + "slug": "mimic", + "gameRef": "", + "i18n": { + "en": { + "name": "Mimic", + "icon": "npc/images/mimic.d78aa8d89c101abbc47d4633a809588a.png", + "thumb": "npc/images/thumbs/mimic.d78aa8d89c101abbc47d4633a809588a.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16ea", + "slug": "aurax_polaris_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Aurax Polaris Moa", + "icon": "npc/images/aurax_polaris_moa.ac01c5f4b9bcf9e9fdf8f6074e70be4e.png", + "thumb": "npc/images/thumbs/aurax_polaris_moa.ac01c5f4b9bcf9e9fdf8f6074e70be4e.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16eb", + "slug": "kosma_raider_carver", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Raider Carver", + "icon": "npc/images/kosma_raider_carver.820006e79e70526162b22b72c853bfc0.png", + "thumb": "npc/images/thumbs/kosma_raider_carver.820006e79e70526162b22b72c853bfc0.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16ec", + "slug": "cannon_battery", + "gameRef": "", + "i18n": { + "en": { + "name": "Cannon Battery", + "icon": "npc/images/cannon_battery.d5521599bcaee7eff15a82f2eeccdd5e.png", + "thumb": "npc/images/thumbs/cannon_battery.d5521599bcaee7eff15a82f2eeccdd5e.128x128.png" + } + } + }, + { + "id": "62d2efff751567007abb16ed", + "slug": "deimos_leaper", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Leaper", + "icon": "npc/images/deimos_leaper.de0a6ab3e37755e59366ebafde0ff6bd.png", + "thumb": "npc/images/thumbs/deimos_leaper.de0a6ab3e37755e59366ebafde0ff6bd.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16ee", + "slug": "terra_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Moa", + "icon": "npc/images/terra_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/terra_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16ef", + "slug": "fusion_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Fusion Moa", + "icon": "npc/images/fusion_moa.bc803b3d323abedd684957ed65e49a93.png", + "thumb": "npc/images/thumbs/fusion_moa.bc803b3d323abedd684957ed65e49a93.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16f0", + "slug": "denial_bursa", + "gameRef": "", + "i18n": { + "en": { + "name": "Denial Bursa", + "icon": "npc/images/denial_bursa.d684f28ad82e801905d5df98a7d37e92.png", + "thumb": "npc/images/thumbs/denial_bursa.d684f28ad82e801905d5df98a7d37e92.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16f1", + "slug": "narmer_disc_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Disc Moa", + "icon": "npc/images/narmer_disc_moa.cbc554795a7e0ae135299eefa30b10f9.png", + "thumb": "npc/images/thumbs/narmer_disc_moa.cbc554795a7e0ae135299eefa30b10f9.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16f2", + "slug": "demolisher_kuva_guardian", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Kuva Guardian", + "icon": "npc/images/demolisher_kuva_guardian.8ac76fc981cad45a61af75608d07e429.png", + "thumb": "npc/images/thumbs/demolisher_kuva_guardian.8ac76fc981cad45a61af75608d07e429.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16f3", + "slug": "vorac_ranger_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Ranger Crewman", + "icon": "npc/images/vorac_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.png", + "thumb": "npc/images/thumbs/vorac_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16f4", + "slug": "trooper", + "gameRef": "", + "i18n": { + "en": { + "name": "Trooper", + "icon": "npc/images/trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.png", + "thumb": "npc/images/thumbs/trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.128x128.png" + } + } + }, + { + "id": "62d2f000751567007abb16f5", + "slug": "axio_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Harpi", + "icon": "npc/images/axio_harpi.062973ab342fcf0ddee4302f2a70cd33.png", + "thumb": "npc/images/thumbs/axio_harpi.062973ab342fcf0ddee4302f2a70cd33.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16f6", + "slug": "scorpion", + "gameRef": "", + "i18n": { + "en": { + "name": "Scorpion", + "icon": "npc/images/scorpion.de54a57bd66bd2e5e1e93b5032efcba5.png", + "thumb": "npc/images/thumbs/scorpion.de54a57bd66bd2e5e1e93b5032efcba5.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16f7", + "slug": "vapos_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Moa", + "icon": "npc/images/vapos_moa.d75ce40bdd8c1142a705131fcb214523.png", + "thumb": "npc/images/thumbs/vapos_moa.d75ce40bdd8c1142a705131fcb214523.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16f8", + "slug": "powerfist", + "gameRef": "", + "i18n": { + "en": { + "name": "Powerfist", + "icon": "npc/images/powerfist.3b350e62e7ae05488982edd348673298.png", + "thumb": "npc/images/thumbs/powerfist.3b350e62e7ae05488982edd348673298.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16f9", + "slug": "conculyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Conculyst", + "icon": "npc/images/conculyst.39af3751f71f7baf21fe426281086240.png", + "thumb": "npc/images/thumbs/conculyst.39af3751f71f7baf21fe426281086240.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16fa", + "slug": "orm_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Tech", + "icon": "npc/images/orm_tech.8e0f3783f13b45c61aaeefe2445d81c9.png", + "thumb": "npc/images/thumbs/orm_tech.8e0f3783f13b45c61aaeefe2445d81c9.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16fb", + "slug": "tar_mutalist_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Tar Mutalist Moa", + "icon": "npc/images/tar_mutalist_moa.b2713a12777a19344f1711a018b41b58.png", + "thumb": "npc/images/thumbs/tar_mutalist_moa.b2713a12777a19344f1711a018b41b58.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16fc", + "slug": "arid_trooper", + "gameRef": "", + "i18n": { + "en": { + "name": "Arid Trooper", + "icon": "npc/images/arid_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.png", + "thumb": "npc/images/thumbs/arid_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.128x128.png" + } + } + }, + { + "id": "62d2f001751567007abb16fd", + "slug": "lynx", + "gameRef": "", + "i18n": { + "en": { + "name": "Lynx", + "icon": "npc/images/lynx.9a116cf51635f5cdc48710cc87899f0a.png", + "thumb": "npc/images/thumbs/lynx.9a116cf51635f5cdc48710cc87899f0a.128x128.png" + } + } + }, + { + "id": "62d2f002751567007abb16fe", + "slug": "corrupted_nullifier", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Nullifier", + "icon": "npc/images/corrupted_nullifier.d938e214e2705524737ed7fca9212bb3.png", + "thumb": "npc/images/thumbs/corrupted_nullifier.d938e214e2705524737ed7fca9212bb3.128x128.png" + } + } + }, + { + "id": "62d2f002751567007abb16ff", + "slug": "corrupted_vor", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Vor", + "icon": "npc/images/corrupted_vor.2068956b981c52b8ae3096fdbf5418fd.png", + "thumb": "npc/images/thumbs/corrupted_vor.2068956b981c52b8ae3096fdbf5418fd.128x128.png" + } + } + }, + { + "id": "62d2f002751567007abb1700", + "slug": "tusk_dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Dargyn", + "icon": "npc/images/tusk_dargyn.c0362f100387b14f79e62c8c90fa5922.png", + "thumb": "npc/images/thumbs/tusk_dargyn.c0362f100387b14f79e62c8c90fa5922.128x128.png" + } + } + }, + { + "id": "62d2f002751567007abb1701", + "slug": "elite_vorac_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Vorac Harpi", + "icon": "npc/images/elite_vorac_harpi.062973ab342fcf0ddee4302f2a70cd33.png", + "thumb": "npc/images/thumbs/elite_vorac_harpi.062973ab342fcf0ddee4302f2a70cd33.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1702", + "slug": "kuva_trooper", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Trooper", + "icon": "npc/images/kuva_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.png", + "thumb": "npc/images/thumbs/kuva_trooper.e971b3a0ea5b02ce760fe3ed0e29c8bc.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1703", + "slug": "elite_kosma_flak", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Kosma Flak", + "icon": "npc/images/elite_kosma_flak.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_kosma_flak.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1704", + "slug": "juno_nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Nullifier Crewman", + "icon": "npc/images/juno_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.png", + "thumb": "npc/images/thumbs/juno_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1705", + "slug": "corrupted_ancient", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Ancient", + "icon": "npc/images/corrupted_ancient.117b15a0ea81740520e141733fe02410.png", + "thumb": "npc/images/thumbs/corrupted_ancient.117b15a0ea81740520e141733fe02410.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1706", + "slug": "elite_taro_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Taro Basilisk", + "icon": "npc/images/elite_taro_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.png", + "thumb": "npc/images/thumbs/elite_taro_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1707", + "slug": "elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Lancer", + "icon": "npc/images/elite_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/elite_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1708", + "slug": "ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Ranger", + "icon": "npc/images/ranger.4760c5f0874951fdb5e0ae441473296a.png", + "thumb": "npc/images/thumbs/ranger.4760c5f0874951fdb5e0ae441473296a.128x128.png" + } + } + }, + { + "id": "62d2f003751567007abb1709", + "slug": "mite_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Mite Raknoid", + "icon": "npc/images/mite_raknoid.903d6ae9adb8f32951508edc7a8551dd.png", + "thumb": "npc/images/thumbs/mite_raknoid.903d6ae9adb8f32951508edc7a8551dd.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb170a", + "slug": "taro_secura_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Secura Osprey", + "icon": "npc/images/taro_secura_osprey.f31800d6a600fe2d8516922a339f6ae2.png", + "thumb": "npc/images/thumbs/taro_secura_osprey.f31800d6a600fe2d8516922a339f6ae2.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb170b", + "slug": "axio_shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Shockwave Moa", + "icon": "npc/images/axio_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.png", + "thumb": "npc/images/thumbs/axio_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb170c", + "slug": "carabus", + "gameRef": "", + "i18n": { + "en": { + "name": "Carabus", + "icon": "npc/images/carabus.d6ddff1513c94181b27c0d38dfcc3ef6.png", + "thumb": "npc/images/thumbs/carabus.d6ddff1513c94181b27c0d38dfcc3ef6.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb170d", + "slug": "nauseous_void_shade", + "gameRef": "", + "i18n": { + "en": { + "name": "Nauseous Void Shade", + "icon": "npc/images/nauseous_void_shade.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/nauseous_void_shade.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb170e", + "slug": "sap_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Sap Comba", + "icon": "npc/images/sap_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/sap_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb170f", + "slug": "orb_vallis_spaceport_enemies", + "gameRef": "", + "i18n": { + "en": { + "name": "Orb Vallis - Spaceport Enemies", + "icon": "npc/images/orb_vallis_spaceport_enemies.c16604695d6589e7b3e98a89323172f4.png", + "thumb": "npc/images/thumbs/orb_vallis_spaceport_enemies.c16604695d6589e7b3e98a89323172f4.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb1710", + "slug": "terra_oxium_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Oxium Osprey", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "62d2f004751567007abb1711", + "slug": "kuva_drahk", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Drahk", + "icon": "npc/images/kuva_drahk.57f272087f6b2dc779a36072ad6ef63d.png", + "thumb": "npc/images/thumbs/kuva_drahk.57f272087f6b2dc779a36072ad6ef63d.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb1712", + "slug": "mutalist_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Mutalist Osprey", + "icon": "npc/images/mutalist_osprey.091599706750bd2de45b2334a49d0960.png", + "thumb": "npc/images/thumbs/mutalist_osprey.091599706750bd2de45b2334a49d0960.128x128.png" + } + } + }, + { + "id": "62d2f004751567007abb1713", + "slug": "axio_detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Detron Crewman", + "icon": "npc/images/axio_detron_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/axio_detron_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb1714", + "slug": "boiler", + "gameRef": "", + "i18n": { + "en": { + "name": "Boiler", + "icon": "npc/images/boiler.b1ee75d668adaf4f47624d0c38835972.png", + "thumb": "npc/images/thumbs/boiler.b1ee75d668adaf4f47624d0c38835972.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb1715", + "slug": "vapos_sniper_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Sniper Crewman", + "icon": "npc/images/vapos_sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.png", + "thumb": "npc/images/thumbs/vapos_sniper_crewman.7f8d3daae8a50478c1ba1ac3a93c2f7c.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb1716", + "slug": "vorac_gox", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Gox", + "icon": "npc/images/vorac_gox.9744c87fd0eb4364a77617e815ca097d.png", + "thumb": "npc/images/thumbs/vorac_gox.9744c87fd0eb4364a77617e815ca097d.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb1717", + "slug": "orm_stropha_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Stropha Crewman", + "icon": "npc/images/orm_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.png", + "thumb": "npc/images/thumbs/orm_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb1718", + "slug": "jad_teran", + "gameRef": "", + "i18n": { + "en": { + "name": "Jad Teran", + "icon": "npc/images/jad_teran.d885e5bc5b053bdc9eefd5f55be4c966.png", + "thumb": "npc/images/thumbs/jad_teran.d885e5bc5b053bdc9eefd5f55be4c966.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb1719", + "slug": "orm_ranger_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Ranger Crewman", + "icon": "npc/images/orm_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.png", + "thumb": "npc/images/thumbs/orm_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb171a", + "slug": "elite_orm_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Orm Basilisk", + "icon": "npc/images/elite_orm_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.png", + "thumb": "npc/images/thumbs/elite_orm_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb171b", + "slug": "optio", + "gameRef": "", + "i18n": { + "en": { + "name": "Optio", + "icon": "npc/images/optio.d5246ad338bf8f0a0350851e20737c90.png", + "thumb": "npc/images/thumbs/optio.d5246ad338bf8f0a0350851e20737c90.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb171c", + "slug": "tusk_command_dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Command Dargyn", + "icon": "npc/images/tusk_command_dargyn.68f5bec689e42b96108eecfb51d2fc4d.png", + "thumb": "npc/images/thumbs/tusk_command_dargyn.68f5bec689e42b96108eecfb51d2fc4d.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb171d", + "slug": "kosma_outrider", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Outrider", + "icon": "npc/images/kosma_outrider.0d39d2a885eac433fa99f3a845cd6265.png", + "thumb": "npc/images/thumbs/kosma_outrider.0d39d2a885eac433fa99f3a845cd6265.128x128.png" + } + } + }, + { + "id": "62d2f005751567007abb171e", + "slug": "taro_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Tech", + "icon": "npc/images/taro_tech.8e0f3783f13b45c61aaeefe2445d81c9.png", + "thumb": "npc/images/thumbs/taro_tech.8e0f3783f13b45c61aaeefe2445d81c9.128x128.png" + } + } + }, + { + "id": "62d2f006751567007abb171f", + "slug": "toxic_crawler", + "gameRef": "", + "i18n": { + "en": { + "name": "Toxic Crawler", + "icon": "npc/images/toxic_crawler.88331665dd6d1515b3a5a45d1e5b6012.png", + "thumb": "npc/images/thumbs/toxic_crawler.88331665dd6d1515b3a5a45d1e5b6012.128x128.png" + } + } + }, + { + "id": "62d2f006751567007abb1720", + "slug": "amalgam_cinder_machinist", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Cinder Machinist", + "icon": "npc/images/amalgam_cinder_machinist.ce342066803dd39f6ec2ad598291d463.png", + "thumb": "npc/images/thumbs/amalgam_cinder_machinist.ce342066803dd39f6ec2ad598291d463.128x128.png" + } + } + }, + { + "id": "62d2f006751567007abb1721", + "slug": "demolisher_devourer", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Devourer", + "icon": "npc/images/demolisher_devourer.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_devourer.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f006751567007abb1722", + "slug": "general_sargas_ruk", + "gameRef": "", + "i18n": { + "en": { + "name": "General Sargas Ruk", + "icon": "npc/images/general_sargas_ruk.41870b2ffd2d0679c92d631fafa39bc5.png", + "thumb": "npc/images/thumbs/general_sargas_ruk.41870b2ffd2d0679c92d631fafa39bc5.128x128.png" + } + } + }, + { + "id": "62d2f006751567007abb1723", + "slug": "chroma", + "gameRef": "", + "i18n": { + "en": { + "name": "Chroma", + "icon": "npc/images/chroma.78c1c652e7c2c0c97d9751616668036e.png", + "thumb": "npc/images/thumbs/chroma.78c1c652e7c2c0c97d9751616668036e.128x128.png" + } + } + }, + { + "id": "62d2f007751567007abb1724", + "slug": "misery_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Misery (Level 0 - 100)", + "icon": "npc/images/misery_(level_0_100).0b31adb4276d346e800bfcb004ede227.png", + "thumb": "npc/images/thumbs/misery_(level_0_100).0b31adb4276d346e800bfcb004ede227.128x128.png" + } + } + }, + { + "id": "62d2f007751567007abb1725", + "slug": "armis_ulta", + "gameRef": "", + "i18n": { + "en": { + "name": "Armis Ulta", + "icon": "npc/images/armis_ulta.79b3407af4515a0716e763c687aa9798.png", + "thumb": "npc/images/thumbs/armis_ulta.79b3407af4515a0716e763c687aa9798.128x128.png" + } + } + }, + { + "id": "62d2f007751567007abb1726", + "slug": "narmer_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Heavy Gunner", + "icon": "npc/images/narmer_heavy_gunner.ede6b0be25edadaa76f61d68cb81ff9c.png", + "thumb": "npc/images/thumbs/narmer_heavy_gunner.ede6b0be25edadaa76f61d68cb81ff9c.128x128.png" + } + } + }, + { + "id": "62d2f007751567007abb1727", + "slug": "taro_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Elite Crewman", + "icon": "npc/images/taro_elite_crewman.79d2a9790f023183b3dcca186a68fcda.png", + "thumb": "npc/images/thumbs/taro_elite_crewman.79d2a9790f023183b3dcca186a68fcda.128x128.png" + } + } + }, + { + "id": "62d2f007751567007abb1728", + "slug": "elite_arid_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Arid Lancer", + "icon": "npc/images/elite_arid_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/elite_arid_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f007751567007abb1729", + "slug": "eidolon_hydrolyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Eidolon Hydrolyst", + "icon": "npc/images/eidolon_hydrolyst.a27cd238e562f5e5d7e5817f9da1d573.png", + "thumb": "npc/images/thumbs/eidolon_hydrolyst.a27cd238e562f5e5d7e5817f9da1d573.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb172a", + "slug": "leaping_thrasher", + "gameRef": "", + "i18n": { + "en": { + "name": "Leaping Thrasher", + "icon": "npc/images/leaping_thrasher.6f0e5904606bcb808e52d176188e2497.png", + "thumb": "npc/images/thumbs/leaping_thrasher.6f0e5904606bcb808e52d176188e2497.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb172b", + "slug": "venkra_tel", + "gameRef": "", + "i18n": { + "en": { + "name": "Ven'Kra Tel", + "icon": "npc/images/venkra_tel.71b13b9fd8ab1f53667aa6f4a30fa533.png", + "thumb": "npc/images/thumbs/venkra_tel.71b13b9fd8ab1f53667aa6f4a30fa533.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb172c", + "slug": "crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Crewman", + "icon": "npc/images/crewman.56e580d1935130bd4712540f48a65763.png", + "thumb": "npc/images/thumbs/crewman.56e580d1935130bd4712540f48a65763.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb172d", + "slug": "amalgam_alkonost", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Alkonost", + "icon": "npc/images/amalgam_alkonost.4fb7412ceae1f296b5763fff8e5d76cd.png", + "thumb": "npc/images/thumbs/amalgam_alkonost.4fb7412ceae1f296b5763fff8e5d76cd.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb172e", + "slug": "sapping_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Sapping Osprey", + "icon": "npc/images/sapping_osprey.baf46cde3756240683515edb9e5ff03b.png", + "thumb": "npc/images/thumbs/sapping_osprey.baf46cde3756240683515edb9e5ff03b.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb172f", + "slug": "gox", + "gameRef": "", + "i18n": { + "en": { + "name": "Gox", + "icon": "npc/images/gox.9744c87fd0eb4364a77617e815ca097d.png", + "thumb": "npc/images/thumbs/gox.9744c87fd0eb4364a77617e815ca097d.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb1730", + "slug": "j3_jordas_golem", + "gameRef": "", + "i18n": { + "en": { + "name": "J3 Jordas Golem", + "icon": "npc/images/j3_jordas_golem.da602a2baa4f18f26785ebfb95285cd2.png", + "thumb": "npc/images/thumbs/j3_jordas_golem.da602a2baa4f18f26785ebfb95285cd2.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb1731", + "slug": "scyto_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Scyto Raknoid", + "icon": "npc/images/scyto_raknoid.7a620b1e7306df1d7283151860327abd.png", + "thumb": "npc/images/thumbs/scyto_raknoid.7a620b1e7306df1d7283151860327abd.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb1732", + "slug": "vapos_detron_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Detron Ranger", + "icon": "npc/images/vapos_detron_ranger.389f78b890957edf17978d48832b8ffd.png", + "thumb": "npc/images/thumbs/vapos_detron_ranger.389f78b890957edf17978d48832b8ffd.128x128.png" + } + } + }, + { + "id": "62d2f008751567007abb1733", + "slug": "nul_scrambus", + "gameRef": "", + "i18n": { + "en": { + "name": "Nul Scrambus", + "icon": "npc/images/nul_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.png", + "thumb": "npc/images/thumbs/nul_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb1734", + "slug": "tusk_predator", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Predator", + "icon": "npc/images/tusk_predator.021f9bfac0f68c04a78b24025b70957c.png", + "thumb": "npc/images/thumbs/tusk_predator.021f9bfac0f68c04a78b24025b70957c.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb1735", + "slug": "tusk_napalm", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Napalm", + "icon": "npc/images/tusk_napalm.fb0facfe1e64e34c0697b91716e63b6c.png", + "thumb": "npc/images/thumbs/tusk_napalm.fb0facfe1e64e34c0697b91716e63b6c.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb1736", + "slug": "corrupted_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Lancer", + "icon": "npc/images/corrupted_lancer.48046a45742a0343942847c46b9af764.png", + "thumb": "npc/images/thumbs/corrupted_lancer.48046a45742a0343942847c46b9af764.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb1737", + "slug": "carrion_charger", + "gameRef": "", + "i18n": { + "en": { + "name": "Carrion Charger", + "icon": "npc/images/carrion_charger.e9cbc418bf771466d283f411c7f65c33.png", + "thumb": "npc/images/thumbs/carrion_charger.e9cbc418bf771466d283f411c7f65c33.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb1738", + "slug": "terra_elite_embattor_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Elite Embattor Moa", + "icon": "npc/images/terra_elite_embattor_moa.ba9422c4061ed43a2f353e2f82ba788e.png", + "thumb": "npc/images/thumbs/terra_elite_embattor_moa.ba9422c4061ed43a2f353e2f82ba788e.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb1739", + "slug": "demolisher_charger", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Charger", + "icon": "npc/images/demolisher_charger.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_charger.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb173a", + "slug": "nascent_membroid", + "gameRef": "", + "i18n": { + "en": { + "name": "Nascent Membroid", + "icon": "npc/images/nascent_membroid.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/nascent_membroid.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb173b", + "slug": "vorac_zerca", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Zerca", + "icon": "npc/images/vorac_zerca.8b088ae856a60902ee436f12f8fac2b1.png", + "thumb": "npc/images/thumbs/vorac_zerca.8b088ae856a60902ee436f12f8fac2b1.128x128.png" + } + } + }, + { + "id": "62d2f009751567007abb173c", + "slug": "demolisher_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Heavy Gunner", + "icon": "npc/images/demolisher_heavy_gunner.216c1043314a854e46b8b42ceacf1631.png", + "thumb": "npc/images/thumbs/demolisher_heavy_gunner.216c1043314a854e46b8b42ceacf1631.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb173d", + "slug": "quanta_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Quanta Ranger", + "icon": "npc/images/quanta_ranger.35eb604fee449105e975eb5796bf6e73.png", + "thumb": "npc/images/thumbs/quanta_ranger.35eb604fee449105e975eb5796bf6e73.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb173e", + "slug": "derim_zahn", + "gameRef": "", + "i18n": { + "en": { + "name": "Derim Zahn", + "icon": "npc/images/derim_zahn.7667c5a92470675864080da22d504359.png", + "thumb": "npc/images/thumbs/derim_zahn.7667c5a92470675864080da22d504359.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb173f", + "slug": "frontier_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Heavy Gunner", + "icon": "npc/images/frontier_heavy_gunner.216c1043314a854e46b8b42ceacf1631.png", + "thumb": "npc/images/thumbs/frontier_heavy_gunner.216c1043314a854e46b8b42ceacf1631.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb1740", + "slug": "tarask_bursa", + "gameRef": "", + "i18n": { + "en": { + "name": "Tarask Bursa", + "icon": "npc/images/tarask_bursa.8379f4aec72ed4e5d37cce2721403e98.png", + "thumb": "npc/images/thumbs/tarask_bursa.8379f4aec72ed4e5d37cce2721403e98.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb1741", + "slug": "juno_jactus_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Jactus Osprey", + "icon": "npc/images/juno_jactus_osprey.7f0d0147c68d45d24d00ab8d1a42fa5a.png", + "thumb": "npc/images/thumbs/juno_jactus_osprey.7f0d0147c68d45d24d00ab8d1a42fa5a.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb1742", + "slug": "elite_kosma_taktis", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Kosma Taktis", + "icon": "npc/images/elite_kosma_taktis.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_kosma_taktis.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb1743", + "slug": "raptor_rx", + "gameRef": "", + "i18n": { + "en": { + "name": "Raptor Rx", + "icon": "npc/images/raptor_rx.2aebd5e1b9b57ab0f5066464e079c566.png", + "thumb": "npc/images/thumbs/raptor_rx.2aebd5e1b9b57ab0f5066464e079c566.128x128.png" + } + } + }, + { + "id": "62d2f00a751567007abb1744", + "slug": "orokin_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Orokin Drone", + "icon": "npc/images/orokin_drone.4645a430807f582f1c2671d3723ed0b1.png", + "thumb": "npc/images/thumbs/orokin_drone.4645a430807f582f1c2671d3723ed0b1.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb1745", + "slug": "kuva_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Eviscerator", + "icon": "npc/images/kuva_eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/kuva_eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb1746", + "slug": "icemire_hyena", + "gameRef": "", + "i18n": { + "en": { + "name": "Icemire Hyena", + "icon": "npc/images/icemire_hyena.b10c8904a6876492ada1d966aea059ff.png", + "thumb": "npc/images/thumbs/icemire_hyena.b10c8904a6876492ada1d966aea059ff.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb1747", + "slug": "vapos_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Elite Crewman", + "icon": "npc/images/vapos_elite_crewman.79d2a9790f023183b3dcca186a68fcda.png", + "thumb": "npc/images/thumbs/vapos_elite_crewman.79d2a9790f023183b3dcca186a68fcda.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb1748", + "slug": "anu_pyrolyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Anu Pyrolyst", + "icon": "npc/images/anu_pyrolyst.d2aae007a52d252596ed78f2375aaf74.png", + "thumb": "npc/images/thumbs/anu_pyrolyst.d2aae007a52d252596ed78f2375aaf74.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb1749", + "slug": "arid_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Arid Heavy Gunner", + "icon": "npc/images/arid_heavy_gunner.216c1043314a854e46b8b42ceacf1631.png", + "thumb": "npc/images/thumbs/arid_heavy_gunner.216c1043314a854e46b8b42ceacf1631.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb174a", + "slug": "demolisher_juggernaut", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Juggernaut", + "icon": "npc/images/demolisher_juggernaut.cf61f649e0c810a90038c14755167a3d.png", + "thumb": "npc/images/thumbs/demolisher_juggernaut.cf61f649e0c810a90038c14755167a3d.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb174b", + "slug": "demolisher_bursa", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Bursa", + "icon": "npc/images/demolisher_bursa.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_bursa.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb174c", + "slug": "taro_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Crewman", + "icon": "npc/images/taro_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/taro_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb174d", + "slug": "exo_raider_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Raider Eviscerator", + "icon": "npc/images/exo_raider_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.png", + "thumb": "npc/images/thumbs/exo_raider_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb174e", + "slug": "elite_orm_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Orm Weaver", + "icon": "npc/images/elite_orm_weaver.dbb69302b9f97acfad9e007545f641f8.png", + "thumb": "npc/images/thumbs/elite_orm_weaver.dbb69302b9f97acfad9e007545f641f8.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb174f", + "slug": "kuva_drahk_master", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Drahk Master", + "icon": "npc/images/kuva_drahk_master.48fb8182dac957c5e7ba145e433cf080.png", + "thumb": "npc/images/thumbs/kuva_drahk_master.48fb8182dac957c5e7ba145e433cf080.128x128.png" + } + } + }, + { + "id": "62d2f00b751567007abb1750", + "slug": "terra_elite_raptor_sx", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Elite Raptor Sx", + "icon": "npc/images/terra_elite_raptor_sx.d41821984b8f1c36ee3a54598b2e1786.png", + "thumb": "npc/images/thumbs/terra_elite_raptor_sx.d41821984b8f1c36ee3a54598b2e1786.128x128.png" + } + } + }, + { + "id": "62d2f00c751567007abb1751", + "slug": "thermic_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Thermic Raknoid", + "icon": "npc/images/thermic_raknoid.903d6ae9adb8f32951508edc7a8551dd.png", + "thumb": "npc/images/thumbs/thermic_raknoid.903d6ae9adb8f32951508edc7a8551dd.128x128.png" + } + } + }, + { + "id": "62d2f00c751567007abb1752", + "slug": "vorac_disc_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Disc Moa", + "icon": "npc/images/vorac_disc_moa.d1465e09c31a3212857b834445f7f4a9.png", + "thumb": "npc/images/thumbs/vorac_disc_moa.d1465e09c31a3212857b834445f7f4a9.128x128.png" + } + } + }, + { + "id": "62d2f00c751567007abb1753", + "slug": "narmer_napalm", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Napalm", + "icon": "npc/images/narmer_napalm.1e3618f6300fd975252ea84c567078d6.png", + "thumb": "npc/images/thumbs/narmer_napalm.1e3618f6300fd975252ea84c567078d6.128x128.png" + } + } + }, + { + "id": "62d2f00c751567007abb1754", + "slug": "latcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Latcher", + "icon": "npc/images/latcher.89517f82844c3f6d67e6a18cdf220963.png", + "thumb": "npc/images/thumbs/latcher.89517f82844c3f6d67e6a18cdf220963.128x128.png" + } + } + }, + { + "id": "62d2f00c751567007abb1755", + "slug": "deimos_ancient_healer", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Ancient Healer", + "icon": "npc/images/deimos_ancient_healer.bb47c27e6a845206e97793d43f1424b5.png", + "thumb": "npc/images/thumbs/deimos_ancient_healer.bb47c27e6a845206e97793d43f1424b5.128x128.png" + } + } + }, + { + "id": "62d2f00c751567007abb1756", + "slug": "primm", + "gameRef": "", + "i18n": { + "en": { + "name": "Primm", + "icon": "npc/images/primm.54d7e722cd8a4677a32ef5cdcfc8e109.png", + "thumb": "npc/images/thumbs/primm.54d7e722cd8a4677a32ef5cdcfc8e109.128x128.png" + } + } + }, + { + "id": "62d2f00c751567007abb1757", + "slug": "hyekka", + "gameRef": "", + "i18n": { + "en": { + "name": "Hyekka", + "icon": "npc/images/hyekka.6271aca602d646361bbde5214fd30eb4.png", + "thumb": "npc/images/thumbs/hyekka.6271aca602d646361bbde5214fd30eb4.128x128.png" + } + } + }, + { + "id": "62d2f00d751567007abb1758", + "slug": "attack_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Attack Drone", + "icon": "npc/images/attack_drone.890f5f9c0dc36aea21e33f44dc90dc84.png", + "thumb": "npc/images/thumbs/attack_drone.890f5f9c0dc36aea21e33f44dc90dc84.128x128.png" + } + } + }, + { + "id": "62d2f00d751567007abb1759", + "slug": "frontier_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Butcher", + "icon": "npc/images/frontier_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/frontier_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f00d751567007abb175a", + "slug": "exo_cutter", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Cutter", + "icon": "npc/images/exo_cutter.a2b2c40ff309c02a264cba04ddaa500e.png", + "thumb": "npc/images/thumbs/exo_cutter.a2b2c40ff309c02a264cba04ddaa500e.128x128.png" + } + } + }, + { + "id": "62d2f00d751567007abb175b", + "slug": "mine_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Mine Osprey", + "icon": "npc/images/mine_osprey.cd12031a88e36ea4c7712c980b066997.png", + "thumb": "npc/images/thumbs/mine_osprey.cd12031a88e36ea4c7712c980b066997.128x128.png" + } + } + }, + { + "id": "62d2f00d751567007abb175c", + "slug": "elite_axio_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Axio Basilisk", + "icon": "npc/images/elite_axio_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.png", + "thumb": "npc/images/thumbs/elite_axio_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.128x128.png" + } + } + }, + { + "id": "62d2f00d751567007abb175d", + "slug": "terra_elite_overtaker", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Elite Overtaker", + "icon": "npc/images/terra_elite_overtaker.0bd236d6455ec6d7bb07226e5438fa5d.png", + "thumb": "npc/images/thumbs/terra_elite_overtaker.0bd236d6455ec6d7bb07226e5438fa5d.128x128.png" + } + } + }, + { + "id": "62d2f00e751567007abb175e", + "slug": "tusk_flameblade", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Flameblade", + "icon": "npc/images/tusk_flameblade.0b9b97b8e2427ceaa66da1a343f879cd.png", + "thumb": "npc/images/thumbs/tusk_flameblade.0b9b97b8e2427ceaa66da1a343f879cd.128x128.png" + } + } + }, + { + "id": "62d2f00e751567007abb175f", + "slug": "remech_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Remech Osprey", + "icon": "npc/images/remech_osprey.263955ee8524f502c1e11ac483f1d74d.png", + "thumb": "npc/images/thumbs/remech_osprey.263955ee8524f502c1e11ac483f1d74d.128x128.png" + } + } + }, + { + "id": "62d2f00e751567007abb1760", + "slug": "elite_gyre_cutter", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Gyre Cutter", + "icon": "npc/images/elite_gyre_cutter.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_gyre_cutter.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f00e751567007abb1761", + "slug": "juno_nul_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Nul Comba", + "icon": "npc/images/juno_nul_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/juno_nul_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f00e751567007abb1762", + "slug": "taro_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Weaver", + "icon": "npc/images/taro_weaver.b251630242173cc99fe10d2352e1f8fb.png", + "thumb": "npc/images/thumbs/taro_weaver.b251630242173cc99fe10d2352e1f8fb.128x128.png" + } + } + }, + { + "id": "62d2f00e751567007abb1763", + "slug": "forgotten_grineer_storage_container_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Forgotten Grineer Storage Container (Level 0 - 100)", + "icon": "npc/images/forgotten_grineer_storage_container_(level_0_100).c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/forgotten_grineer_storage_container_(level_0_100).c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f00e751567007abb1764", + "slug": "tusk_heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Heavy Gunner", + "icon": "npc/images/tusk_heavy_gunner.216c1043314a854e46b8b42ceacf1631.png", + "thumb": "npc/images/thumbs/tusk_heavy_gunner.216c1043314a854e46b8b42ceacf1631.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb1765", + "slug": "kuva_hyekka", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Hyekka", + "icon": "npc/images/kuva_hyekka.6271aca602d646361bbde5214fd30eb4.png", + "thumb": "npc/images/thumbs/kuva_hyekka.6271aca602d646361bbde5214fd30eb4.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb1766", + "slug": "orm_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Basilisk", + "icon": "npc/images/orm_basilisk.f0389f24dacf60d5918f955d27c0a5e7.png", + "thumb": "npc/images/thumbs/orm_basilisk.f0389f24dacf60d5918f955d27c0a5e7.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb1767", + "slug": "vapos_tech_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Tech Ranger", + "icon": "npc/images/vapos_tech_ranger.3a0017fbecedd1f9c659a467e3702f0f.png", + "thumb": "npc/images/thumbs/vapos_tech_ranger.3a0017fbecedd1f9c659a467e3702f0f.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb1768", + "slug": "gyre_gokstad_officer", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Gokstad Officer", + "icon": "npc/images/gyre_gokstad_officer.664087b3dc0d7a3d750ed00d3b0bf7e0.png", + "thumb": "npc/images/thumbs/gyre_gokstad_officer.664087b3dc0d7a3d750ed00d3b0bf7e0.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb1769", + "slug": "vapos_anti_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Anti Moa", + "icon": "npc/images/vapos_anti_moa.d75ce40bdd8c1142a705131fcb214523.png", + "thumb": "npc/images/thumbs/vapos_anti_moa.d75ce40bdd8c1142a705131fcb214523.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb176a", + "slug": "gyre_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Eviscerator", + "icon": "npc/images/gyre_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.png", + "thumb": "npc/images/thumbs/gyre_eviscerator.77be53161b3cda8cb3ce23f41b3d54fc.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb176b", + "slug": "rabbleback_hyena", + "gameRef": "", + "i18n": { + "en": { + "name": "Rabbleback Hyena", + "icon": "npc/images/rabbleback_hyena.e377548c9f616b3b413aeb9bbb53024f.png", + "thumb": "npc/images/thumbs/rabbleback_hyena.e377548c9f616b3b413aeb9bbb53024f.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb176c", + "slug": "juno_malleus_machinist", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Malleus Machinist", + "icon": "npc/images/juno_malleus_machinist.8b958c0163d248bd547b38357dfd6b42.png", + "thumb": "npc/images/thumbs/juno_malleus_machinist.8b958c0163d248bd547b38357dfd6b42.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb176d", + "slug": "venin_mutalist", + "gameRef": "", + "i18n": { + "en": { + "name": "Venin Mutalist", + "icon": "npc/images/venin_mutalist.4c8c33c88cade4861efbefc77770d72a.png", + "thumb": "npc/images/thumbs/venin_mutalist.4c8c33c88cade4861efbefc77770d72a.128x128.png" + } + } + }, + { + "id": "62d2f00f751567007abb176e", + "slug": "tusk_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Eviscerator", + "icon": "npc/images/tusk_eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/tusk_eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2f010751567007abb176f", + "slug": "exo_gokstad_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Gokstad Pilot", + "icon": "npc/images/exo_gokstad_pilot.fdbbdbb59c668d4e9501fd4bc246aa7f.png", + "thumb": "npc/images/thumbs/exo_gokstad_pilot.fdbbdbb59c668d4e9501fd4bc246aa7f.128x128.png" + } + } + }, + { + "id": "62d2f010751567007abb1770", + "slug": "vapos_nullifier", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Nullifier", + "icon": "npc/images/vapos_nullifier.3d02feebcaf8ef7a4660ba48b45785fb.png", + "thumb": "npc/images/thumbs/vapos_nullifier.3d02feebcaf8ef7a4660ba48b45785fb.128x128.png" + } + } + }, + { + "id": "62d2f010751567007abb1771", + "slug": "courier", + "gameRef": "", + "i18n": { + "en": { + "name": "Courier", + "icon": "npc/images/courier.0d39d2a885eac433fa99f3a845cd6265.png", + "thumb": "npc/images/thumbs/courier.0d39d2a885eac433fa99f3a845cd6265.128x128.png" + } + } + }, + { + "id": "62d2f010751567007abb1772", + "slug": "kuva_trokarian", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Trokarian", + "icon": "npc/images/kuva_trokarian.4100150fbcd4c5bb6eb3feea27ca997d.png", + "thumb": "npc/images/thumbs/kuva_trokarian.4100150fbcd4c5bb6eb3feea27ca997d.128x128.png" + } + } + }, + { + "id": "62d2f010751567007abb1773", + "slug": "arid_hellion", + "gameRef": "", + "i18n": { + "en": { + "name": "Arid Hellion", + "icon": "npc/images/arid_hellion.39b6315fc53dc0e82c7bb320494c232e.png", + "thumb": "npc/images/thumbs/arid_hellion.39b6315fc53dc0e82c7bb320494c232e.128x128.png" + } + } + }, + { + "id": "62d2f010751567007abb1774", + "slug": "kuva_shield_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Shield Lancer", + "icon": "npc/images/kuva_shield_lancer.7259507df848439a593a14eee785b05b.png", + "thumb": "npc/images/thumbs/kuva_shield_lancer.7259507df848439a593a14eee785b05b.128x128.png" + } + } + }, + { + "id": "62d2f010751567007abb1775", + "slug": "sprag", + "gameRef": "", + "i18n": { + "en": { + "name": "Sprag", + "icon": "npc/images/sprag.bf8fcfb866b914cecadc9da5ea143301.png", + "thumb": "npc/images/thumbs/sprag.bf8fcfb866b914cecadc9da5ea143301.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb1776", + "slug": "shield_hellion_dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Shield-Hellion Dargyn", + "icon": "npc/images/shield_hellion_dargyn.9174abb93ca25c714b1f3528f02480ed.png", + "thumb": "npc/images/thumbs/shield_hellion_dargyn.9174abb93ca25c714b1f3528f02480ed.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb1777", + "slug": "corpus_power_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Power Carrier", + "icon": "npc/images/corpus_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.png", + "thumb": "npc/images/thumbs/corpus_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb1778", + "slug": "symbilyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Symbilyst", + "icon": "npc/images/symbilyst.96c28218019f5c58de83acc601bfc9a0.png", + "thumb": "npc/images/thumbs/symbilyst.96c28218019f5c58de83acc601bfc9a0.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb1779", + "slug": "vay_hek_terra_frame", + "gameRef": "", + "i18n": { + "en": { + "name": "Vay Hek Terra Frame", + "icon": "npc/images/vay_hek_terra_frame.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/vay_hek_terra_frame.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb177a", + "slug": "corrupted_warden", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Warden", + "icon": "npc/images/corrupted_warden.117b15a0ea81740520e141733fe02410.png", + "thumb": "npc/images/thumbs/corrupted_warden.117b15a0ea81740520e141733fe02410.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb177b", + "slug": "terra_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Elite Crewman", + "icon": "npc/images/terra_elite_crewman.f028ab488ee60347175a98c9cb029eb3.png", + "thumb": "npc/images/thumbs/terra_elite_crewman.f028ab488ee60347175a98c9cb029eb3.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb177c", + "slug": "gyre_raider_carver", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Raider Carver", + "icon": "npc/images/gyre_raider_carver.820006e79e70526162b22b72c853bfc0.png", + "thumb": "npc/images/thumbs/gyre_raider_carver.820006e79e70526162b22b72c853bfc0.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb177d", + "slug": "kuva_hellion", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Hellion", + "icon": "npc/images/kuva_hellion.39b6315fc53dc0e82c7bb320494c232e.png", + "thumb": "npc/images/thumbs/kuva_hellion.39b6315fc53dc0e82c7bb320494c232e.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb177e", + "slug": "deimos_leaping_thrasher", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Leaping Thrasher", + "icon": "npc/images/deimos_leaping_thrasher.6f0e5904606bcb808e52d176188e2497.png", + "thumb": "npc/images/thumbs/deimos_leaping_thrasher.6f0e5904606bcb808e52d176188e2497.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb177f", + "slug": "raptor_ns", + "gameRef": "", + "i18n": { + "en": { + "name": "Raptor Ns", + "icon": "npc/images/raptor_ns.74ac24ecdf4f5d104e79abf65d2cedff.png", + "thumb": "npc/images/thumbs/raptor_ns.74ac24ecdf4f5d104e79abf65d2cedff.128x128.png" + } + } + }, + { + "id": "62d2f011751567007abb1780", + "slug": "amalgam_heqet", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Heqet", + "icon": "npc/images/amalgam_heqet.88b6a1a97656a187d5935fbded82cce5.png", + "thumb": "npc/images/thumbs/amalgam_heqet.88b6a1a97656a187d5935fbded82cce5.128x128.png" + } + } + }, + { + "id": "62d2f012751567007abb1781", + "slug": "hellion", + "gameRef": "", + "i18n": { + "en": { + "name": "Hellion", + "icon": "npc/images/hellion.39b6315fc53dc0e82c7bb320494c232e.png", + "thumb": "npc/images/thumbs/hellion.39b6315fc53dc0e82c7bb320494c232e.128x128.png" + } + } + }, + { + "id": "62d2f012751567007abb1782", + "slug": "exo_gokstad_officer", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Gokstad Officer", + "icon": "npc/images/exo_gokstad_officer.664087b3dc0d7a3d750ed00d3b0bf7e0.png", + "thumb": "npc/images/thumbs/exo_gokstad_officer.664087b3dc0d7a3d750ed00d3b0bf7e0.128x128.png" + } + } + }, + { + "id": "62d2f012751567007abb1783", + "slug": "orokin_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Orokin Storage Container", + "icon": "npc/images/orokin_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/orokin_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f012751567007abb1784", + "slug": "elite_kosma_outrider", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Kosma Outrider", + "icon": "npc/images/elite_kosma_outrider.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_kosma_outrider.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f012751567007abb1785", + "slug": "terra_turret_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Turret Osprey", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "62d2f012751567007abb1786", + "slug": "anu_symbilyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Anu Symbilyst", + "icon": "npc/images/anu_symbilyst.96c28218019f5c58de83acc601bfc9a0.png", + "thumb": "npc/images/thumbs/anu_symbilyst.96c28218019f5c58de83acc601bfc9a0.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb1787", + "slug": "tenno_specter", + "gameRef": "", + "i18n": { + "en": { + "name": "Tenno Specter", + "icon": "npc/images/tenno_specter.eeda7e31b39c61f1098067be73f6a789.png", + "thumb": "npc/images/thumbs/tenno_specter.eeda7e31b39c61f1098067be73f6a789.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb1788", + "slug": "zealot_herald", + "gameRef": "", + "i18n": { + "en": { + "name": "Zealot Herald", + "icon": "npc/images/zealot_herald.3f6f70456f8a56e57d894cafaf6714f3.png", + "thumb": "npc/images/thumbs/zealot_herald.3f6f70456f8a56e57d894cafaf6714f3.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb1789", + "slug": "elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Crewman", + "icon": "npc/images/elite_crewman.79d2a9790f023183b3dcca186a68fcda.png", + "thumb": "npc/images/thumbs/elite_crewman.79d2a9790f023183b3dcca186a68fcda.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb178a", + "slug": "ancient_infested", + "gameRef": "", + "i18n": { + "en": { + "name": "Ancient Infested", + "icon": "npc/images/ancient_infested.bb47c27e6a845206e97793d43f1424b5.png", + "thumb": "npc/images/thumbs/ancient_infested.bb47c27e6a845206e97793d43f1424b5.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb178b", + "slug": "ghoul_rictus", + "gameRef": "", + "i18n": { + "en": { + "name": "Ghoul Rictus", + "icon": "npc/images/ghoul_rictus.bd16d395080c31e807688ac969c44408.png", + "thumb": "npc/images/thumbs/ghoul_rictus.bd16d395080c31e807688ac969c44408.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb178c", + "slug": "railgun_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Railgun Moa", + "icon": "npc/images/railgun_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/railgun_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb178d", + "slug": "drekar_manic_bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Manic Bombard", + "icon": "npc/images/drekar_manic_bombard.6802abc8dc317ca6041f8afb72673db9.png", + "thumb": "npc/images/thumbs/drekar_manic_bombard.6802abc8dc317ca6041f8afb72673db9.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb178e", + "slug": "narmer_jailer", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Jailer", + "icon": "npc/images/narmer_jailer.46eb22a9954b70ded942526d06048f85.png", + "thumb": "npc/images/thumbs/narmer_jailer.46eb22a9954b70ded942526d06048f85.128x128.png" + } + } + }, + { + "id": "62d2f013751567007abb178f", + "slug": "raptor", + "gameRef": "", + "i18n": { + "en": { + "name": "Raptor", + "icon": "npc/images/raptor.74ac24ecdf4f5d104e79abf65d2cedff.png", + "thumb": "npc/images/thumbs/raptor.74ac24ecdf4f5d104e79abf65d2cedff.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1790", + "slug": "hemocyte", + "gameRef": "", + "i18n": { + "en": { + "name": "Hemocyte", + "icon": "npc/images/hemocyte.ee3b96d2ef3b991e0ee652f35b8b175a.png", + "thumb": "npc/images/thumbs/hemocyte.ee3b96d2ef3b991e0ee652f35b8b175a.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1791", + "slug": "decaying_battalyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Decaying Battalyst", + "icon": "npc/images/decaying_battalyst.d2aae007a52d252596ed78f2375aaf74.png", + "thumb": "npc/images/thumbs/decaying_battalyst.d2aae007a52d252596ed78f2375aaf74.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1792", + "slug": "taro_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Pilot", + "icon": "npc/images/taro_pilot.85980f6df033bfb9a0683a52ed457a93.png", + "thumb": "npc/images/thumbs/taro_pilot.85980f6df033bfb9a0683a52ed457a93.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1793", + "slug": "orokin_spectator", + "gameRef": "", + "i18n": { + "en": { + "name": "Orokin Spectator", + "icon": "npc/images/orokin_spectator.4645a430807f582f1c2671d3723ed0b1.png", + "thumb": "npc/images/thumbs/orokin_spectator.4645a430807f582f1c2671d3723ed0b1.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1794", + "slug": "leech_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Leech Osprey", + "icon": "npc/images/leech_osprey.388ad8e3dff84e1e0e6f8360b7cebf23.png", + "thumb": "npc/images/thumbs/leech_osprey.388ad8e3dff84e1e0e6f8360b7cebf23.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1795", + "slug": "shield_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Shield Drone", + "icon": "npc/images/shield_drone.85df337a5b7ef22bfebf703258acd9c5.png", + "thumb": "npc/images/thumbs/shield_drone.85df337a5b7ef22bfebf703258acd9c5.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1796", + "slug": "penta_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Penta Ranger", + "icon": "npc/images/penta_ranger.a7dec0f257ca9a7448b1135364819160.png", + "thumb": "npc/images/thumbs/penta_ranger.a7dec0f257ca9a7448b1135364819160.128x128.png" + } + } + }, + { + "id": "62d2f014751567007abb1797", + "slug": "hellion_dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Hellion Dargyn", + "icon": "npc/images/hellion_dargyn.516312941930422a6947560dec460c2c.png", + "thumb": "npc/images/thumbs/hellion_dargyn.516312941930422a6947560dec460c2c.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb1798", + "slug": "vorac_vambac", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Vambac", + "icon": "npc/images/vorac_vambac.83d94c41a5dff4d16601599e48eba2a5.png", + "thumb": "npc/images/thumbs/vorac_vambac.83d94c41a5dff4d16601599e48eba2a5.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb1799", + "slug": "taro_ranger_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Ranger Crewman", + "icon": "npc/images/taro_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.png", + "thumb": "npc/images/thumbs/taro_ranger_crewman.faa6e1bad4bc25010ee27c81859f89f5.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb179a", + "slug": "hyena_th", + "gameRef": "", + "i18n": { + "en": { + "name": "Hyena Th", + "icon": "npc/images/hyena_th.1aeb7118ee2a52c4f88b1e9d7644b829.png", + "thumb": "npc/images/thumbs/hyena_th.1aeb7118ee2a52c4f88b1e9d7644b829.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb179b", + "slug": "deimos_runner", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Runner", + "icon": "npc/images/deimos_runner.ea964412006b9dd67f5cd1505496fec1.png", + "thumb": "npc/images/thumbs/deimos_runner.ea964412006b9dd67f5cd1505496fec1.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb179c", + "slug": "amalgam_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Osprey", + "icon": "npc/images/amalgam_osprey.54ea6fc86ede720dd6a5afd5415f54b1.png", + "thumb": "npc/images/thumbs/amalgam_osprey.54ea6fc86ede720dd6a5afd5415f54b1.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb179d", + "slug": "lobber_crawler", + "gameRef": "", + "i18n": { + "en": { + "name": "Lobber Crawler", + "icon": "npc/images/lobber_crawler.211356a667f77e135d2d53889dea06b7.png", + "thumb": "npc/images/thumbs/lobber_crawler.211356a667f77e135d2d53889dea06b7.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb179e", + "slug": "axio_gox", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Gox", + "icon": "npc/images/axio_gox.9744c87fd0eb4364a77617e815ca097d.png", + "thumb": "npc/images/thumbs/axio_gox.9744c87fd0eb4364a77617e815ca097d.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb179f", + "slug": "dreg", + "gameRef": "", + "i18n": { + "en": { + "name": "Dreg", + "icon": "npc/images/dreg.bc007e66ea87af0a5513dd6880eb9a3c.png", + "thumb": "npc/images/thumbs/dreg.bc007e66ea87af0a5513dd6880eb9a3c.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb17a0", + "slug": "demolyst_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolyst Moa", + "icon": "npc/images/demolyst_moa.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolyst_moa.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb17a1", + "slug": "vorac_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Harpi", + "icon": "npc/images/vorac_harpi.58a110fbeb046b8020f6ded6625f758e.png", + "thumb": "npc/images/thumbs/vorac_harpi.58a110fbeb046b8020f6ded6625f758e.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb17a2", + "slug": "narmer_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Crewman", + "icon": "npc/images/narmer_crewman.4262014a0abdbbf4f2dfcf09d5662ca0.png", + "thumb": "npc/images/thumbs/narmer_crewman.4262014a0abdbbf4f2dfcf09d5662ca0.128x128.png" + } + } + }, + { + "id": "62d2f015751567007abb17a3", + "slug": "taro_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Basilisk", + "icon": "npc/images/taro_basilisk.f0389f24dacf60d5918f955d27c0a5e7.png", + "thumb": "npc/images/thumbs/taro_basilisk.f0389f24dacf60d5918f955d27c0a5e7.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17a4", + "slug": "orm_numon", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Numon", + "icon": "npc/images/orm_numon.dab2c76f52bd876f14d670c407cf5d10.png", + "thumb": "npc/images/thumbs/orm_numon.dab2c76f52bd876f14d670c407cf5d10.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17a5", + "slug": "vorac_detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Detron Crewman", + "icon": "npc/images/vorac_detron_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/vorac_detron_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17a6", + "slug": "demolisher_boiler", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Boiler", + "icon": "npc/images/demolisher_boiler.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_boiler.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17a7", + "slug": "terra_nullifier_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Nullifier Crewman", + "icon": "npc/images/terra_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.png", + "thumb": "npc/images/thumbs/terra_nullifier_crewman.fc21aff53b32a58bf2c2e994d2c225fe.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17a8", + "slug": "nightwatch_reaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Nightwatch Reaver", + "icon": "npc/images/nightwatch_reaver.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/nightwatch_reaver.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17a9", + "slug": "elite_taro_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Taro Harpi", + "icon": "npc/images/elite_taro_harpi.062973ab342fcf0ddee4302f2a70cd33.png", + "thumb": "npc/images/thumbs/elite_taro_harpi.062973ab342fcf0ddee4302f2a70cd33.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17aa", + "slug": "terra_trencher", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Trencher", + "icon": "npc/images/terra_trencher.0c6206b3a5dc4dd28213d2734e296388.png", + "thumb": "npc/images/thumbs/terra_trencher.0c6206b3a5dc4dd28213d2734e296388.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17ab", + "slug": "deimos_venin_mutalist", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Venin Mutalist", + "icon": "npc/images/deimos_venin_mutalist.4c8c33c88cade4861efbefc77770d72a.png", + "thumb": "npc/images/thumbs/deimos_venin_mutalist.4c8c33c88cade4861efbefc77770d72a.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17ac", + "slug": "demolisher_hyena", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Hyena", + "icon": "npc/images/demolisher_hyena.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_hyena.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17ad", + "slug": "azoth", + "gameRef": "", + "i18n": { + "en": { + "name": "Azoth", + "icon": "npc/images/azoth.ec30fd91df26f7846abe4e927f312f99.png", + "thumb": "npc/images/thumbs/azoth.ec30fd91df26f7846abe4e927f312f99.128x128.png" + } + } + }, + { + "id": "62d2f016751567007abb17ae", + "slug": "darek_draga", + "gameRef": "", + "i18n": { + "en": { + "name": "Darek Draga", + "icon": "npc/images/darek_draga.2c5b971fc6960c5ba62d6c970fe0ab77.png", + "thumb": "npc/images/thumbs/darek_draga.2c5b971fc6960c5ba62d6c970fe0ab77.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17af", + "slug": "frontier_regulator", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Regulator", + "icon": "npc/images/frontier_regulator.48f108df031b4c4b98af0b5e6afaa214.png", + "thumb": "npc/images/thumbs/frontier_regulator.48f108df031b4c4b98af0b5e6afaa214.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b0", + "slug": "turret", + "gameRef": "", + "i18n": { + "en": { + "name": "Turret", + "icon": "npc/images/turret.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/turret.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b1", + "slug": "tusk_hellion", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Hellion", + "icon": "npc/images/tusk_hellion.39b6315fc53dc0e82c7bb320494c232e.png", + "thumb": "npc/images/thumbs/tusk_hellion.39b6315fc53dc0e82c7bb320494c232e.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b2", + "slug": "orm_railgun_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Railgun Moa", + "icon": "npc/images/orm_railgun_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/orm_railgun_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b3", + "slug": "zeplen", + "gameRef": "", + "i18n": { + "en": { + "name": "Zeplen", + "icon": "npc/images/zeplen.cd4ea0d3ffcd9b214d770e20b4506e4d.png", + "thumb": "npc/images/thumbs/zeplen.cd4ea0d3ffcd9b214d770e20b4506e4d.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b4", + "slug": "dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Dargyn", + "icon": "npc/images/dargyn.516312941930422a6947560dec460c2c.png", + "thumb": "npc/images/thumbs/dargyn.516312941930422a6947560dec460c2c.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b5", + "slug": "drahk_master", + "gameRef": "", + "i18n": { + "en": { + "name": "Drahk Master", + "icon": "npc/images/drahk_master.48fb8182dac957c5e7ba145e433cf080.png", + "thumb": "npc/images/thumbs/drahk_master.48fb8182dac957c5e7ba145e433cf080.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b6", + "slug": "amalgam_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Moa", + "icon": "npc/images/amalgam_moa.c4bf5843194c6c20a3f707d1f592e3ee.png", + "thumb": "npc/images/thumbs/amalgam_moa.c4bf5843194c6c20a3f707d1f592e3ee.128x128.png" + } + } + }, + { + "id": "62d2f017751567007abb17b7", + "slug": "oxium_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Oxium Osprey", + "icon": "npc/images/oxium_osprey.c811aca1fec4c8278d6c530a35a6a29a.png", + "thumb": "npc/images/thumbs/oxium_osprey.c811aca1fec4c8278d6c530a35a6a29a.128x128.png" + } + } + }, + { + "id": "62d2f018751567007abb17b8", + "slug": "arid_seeker", + "gameRef": "", + "i18n": { + "en": { + "name": "Arid Seeker", + "icon": "npc/images/arid_seeker.021f9bfac0f68c04a78b24025b70957c.png", + "thumb": "npc/images/thumbs/arid_seeker.021f9bfac0f68c04a78b24025b70957c.128x128.png" + } + } + }, + { + "id": "62d2f018751567007abb17b9", + "slug": "captain_vor", + "gameRef": "", + "i18n": { + "en": { + "name": "Captain Vor", + "icon": "npc/images/captain_vor.995dc1f61eb4cc837ca558db694ef9bf.png", + "thumb": "npc/images/thumbs/captain_vor.995dc1f61eb4cc837ca558db694ef9bf.128x128.png" + } + } + }, + { + "id": "62d2f018751567007abb17ba", + "slug": "vapos_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Crewman", + "icon": "npc/images/vapos_crewman.6bc4ee895343ac5b20358d054566c8e7.png", + "thumb": "npc/images/thumbs/vapos_crewman.6bc4ee895343ac5b20358d054566c8e7.128x128.png" + } + } + }, + { + "id": "62d2f018751567007abb17bb", + "slug": "scavenger_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Scavenger Drone", + "icon": "npc/images/scavenger_drone.510786f1b319d586db60c1fd5b81da74.png", + "thumb": "npc/images/thumbs/scavenger_drone.510786f1b319d586db60c1fd5b81da74.128x128.png" + } + } + }, + { + "id": "62d2f018751567007abb17bc", + "slug": "eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Eviscerator", + "icon": "npc/images/eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2f018751567007abb17bd", + "slug": "common_grineer_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Common Grineer Storage Container", + "icon": "npc/images/common_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/common_grineer_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17be", + "slug": "tusk_reaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Reaver", + "icon": "npc/images/tusk_reaver.c8c7bcc5a7b046ef8c03dae73d4313ab.png", + "thumb": "npc/images/thumbs/tusk_reaver.c8c7bcc5a7b046ef8c03dae73d4313ab.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17bf", + "slug": "orphid_specter", + "gameRef": "", + "i18n": { + "en": { + "name": "Orphid Specter", + "icon": "npc/images/orphid_specter.8cf59ee9a8ed760ffc1d9ec82980930b.png", + "thumb": "npc/images/thumbs/orphid_specter.8cf59ee9a8ed760ffc1d9ec82980930b.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17c0", + "slug": "gyre_supressor", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Supressor", + "icon": "npc/images/gyre_supressor.234f818c6836a89a57d7fd1125351f11.png", + "thumb": "npc/images/thumbs/gyre_supressor.234f818c6836a89a57d7fd1125351f11.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17c1", + "slug": "narmer_geminex_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Geminex Moa", + "icon": "npc/images/narmer_geminex_moa.d2fa2ca9f62636f493ffd1987bfaaa8b.png", + "thumb": "npc/images/thumbs/narmer_geminex_moa.d2fa2ca9f62636f493ffd1987bfaaa8b.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17c2", + "slug": "juno_fog_comba", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Fog Comba", + "icon": "npc/images/juno_fog_comba.0446db0b623942a762069de57186e97f.png", + "thumb": "npc/images/thumbs/juno_fog_comba.0446db0b623942a762069de57186e97f.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17c3", + "slug": "jackal", + "gameRef": "", + "i18n": { + "en": { + "name": "Jackal", + "icon": "npc/images/jackal.cd28e147594a4dc1d9f760c57e36d9b1.png", + "thumb": "npc/images/thumbs/jackal.cd28e147594a4dc1d9f760c57e36d9b1.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17c4", + "slug": "gyre_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Butcher", + "icon": "npc/images/gyre_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/gyre_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f019751567007abb17c5", + "slug": "ancient_healer", + "gameRef": "", + "i18n": { + "en": { + "name": "Ancient Healer", + "icon": "npc/images/ancient_healer.bb47c27e6a845206e97793d43f1424b5.png", + "thumb": "npc/images/thumbs/ancient_healer.bb47c27e6a845206e97793d43f1424b5.128x128.png" + } + } + }, + { + "id": "62d2f01a751567007abb17c6", + "slug": "arid_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Arid Lancer", + "icon": "npc/images/arid_lancer.d7e2c39dbe12200064810de67b6b9996.png", + "thumb": "npc/images/thumbs/arid_lancer.d7e2c39dbe12200064810de67b6b9996.128x128.png" + } + } + }, + { + "id": "62d2f01a751567007abb17c8", + "slug": "kuva_dargyn", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Dargyn", + "icon": "npc/images/kuva_dargyn.ab067a5d13ae5a31bcbe74c7596b88fb.png", + "thumb": "npc/images/thumbs/kuva_dargyn.ab067a5d13ae5a31bcbe74c7596b88fb.128x128.png" + } + } + }, + { + "id": "62d2f01a751567007abb17cb", + "slug": "taro_railgun_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Railgun Moa", + "icon": "npc/images/taro_railgun_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/taro_railgun_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f01c751567007abb17d7", + "slug": "taro_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Shield Osprey", + "icon": "npc/images/taro_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/taro_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2f01c751567007abb17d8", + "slug": "narmer_coildrive", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Coildrive", + "icon": "npc/images/narmer_coildrive.2157cefc355677172b7eda3521066f6d.png", + "thumb": "npc/images/thumbs/narmer_coildrive.2157cefc355677172b7eda3521066f6d.128x128.png" + } + } + }, + { + "id": "62d2f01c751567007abb17d9", + "slug": "volatile_runner", + "gameRef": "", + "i18n": { + "en": { + "name": "Volatile Runner", + "icon": "npc/images/volatile_runner.2b439e6093aaa92228fd6d06ec25c344.png", + "thumb": "npc/images/thumbs/volatile_runner.2b439e6093aaa92228fd6d06ec25c344.128x128.png" + } + } + }, + { + "id": "62d2f01c751567007abb17da", + "slug": "kela_de_thaym", + "gameRef": "", + "i18n": { + "en": { + "name": "Kela De Thaym", + "icon": "npc/images/kela_de_thaym.72cb0586d3341790185f223613dddbae.png", + "thumb": "npc/images/thumbs/kela_de_thaym.72cb0586d3341790185f223613dddbae.128x128.png" + } + } + }, + { + "id": "62d2f01c751567007abb17db", + "slug": "breacher_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Breacher Moa", + "icon": "npc/images/breacher_moa.eeda7e31b39c61f1098067be73f6a789.png", + "thumb": "npc/images/thumbs/breacher_moa.eeda7e31b39c61f1098067be73f6a789.128x128.png" + } + } + }, + { + "id": "62d2f01c751567007abb17dc", + "slug": "anti_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Anti Moa", + "icon": "npc/images/anti_moa.d75ce40bdd8c1142a705131fcb214523.png", + "thumb": "npc/images/thumbs/anti_moa.d75ce40bdd8c1142a705131fcb214523.128x128.png" + } + } + }, + { + "id": "62d2f01d751567007abb17dd", + "slug": "malice_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Malice (Level 0 - 100)", + "icon": "npc/images/malice_(level_0_100).0b31adb4276d346e800bfcb004ede227.png", + "thumb": "npc/images/thumbs/malice_(level_0_100).0b31adb4276d346e800bfcb004ede227.128x128.png" + } + } + }, + { + "id": "62d2f01d751567007abb17de", + "slug": "orm_shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Shockwave Moa", + "icon": "npc/images/orm_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.png", + "thumb": "npc/images/thumbs/orm_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.128x128.png" + } + } + }, + { + "id": "62d2f01d751567007abb17df", + "slug": "vivisect_director", + "gameRef": "", + "i18n": { + "en": { + "name": "Vivisect Director", + "icon": "npc/images/vivisect_director.894ed27abeb153a739f2740eceb24b43.png", + "thumb": "npc/images/thumbs/vivisect_director.894ed27abeb153a739f2740eceb24b43.128x128.png" + } + } + }, + { + "id": "62d2f01e751567007abb17e0", + "slug": "nox", + "gameRef": "", + "i18n": { + "en": { + "name": "Nox", + "icon": "npc/images/nox.426539a243f0cd73f09441f81e2cfcb0.png", + "thumb": "npc/images/thumbs/nox.426539a243f0cd73f09441f81e2cfcb0.128x128.png" + } + } + }, + { + "id": "62d2f01e751567007abb17e1", + "slug": "narmer_trooper", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Trooper", + "icon": "npc/images/narmer_trooper.2dd66d92d10b69024236c2379814fe0f.png", + "thumb": "npc/images/thumbs/narmer_trooper.2dd66d92d10b69024236c2379814fe0f.128x128.png" + } + } + }, + { + "id": "62d2f01e751567007abb17e2", + "slug": "vorac_stropha_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Stropha Crewman", + "icon": "npc/images/vorac_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.png", + "thumb": "npc/images/thumbs/vorac_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.128x128.png" + } + } + }, + { + "id": "62d2f01e751567007abb17e3", + "slug": "deimos_jugulus", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Jugulus", + "icon": "npc/images/deimos_jugulus.366514f47477bae0ba1e06dab3cdf2c5.png", + "thumb": "npc/images/thumbs/deimos_jugulus.366514f47477bae0ba1e06dab3cdf2c5.128x128.png" + } + } + }, + { + "id": "62d2f01e751567007abb17e4", + "slug": "rare_orokin_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Rare Orokin Storage Container", + "icon": "npc/images/rare_orokin_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/rare_orokin_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f01e751567007abb17e5", + "slug": "swarm_mutalist_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Swarm Mutalist Moa", + "icon": "npc/images/swarm_mutalist_moa.4d164c8a4c6936922d95e149046b7b61.png", + "thumb": "npc/images/thumbs/swarm_mutalist_moa.4d164c8a4c6936922d95e149046b7b61.128x128.png" + } + } + }, + { + "id": "62d2f01e751567007abb17e6", + "slug": "eidolon_hydrolyst_(special)", + "gameRef": "", + "i18n": { + "en": { + "name": "Eidolon Hydrolyst (Special)", + "icon": "npc/images/eidolon_hydrolyst_(special).2942a22690ae866e7bba7424d32df5ee.png", + "thumb": "npc/images/thumbs/eidolon_hydrolyst_(special).2942a22690ae866e7bba7424d32df5ee.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17ec", + "slug": "typholyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Typholyst", + "icon": "npc/images/typholyst.666651f3a59388f40aa173dabb55f29b.png", + "thumb": "npc/images/thumbs/typholyst.666651f3a59388f40aa173dabb55f29b.128x128.png" + } + } + }, + { + "id": "62d2f01f751567007abb17ee", + "slug": "terra_embattor_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Embattor Moa", + "icon": "npc/images/terra_embattor_moa.ba9422c4061ed43a2f353e2f82ba788e.png", + "thumb": "npc/images/thumbs/terra_embattor_moa.ba9422c4061ed43a2f353e2f82ba788e.128x128.png" + } + } + }, + { + "id": "62d2f020751567007abb17f1", + "slug": "vorac_tech", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Tech", + "icon": "npc/images/vorac_tech.8e0f3783f13b45c61aaeefe2445d81c9.png", + "thumb": "npc/images/thumbs/vorac_tech.8e0f3783f13b45c61aaeefe2445d81c9.128x128.png" + } + } + }, + { + "id": "62d2f020751567007abb17f3", + "slug": "terra_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Crewman", + "icon": "npc/images/terra_crewman.f028ab488ee60347175a98c9cb029eb3.png", + "thumb": "npc/images/thumbs/terra_crewman.f028ab488ee60347175a98c9cb029eb3.128x128.png" + } + } + }, + { + "id": "62d2f021751567007abb17f5", + "slug": "apex_membroid", + "gameRef": "", + "i18n": { + "en": { + "name": "Apex Membroid", + "icon": "npc/images/apex_membroid.52389391712e2483e28077c3cb33396a.png", + "thumb": "npc/images/thumbs/apex_membroid.52389391712e2483e28077c3cb33396a.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb1808", + "slug": "elite_vorac_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Vorac Weaver", + "icon": "npc/images/elite_vorac_weaver.dbb69302b9f97acfad9e007545f641f8.png", + "thumb": "npc/images/thumbs/elite_vorac_weaver.dbb69302b9f97acfad9e007545f641f8.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb1809", + "slug": "elite_frontier_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Frontier Lancer", + "icon": "npc/images/elite_frontier_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/elite_frontier_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb180a", + "slug": "hyekka_master", + "gameRef": "", + "i18n": { + "en": { + "name": "Hyekka Master", + "icon": "npc/images/hyekka_master.007af40787b4c47db3f250998163dae9.png", + "thumb": "npc/images/thumbs/hyekka_master.007af40787b4c47db3f250998163dae9.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb180b", + "slug": "executioner_dhurnam", + "gameRef": "", + "i18n": { + "en": { + "name": "Executioner Dhurnam", + "icon": "npc/images/executioner_dhurnam.8af35c9f9a0f98691ccbda815b3fbee9.png", + "thumb": "npc/images/thumbs/executioner_dhurnam.8af35c9f9a0f98691ccbda815b3fbee9.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb180c", + "slug": "axio_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Weaver", + "icon": "npc/images/axio_weaver.b251630242173cc99fe10d2352e1f8fb.png", + "thumb": "npc/images/thumbs/axio_weaver.b251630242173cc99fe10d2352e1f8fb.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb180d", + "slug": "deimos_saxum", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Saxum", + "icon": "npc/images/deimos_saxum.82a783fe190007fd3ea0552d38a99085.png", + "thumb": "npc/images/thumbs/deimos_saxum.82a783fe190007fd3ea0552d38a99085.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb180e", + "slug": "plains_commander", + "gameRef": "", + "i18n": { + "en": { + "name": "Plains Commander", + "icon": "npc/images/plains_commander.62dfafe664f389ad2f293c1baf867d96.png", + "thumb": "npc/images/thumbs/plains_commander.62dfafe664f389ad2f293c1baf867d96.128x128.png" + } + } + }, + { + "id": "62d2f023751567007abb180f", + "slug": "orm_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Elite Crewman", + "icon": "npc/images/orm_elite_crewman.79d2a9790f023183b3dcca186a68fcda.png", + "thumb": "npc/images/thumbs/orm_elite_crewman.79d2a9790f023183b3dcca186a68fcda.128x128.png" + } + } + }, + { + "id": "62d2f024751567007abb1810", + "slug": "ionyx", + "gameRef": "", + "i18n": { + "en": { + "name": "Ionyx", + "icon": "npc/images/ionyx.2a52ddd6256b74fd44ef6128650d1886.png", + "thumb": "npc/images/thumbs/ionyx.2a52ddd6256b74fd44ef6128650d1886.128x128.png" + } + } + }, + { + "id": "62d2f024751567007abb1811", + "slug": "phorid", + "gameRef": "", + "i18n": { + "en": { + "name": "Phorid", + "icon": "npc/images/phorid.543980550f5e7dc5f1c680d114d1217f.png", + "thumb": "npc/images/thumbs/phorid.543980550f5e7dc5f1c680d114d1217f.128x128.png" + } + } + }, + { + "id": "62d2f024751567007abb1813", + "slug": "brachiolyst_disperser", + "gameRef": "", + "i18n": { + "en": { + "name": "Brachiolyst Disperser", + "icon": "npc/images/brachiolyst_disperser.6d36e23094c1e1bdf2dc69aa9d74ec74.png", + "thumb": "npc/images/thumbs/brachiolyst_disperser.6d36e23094c1e1bdf2dc69aa9d74ec74.128x128.png" + } + } + }, + { + "id": "62d2f025751567007abb1814", + "slug": "narmer_leech_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Leech Osprey", + "icon": "npc/images/narmer_leech_osprey.8e0b7af24384563b63a39f63c24c7ee3.png", + "thumb": "npc/images/thumbs/narmer_leech_osprey.8e0b7af24384563b63a39f63c24c7ee3.128x128.png" + } + } + }, + { + "id": "62d2f025751567007abb1815", + "slug": "profit_taker", + "gameRef": "", + "i18n": { + "en": { + "name": "Profit-Taker", + "icon": "npc/images/profit_taker.6e7f2f2a2b290f59aea9f19cca008ccb.png", + "thumb": "npc/images/thumbs/profit_taker.6e7f2f2a2b290f59aea9f19cca008ccb.128x128.png" + } + } + }, + { + "id": "62d2f025751567007abb1817", + "slug": "regulator", + "gameRef": "", + "i18n": { + "en": { + "name": "Regulator", + "icon": "npc/images/regulator.48f108df031b4c4b98af0b5e6afaa214.png", + "thumb": "npc/images/thumbs/regulator.48f108df031b4c4b98af0b5e6afaa214.128x128.png" + } + } + }, + { + "id": "62d2f025751567007abb1818", + "slug": "deimos_jugulus_rex", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Jugulus Rex", + "icon": "npc/images/deimos_jugulus_rex.366514f47477bae0ba1e06dab3cdf2c5.png", + "thumb": "npc/images/thumbs/deimos_jugulus_rex.366514f47477bae0ba1e06dab3cdf2c5.128x128.png" + } + } + }, + { + "id": "62d2f025751567007abb1819", + "slug": "butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Butcher", + "icon": "npc/images/butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f026751567007abb181a", + "slug": "sensor_regulator", + "gameRef": "", + "i18n": { + "en": { + "name": "Sensor Regulator", + "icon": "npc/images/sensor_regulator.48f108df031b4c4b98af0b5e6afaa214.png", + "thumb": "npc/images/thumbs/sensor_regulator.48f108df031b4c4b98af0b5e6afaa214.128x128.png" + } + } + }, + { + "id": "62d2f026751567007abb181c", + "slug": "vapos_prod_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Prod Crewman", + "icon": "npc/images/vapos_prod_crewman.6bc4ee895343ac5b20358d054566c8e7.png", + "thumb": "npc/images/thumbs/vapos_prod_crewman.6bc4ee895343ac5b20358d054566c8e7.128x128.png" + } + } + }, + { + "id": "62d2f026751567007abb181d", + "slug": "jen_dro", + "gameRef": "", + "i18n": { + "en": { + "name": "Jen Dro", + "icon": "npc/images/jen_dro.7a3f76e20dc028e6edb3b7adf62fe511.png", + "thumb": "npc/images/thumbs/jen_dro.7a3f76e20dc028e6edb3b7adf62fe511.128x128.png" + } + } + }, + { + "id": "62d2f026751567007abb181e", + "slug": "exo_raider", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Raider", + "icon": "npc/images/exo_raider.f642a6acaaf3e4d5f6052da3ec7e264c.png", + "thumb": "npc/images/thumbs/exo_raider.f642a6acaaf3e4d5f6052da3ec7e264c.128x128.png" + } + } + }, + { + "id": "62d2f026751567007abb181f", + "slug": "latrox_une", + "gameRef": "", + "i18n": { + "en": { + "name": "Latrox Une", + "icon": "npc/images/latrox_une.630d4a7124568cd222a3ce21533437f0.png", + "thumb": "npc/images/thumbs/latrox_une.630d4a7124568cd222a3ce21533437f0.128x128.png" + } + } + }, + { + "id": "62d2f026751567007abb1820", + "slug": "special_duty_coildrive", + "gameRef": "", + "i18n": { + "en": { + "name": "Special Duty Coildrive", + "icon": "npc/images/special_duty_coildrive.6f8e60250c15061c656b2f4f1fb90dd4.png", + "thumb": "npc/images/thumbs/special_duty_coildrive.6f8e60250c15061c656b2f4f1fb90dd4.128x128.png" + } + } + }, + { + "id": "62d2f027751567007abb1821", + "slug": "corpus_ramsled", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Ramsled", + "icon": "npc/images/corpus_ramsled.19f7e0f2d977c9827a0b9208fc5dbb31.png", + "thumb": "npc/images/thumbs/corpus_ramsled.19f7e0f2d977c9827a0b9208fc5dbb31.128x128.png" + } + } + }, + { + "id": "62d2f027751567007abb1822", + "slug": "narmer_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Raknoid", + "icon": "npc/images/narmer_raknoid.e38471faed56296fbea928fb9be79faa.png", + "thumb": "npc/images/thumbs/narmer_raknoid.e38471faed56296fbea928fb9be79faa.128x128.png" + } + } + }, + { + "id": "62d2f027751567007abb1824", + "slug": "toxic_ancient", + "gameRef": "", + "i18n": { + "en": { + "name": "Toxic Ancient", + "icon": "npc/images/toxic_ancient.a19366bb7eda38a7cd0c2724b1134782.png", + "thumb": "npc/images/thumbs/toxic_ancient.a19366bb7eda38a7cd0c2724b1134782.128x128.png" + } + } + }, + { + "id": "62d2f027751567007abb1827", + "slug": "arid_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Arid Butcher", + "icon": "npc/images/arid_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/arid_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f028751567007abb182b", + "slug": "vapos_nullifier_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Nullifier Ranger", + "icon": "npc/images/vapos_nullifier_ranger.3d02feebcaf8ef7a4660ba48b45785fb.png", + "thumb": "npc/images/thumbs/vapos_nullifier_ranger.3d02feebcaf8ef7a4660ba48b45785fb.128x128.png" + } + } + }, + { + "id": "62d2f029751567007abb183a", + "slug": "kosma_gokstad_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Gokstad Pilot", + "icon": "npc/images/kosma_gokstad_pilot.fdbbdbb59c668d4e9501fd4bc246aa7f.png", + "thumb": "npc/images/thumbs/kosma_gokstad_pilot.fdbbdbb59c668d4e9501fd4bc246aa7f.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb1860", + "slug": "sikula", + "gameRef": "", + "i18n": { + "en": { + "name": "Sikula", + "icon": "npc/images/sikula.7a65a923900e9017c9730fe150aa5c2e.png", + "thumb": "npc/images/thumbs/sikula.7a65a923900e9017c9730fe150aa5c2e.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb1861", + "slug": "temporal_dreg", + "gameRef": "", + "i18n": { + "en": { + "name": "Temporal Dreg", + "icon": "npc/images/temporal_dreg.f7973c5a4d96bad436eac31954349669.png", + "thumb": "npc/images/thumbs/temporal_dreg.f7973c5a4d96bad436eac31954349669.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb1862", + "slug": "attack_mutalist", + "gameRef": "", + "i18n": { + "en": { + "name": "Attack Mutalist", + "icon": "npc/images/attack_mutalist.6e9ea2a24d6ea01c88c56e402a3d36c1.png", + "thumb": "npc/images/thumbs/attack_mutalist.6e9ea2a24d6ea01c88c56e402a3d36c1.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb1864", + "slug": "grineer_warden", + "gameRef": "", + "i18n": { + "en": { + "name": "Grineer Warden", + "icon": "npc/images/grineer_warden.0e22a57f238b772e6b1fd68e46de6c93.png", + "thumb": "npc/images/thumbs/grineer_warden.0e22a57f238b772e6b1fd68e46de6c93.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb1865", + "slug": "narmer_dera_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Dera Moa", + "icon": "npc/images/narmer_dera_moa.0520e1296436ebbd44ffcdb055d3c85f.png", + "thumb": "npc/images/thumbs/narmer_dera_moa.0520e1296436ebbd44ffcdb055d3c85f.128x128.png" + } + } + }, + { + "id": "62d2f02e751567007abb1866", + "slug": "kuva_scorch", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Scorch", + "icon": "npc/images/kuva_scorch.51296baaaf4867d46db328481c851fb0.png", + "thumb": "npc/images/thumbs/kuva_scorch.51296baaaf4867d46db328481c851fb0.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb1867", + "slug": "infested_corpus", + "gameRef": "", + "i18n": { + "en": { + "name": "Infested Corpus", + "icon": "npc/images/infested_corpus.52931b27d55248a226c0f793e0863be0.png", + "thumb": "npc/images/thumbs/infested_corpus.52931b27d55248a226c0f793e0863be0.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb1869", + "slug": "elite_vorac_basilisk", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Vorac Basilisk", + "icon": "npc/images/elite_vorac_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.png", + "thumb": "npc/images/thumbs/elite_vorac_basilisk.1e5ee5d3d5daa4bd13c9b9fa0abb66a4.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb186a", + "slug": "dru_pesfor", + "gameRef": "", + "i18n": { + "en": { + "name": "Dru Pesfor", + "icon": "npc/images/dru_pesfor.964ee9a19a49b78e79b513d3c0f058d9.png", + "thumb": "npc/images/thumbs/dru_pesfor.964ee9a19a49b78e79b513d3c0f058d9.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb186c", + "slug": "torment_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Torment (Level 0 - 100)", + "icon": "npc/images/torment_(level_0_100).3438207360133ee2f23efc311b0ad3dc.png", + "thumb": "npc/images/thumbs/torment_(level_0_100).3438207360133ee2f23efc311b0ad3dc.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb186e", + "slug": "exo_taktis", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Taktis", + "icon": "npc/images/exo_taktis.3ca5265acfaf813cc71ccf12ebb7bf34.png", + "thumb": "npc/images/thumbs/exo_taktis.3ca5265acfaf813cc71ccf12ebb7bf34.128x128.png" + } + } + }, + { + "id": "62d2f02f751567007abb186f", + "slug": "bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Bombard", + "icon": "npc/images/bombard.056b10a316ea9722d413620bc6135861.png", + "thumb": "npc/images/thumbs/bombard.056b10a316ea9722d413620bc6135861.128x128.png" + } + } + }, + { + "id": "62d2f030751567007abb1871", + "slug": "terra_railgun_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Railgun Moa", + "icon": "npc/images/terra_railgun_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/terra_railgun_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f030751567007abb1873", + "slug": "feral_diploid_rex", + "gameRef": "", + "i18n": { + "en": { + "name": "Feral Diploid Rex", + "icon": "npc/images/feral_diploid_rex.9511125707f8df68f93d8c66991384c7.png", + "thumb": "npc/images/thumbs/feral_diploid_rex.9511125707f8df68f93d8c66991384c7.128x128.png" + } + } + }, + { + "id": "62d2f030751567007abb1874", + "slug": "narmer_thumper", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Thumper", + "icon": "npc/images/narmer_thumper.b155d3341f395d08a5356b2cd59b2872.png", + "thumb": "npc/images/thumbs/narmer_thumper.b155d3341f395d08a5356b2cd59b2872.128x128.png" + } + } + }, + { + "id": "62d2f030751567007abb1875", + "slug": "elite_gyre_taktis", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Gyre Taktis", + "icon": "npc/images/elite_gyre_taktis.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_gyre_taktis.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f030751567007abb1876", + "slug": "aerial_commander", + "gameRef": "", + "i18n": { + "en": { + "name": "Aerial Commander", + "icon": "npc/images/aerial_commander.578e3d986fe9a98f6da2aa93454e9e1a.png", + "thumb": "npc/images/thumbs/aerial_commander.578e3d986fe9a98f6da2aa93454e9e1a.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb1877", + "slug": "orb_vallis_enrichment_labs_enemies", + "gameRef": "", + "i18n": { + "en": { + "name": "Orb Vallis - Enrichment Labs Enemies", + "icon": "npc/images/orb_vallis_enrichment_labs_enemies.3401f96abd2236fdb1a6f745b12d597d.png", + "thumb": "npc/images/thumbs/orb_vallis_enrichment_labs_enemies.3401f96abd2236fdb1a6f745b12d597d.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb1878", + "slug": "frontier_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Lancer", + "icon": "npc/images/frontier_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/frontier_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb1879", + "slug": "basal_diploid_rex", + "gameRef": "", + "i18n": { + "en": { + "name": "Basal Diploid Rex", + "icon": "npc/images/basal_diploid_rex.0f1452d30ad9d078cc87dfdba3944765.png", + "thumb": "npc/images/thumbs/basal_diploid_rex.0f1452d30ad9d078cc87dfdba3944765.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb187a", + "slug": "gyre_flak", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Flak", + "icon": "npc/images/gyre_flak.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/gyre_flak.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb187b", + "slug": "comet_shard", + "gameRef": "", + "i18n": { + "en": { + "name": "Comet Shard", + "icon": "npc/images/comet_shard.3e51d61672eb0f259d3a96e79c76e3dc.png", + "thumb": "npc/images/thumbs/comet_shard.3e51d61672eb0f259d3a96e79c76e3dc.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb187c", + "slug": "knave_specter", + "gameRef": "", + "i18n": { + "en": { + "name": "Knave Specter", + "icon": "npc/images/knave_specter.0ed7b6d819d77d5afda8bc1c78acf5c4.png", + "thumb": "npc/images/thumbs/knave_specter.0ed7b6d819d77d5afda8bc1c78acf5c4.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb187d", + "slug": "kuva_power_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Power Carrier", + "icon": "npc/images/kuva_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.png", + "thumb": "npc/images/thumbs/kuva_power_carrier.b2515f06c8e76220871fd2d1b805b7ef.128x128.png" + } + } + }, + { + "id": "62d2f031751567007abb187e", + "slug": "terra_jackal", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Jackal", + "icon": "npc/images/terra_jackal.cd28e147594a4dc1d9f760c57e36d9b1.png", + "thumb": "npc/images/thumbs/terra_jackal.cd28e147594a4dc1d9f760c57e36d9b1.128x128.png" + } + } + }, + { + "id": "62d2f032751567007abb187f", + "slug": "frontier_seeker", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Seeker", + "icon": "npc/images/frontier_seeker.021f9bfac0f68c04a78b24025b70957c.png", + "thumb": "npc/images/thumbs/frontier_seeker.021f9bfac0f68c04a78b24025b70957c.128x128.png" + } + } + }, + { + "id": "62d2f032751567007abb1880", + "slug": "kuva_flameblade", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Flameblade", + "icon": "npc/images/kuva_flameblade.0b9b97b8e2427ceaa66da1a343f879cd.png", + "thumb": "npc/images/thumbs/kuva_flameblade.0b9b97b8e2427ceaa66da1a343f879cd.128x128.png" + } + } + }, + { + "id": "62d2f032751567007abb1882", + "slug": "void_angel", + "gameRef": "", + "i18n": { + "en": { + "name": "Void Angel", + "icon": "npc/images/void_angel.dfc1b1ecb9c99d76a692b58272990257.png", + "thumb": "npc/images/thumbs/void_angel.dfc1b1ecb9c99d76a692b58272990257.128x128.png" + } + } + }, + { + "id": "62d2f032751567007abb1883", + "slug": "deimos_tendril_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Tendril Drone", + "icon": "npc/images/deimos_tendril_drone.c0a4d3e7674bc0273a9e8b4ca2379d00.png", + "thumb": "npc/images/thumbs/deimos_tendril_drone.c0a4d3e7674bc0273a9e8b4ca2379d00.128x128.png" + } + } + }, + { + "id": "62d2f032751567007abb1885", + "slug": "tusk_elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Elite Lancer", + "icon": "npc/images/tusk_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.png", + "thumb": "npc/images/thumbs/tusk_elite_lancer.c16b13316b17b9ab2965a2e576046ee4.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb1886", + "slug": "ghoul_rictus_alpha", + "gameRef": "", + "i18n": { + "en": { + "name": "Ghoul Rictus Alpha", + "icon": "npc/images/ghoul_rictus_alpha.bd16d395080c31e807688ac969c44408.png", + "thumb": "npc/images/thumbs/ghoul_rictus_alpha.bd16d395080c31e807688ac969c44408.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb1887", + "slug": "scorch", + "gameRef": "", + "i18n": { + "en": { + "name": "Scorch", + "icon": "npc/images/scorch.51296baaaf4867d46db328481c851fb0.png", + "thumb": "npc/images/thumbs/scorch.51296baaaf4867d46db328481c851fb0.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb1888", + "slug": "drekar_manic", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Manic", + "icon": "npc/images/drekar_manic.3a0cf25b934b34b025fd0bd9ddf2b558.png", + "thumb": "npc/images/thumbs/drekar_manic.3a0cf25b934b34b025fd0bd9ddf2b558.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb188a", + "slug": "raptor_rv", + "gameRef": "", + "i18n": { + "en": { + "name": "Raptor Rv", + "icon": "npc/images/raptor_rv.74ac24ecdf4f5d104e79abf65d2cedff.png", + "thumb": "npc/images/thumbs/raptor_rv.74ac24ecdf4f5d104e79abf65d2cedff.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb188c", + "slug": "ravenous_void_angel", + "gameRef": "", + "i18n": { + "en": { + "name": "Ravenous Void Angel", + "icon": "npc/images/ravenous_void_angel.dfc1b1ecb9c99d76a692b58272990257.png", + "thumb": "npc/images/thumbs/ravenous_void_angel.dfc1b1ecb9c99d76a692b58272990257.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb188e", + "slug": "lockjaw_and_sol", + "gameRef": "", + "i18n": { + "en": { + "name": "Lockjaw & Sol", + "icon": "npc/images/lockjaw_and_sol.9b972b59df6272887b212552b8207fb7.png", + "thumb": "npc/images/thumbs/lockjaw_and_sol.9b972b59df6272887b212552b8207fb7.128x128.png" + } + } + }, + { + "id": "62d2f033751567007abb1890", + "slug": "narmer_thumper_doma", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Thumper Doma", + "icon": "npc/images/narmer_thumper_doma.b155d3341f395d08a5356b2cd59b2872.png", + "thumb": "npc/images/thumbs/narmer_thumper_doma.b155d3341f395d08a5356b2cd59b2872.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1892", + "slug": "axio_railgun_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Railgun Moa", + "icon": "npc/images/axio_railgun_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/axio_railgun_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1894", + "slug": "narmer_ballista", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Ballista", + "icon": "npc/images/narmer_ballista.a0eb418ef65a8e0ca00fc4e3ec095c5d.png", + "thumb": "npc/images/thumbs/narmer_ballista.a0eb418ef65a8e0ca00fc4e3ec095c5d.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1896", + "slug": "splintrix", + "gameRef": "", + "i18n": { + "en": { + "name": "Splintrix", + "icon": "npc/images/splintrix.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/splintrix.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1898", + "slug": "demolyst_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolyst Osprey", + "icon": "npc/images/demolyst_osprey.54ea6fc86ede720dd6a5afd5415f54b1.png", + "thumb": "npc/images/thumbs/demolyst_osprey.54ea6fc86ede720dd6a5afd5415f54b1.128x128.png" + } + } + }, + { + "id": "62d2f034751567007abb1899", + "slug": "kuva_hellion_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Hellion Carrier", + "icon": "npc/images/kuva_hellion_carrier.b2515f06c8e76220871fd2d1b805b7ef.png", + "thumb": "npc/images/thumbs/kuva_hellion_carrier.b2515f06c8e76220871fd2d1b805b7ef.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb189a", + "slug": "vorac_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Shield Osprey", + "icon": "npc/images/vorac_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/vorac_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb189b", + "slug": "vapos_shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Shockwave Moa", + "icon": "npc/images/vapos_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.png", + "thumb": "npc/images/thumbs/vapos_shockwave_moa.3f2a4e215539375cd14e29d1f44bff67.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb189c", + "slug": "drekar_scorpion", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Scorpion", + "icon": "npc/images/drekar_scorpion.de54a57bd66bd2e5e1e93b5032efcba5.png", + "thumb": "npc/images/thumbs/drekar_scorpion.de54a57bd66bd2e5e1e93b5032efcba5.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb189d", + "slug": "kosma_roller_sentry", + "gameRef": "", + "i18n": { + "en": { + "name": "Kosma Roller Sentry", + "icon": "npc/images/kosma_roller_sentry.71b5aa414f9928d2af0085f4485883a5.png", + "thumb": "npc/images/thumbs/kosma_roller_sentry.71b5aa414f9928d2af0085f4485883a5.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb189e", + "slug": "armaments_director", + "gameRef": "", + "i18n": { + "en": { + "name": "Armaments Director", + "icon": "npc/images/armaments_director.a93b73eb0f82451e1321eb58674b0bf8.png", + "thumb": "npc/images/thumbs/armaments_director.a93b73eb0f82451e1321eb58674b0bf8.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb189f", + "slug": "vorac_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Pilot", + "icon": "npc/images/vorac_pilot.85980f6df033bfb9a0683a52ed457a93.png", + "thumb": "npc/images/thumbs/vorac_pilot.85980f6df033bfb9a0683a52ed457a93.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb18a0", + "slug": "kuva_ballista", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Ballista", + "icon": "npc/images/kuva_ballista.f70d970925945104a371722e106170bc.png", + "thumb": "npc/images/thumbs/kuva_ballista.f70d970925945104a371722e106170bc.128x128.png" + } + } + }, + { + "id": "62d2f035751567007abb18a1", + "slug": "narmer_observation_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Observation Drone", + "icon": "npc/images/narmer_observation_drone.d1dbc577e87e9c7ba5c792cf187ccf28.png", + "thumb": "npc/images/thumbs/narmer_observation_drone.d1dbc577e87e9c7ba5c792cf187ccf28.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a2", + "slug": "nechramech_(tier_3)", + "gameRef": "", + "i18n": { + "en": { + "name": "Nechramech (Tier 3)", + "icon": "npc/images/nechramech_(tier_3).027b9b8ee2357756aa639680c54ca76b.png", + "thumb": "npc/images/thumbs/nechramech_(tier_3).027b9b8ee2357756aa639680c54ca76b.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a3", + "slug": "battalyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Battalyst", + "icon": "npc/images/battalyst.d2aae007a52d252596ed78f2375aaf74.png", + "thumb": "npc/images/thumbs/battalyst.d2aae007a52d252596ed78f2375aaf74.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a5", + "slug": "elite_axio_weaver", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Axio Weaver", + "icon": "npc/images/elite_axio_weaver.dbb69302b9f97acfad9e007545f641f8.png", + "thumb": "npc/images/thumbs/elite_axio_weaver.dbb69302b9f97acfad9e007545f641f8.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a6", + "slug": "tusk_mortar_bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Mortar Bombard", + "icon": "npc/images/tusk_mortar_bombard.6802abc8dc317ca6041f8afb72673db9.png", + "thumb": "npc/images/thumbs/tusk_mortar_bombard.6802abc8dc317ca6041f8afb72673db9.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a7", + "slug": "corvette", + "gameRef": "", + "i18n": { + "en": { + "name": "Corvette", + "icon": "npc/images/corvette.60b685edd3fdb8fcde25a0f8e458a223.png", + "thumb": "npc/images/thumbs/corvette.60b685edd3fdb8fcde25a0f8e458a223.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a8", + "slug": "exo_outrider", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Outrider", + "icon": "npc/images/exo_outrider.0d39d2a885eac433fa99f3a845cd6265.png", + "thumb": "npc/images/thumbs/exo_outrider.0d39d2a885eac433fa99f3a845cd6265.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18a9", + "slug": "gyre_roller_sentry", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Roller Sentry", + "icon": "npc/images/gyre_roller_sentry.71b5aa414f9928d2af0085f4485883a5.png", + "thumb": "npc/images/thumbs/gyre_roller_sentry.71b5aa414f9928d2af0085f4485883a5.128x128.png" + } + } + }, + { + "id": "62d2f036751567007abb18aa", + "slug": "axio_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Moa", + "icon": "npc/images/axio_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/axio_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18ab", + "slug": "observation_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Observation Drone", + "icon": "npc/images/observation_drone.2fab747f7a89367aefac600d2a040ab7.png", + "thumb": "npc/images/thumbs/observation_drone.2fab747f7a89367aefac600d2a040ab7.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18ac", + "slug": "rare_corpus_storage_container", + "gameRef": "", + "i18n": { + "en": { + "name": "Rare Corpus Storage Container", + "icon": "npc/images/rare_corpus_storage_container.c56cee14637c905b0563dd84fbb9ee82.png", + "thumb": "npc/images/thumbs/rare_corpus_storage_container.c56cee14637c905b0563dd84fbb9ee82.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18ad", + "slug": "axio_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Elite Crewman", + "icon": "npc/images/axio_elite_crewman.79d2a9790f023183b3dcca186a68fcda.png", + "thumb": "npc/images/thumbs/axio_elite_crewman.79d2a9790f023183b3dcca186a68fcda.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18ae", + "slug": "zealot_proselytizer", + "gameRef": "", + "i18n": { + "en": { + "name": "Zealot Proselytizer", + "icon": "npc/images/zealot_proselytizer.37721616860db7ffcc6e95c2fdcf867f.png", + "thumb": "npc/images/thumbs/zealot_proselytizer.37721616860db7ffcc6e95c2fdcf867f.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18af", + "slug": "exo_supressor", + "gameRef": "", + "i18n": { + "en": { + "name": "Exo Supressor", + "icon": "npc/images/exo_supressor.234f818c6836a89a57d7fd1125351f11.png", + "thumb": "npc/images/thumbs/exo_supressor.234f818c6836a89a57d7fd1125351f11.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18b0", + "slug": "amalgam_arca_heqet", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Arca Heqet", + "icon": "npc/images/amalgam_arca_heqet.1f295e92f49ae0819cabf5db0abac15a.png", + "thumb": "npc/images/thumbs/amalgam_arca_heqet.1f295e92f49ae0819cabf5db0abac15a.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18b1", + "slug": "narmer_glaxion_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Glaxion Moa", + "icon": "npc/images/narmer_glaxion_moa.d1ebd6964fcca0f979a89523f941426e.png", + "thumb": "npc/images/thumbs/narmer_glaxion_moa.d1ebd6964fcca0f979a89523f941426e.128x128.png" + } + } + }, + { + "id": "62d2f037751567007abb18b2", + "slug": "sap_scrambus", + "gameRef": "", + "i18n": { + "en": { + "name": "Sap Scrambus", + "icon": "npc/images/sap_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.png", + "thumb": "npc/images/thumbs/sap_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18b3", + "slug": "corpus_trencher_target", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Trencher Target", + "icon": "npc/images/corpus_trencher_target.9f6c1291cacfcee79536d6d693ec3ea1.png", + "thumb": "npc/images/thumbs/corpus_trencher_target.9f6c1291cacfcee79536d6d693ec3ea1.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18b4", + "slug": "terra_manker", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Manker", + "icon": "npc/images/terra_manker.3e6cebc87182c24f82da3dd387fb906a.png", + "thumb": "npc/images/thumbs/terra_manker.3e6cebc87182c24f82da3dd387fb906a.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18b5", + "slug": "corpus_warden", + "gameRef": "", + "i18n": { + "en": { + "name": "Corpus Warden", + "icon": "npc/images/corpus_warden.2b33e32d7f8f05ca463202df5cbbd2cd.png", + "thumb": "npc/images/thumbs/corpus_warden.2b33e32d7f8f05ca463202df5cbbd2cd.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18b6", + "slug": "fog_scrambus", + "gameRef": "", + "i18n": { + "en": { + "name": "Fog Scrambus", + "icon": "npc/images/fog_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.png", + "thumb": "npc/images/thumbs/fog_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18b7", + "slug": "elite_exo_flak", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Exo Flak", + "icon": "npc/images/elite_exo_flak.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_exo_flak.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f038751567007abb18b9", + "slug": "axio_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Crewman", + "icon": "npc/images/axio_crewman.56e580d1935130bd4712540f48a65763.png", + "thumb": "npc/images/thumbs/axio_crewman.56e580d1935130bd4712540f48a65763.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18ca", + "slug": "elite_gyre_flak", + "gameRef": "", + "i18n": { + "en": { + "name": "Elite Gyre Flak", + "icon": "npc/images/elite_gyre_flak.77bdb38312798ec91ff27cdf216048ca.png", + "thumb": "npc/images/thumbs/elite_gyre_flak.77bdb38312798ec91ff27cdf216048ca.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18cb", + "slug": "violence_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Violence (Level 0 - 100)", + "icon": "npc/images/violence_(level_0_100).35dceb8f27c25744ba547935817e297f.png", + "thumb": "npc/images/thumbs/violence_(level_0_100).35dceb8f27c25744ba547935817e297f.128x128.png" + } + } + }, + { + "id": "62d2f03a751567007abb18cc", + "slug": "drekar_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Butcher", + "icon": "npc/images/drekar_butcher.a7768f6c5f428c1df6047b23d994e25c.png", + "thumb": "npc/images/thumbs/drekar_butcher.a7768f6c5f428c1df6047b23d994e25c.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18cd", + "slug": "feral_diploid", + "gameRef": "", + "i18n": { + "en": { + "name": "Feral Diploid", + "icon": "npc/images/feral_diploid.9511125707f8df68f93d8c66991384c7.png", + "thumb": "npc/images/thumbs/feral_diploid.9511125707f8df68f93d8c66991384c7.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18ce", + "slug": "orm_shield_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Shield Osprey", + "icon": "npc/images/orm_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.png", + "thumb": "npc/images/thumbs/orm_shield_osprey.f6a2d1728ccf711c0c79d3909cabb10e.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18cf", + "slug": "cinderthresh_hyena", + "gameRef": "", + "i18n": { + "en": { + "name": "Cinderthresh Hyena", + "icon": "npc/images/cinderthresh_hyena.cd9bf28953ec045490e826d2a62b38f6.png", + "thumb": "npc/images/thumbs/cinderthresh_hyena.cd9bf28953ec045490e826d2a62b38f6.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d0", + "slug": "slo_scrambus", + "gameRef": "", + "i18n": { + "en": { + "name": "Slo Scrambus", + "icon": "npc/images/slo_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.png", + "thumb": "npc/images/thumbs/slo_scrambus.a1608c4bbc5d1a3d7e39e3f4a743681a.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d1", + "slug": "axio_stropha_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Stropha Crewman", + "icon": "npc/images/axio_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.png", + "thumb": "npc/images/thumbs/axio_stropha_crewman.52a5476d68abbda49a713b51a2ab2a4a.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d2", + "slug": "orm_disc_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Disc Moa", + "icon": "npc/images/orm_disc_moa.d1465e09c31a3212857b834445f7f4a9.png", + "thumb": "npc/images/thumbs/orm_disc_moa.d1465e09c31a3212857b834445f7f4a9.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d3", + "slug": "tusk_thumper_doma", + "gameRef": "", + "i18n": { + "en": { + "name": "Tusk Thumper Doma", + "icon": "npc/images/tusk_thumper_doma.b155d3341f395d08a5356b2cd59b2872.png", + "thumb": "npc/images/thumbs/tusk_thumper_doma.b155d3341f395d08a5356b2cd59b2872.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d4", + "slug": "narmer_sniper_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Sniper Crewman", + "icon": "npc/images/narmer_sniper_crewman.98e89446fb03dad15b0e75f505ce41ab.png", + "thumb": "npc/images/thumbs/narmer_sniper_crewman.98e89446fb03dad15b0e75f505ce41ab.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d5", + "slug": "detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Detron Crewman", + "icon": "npc/images/detron_crewman.8470c0323ac6d90370ade1b80debda86.png", + "thumb": "npc/images/thumbs/detron_crewman.8470c0323ac6d90370ade1b80debda86.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d6", + "slug": "corrupted_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Butcher", + "icon": "npc/images/corrupted_butcher.4fe5e6eac62e0841beb34934a3e0435d.png", + "thumb": "npc/images/thumbs/corrupted_butcher.4fe5e6eac62e0841beb34934a3e0435d.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d7", + "slug": "juno_oxium_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Oxium Osprey", + "icon": "npc/images/juno_oxium_osprey.c811aca1fec4c8278d6c530a35a6a29a.png", + "thumb": "npc/images/thumbs/juno_oxium_osprey.c811aca1fec4c8278d6c530a35a6a29a.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d8", + "slug": "demolisher_bailiff", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Bailiff", + "icon": "npc/images/demolisher_bailiff.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/demolisher_bailiff.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18d9", + "slug": "axio_engineer", + "gameRef": "", + "i18n": { + "en": { + "name": "Axio Engineer", + "icon": "npc/images/axio_engineer.6fab825c66632fd3b0ae3e8594440a51.png", + "thumb": "npc/images/thumbs/axio_engineer.6fab825c66632fd3b0ae3e8594440a51.128x128.png" + } + } + }, + { + "id": "62d2f03b751567007abb18da", + "slug": "terra_research_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Research Crewman", + "icon": "npc/images/terra_research_crewman.040ebda162a2ab274fee70a13f656da0.png", + "thumb": "npc/images/thumbs/terra_research_crewman.040ebda162a2ab274fee70a13f656da0.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18dc", + "slug": "kuva_roller", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Roller", + "icon": "npc/images/kuva_roller.5d3aaa4c39a383546f38b3c60366a86f.png", + "thumb": "npc/images/thumbs/kuva_roller.5d3aaa4c39a383546f38b3c60366a86f.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18dd", + "slug": "vorac_numon", + "gameRef": "", + "i18n": { + "en": { + "name": "Vorac Numon", + "icon": "npc/images/vorac_numon.dab2c76f52bd876f14d670c407cf5d10.png", + "thumb": "npc/images/thumbs/vorac_numon.dab2c76f52bd876f14d670c407cf5d10.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18de", + "slug": "vapos_aquila", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Aquila", + "icon": "npc/images/vapos_aquila.aa63934bac20f0a3d3ec3eb5bd387637.png", + "thumb": "npc/images/thumbs/vapos_aquila.aa63934bac20f0a3d3ec3eb5bd387637.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18df", + "slug": "thrax_legatus", + "gameRef": "", + "i18n": { + "en": { + "name": "Thrax Legatus", + "icon": "npc/images/thrax_legatus.fd1f6f7d035dfcbad6be241912b6de1d.png", + "thumb": "npc/images/thumbs/thrax_legatus.fd1f6f7d035dfcbad6be241912b6de1d.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18e0", + "slug": "frigate", + "gameRef": "", + "i18n": { + "en": { + "name": "Frigate", + "icon": "npc/images/frigate.078221eec75b120ede167664071db149.png", + "thumb": "npc/images/thumbs/frigate.078221eec75b120ede167664071db149.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18e1", + "slug": "heavy_gunner", + "gameRef": "", + "i18n": { + "en": { + "name": "Heavy Gunner", + "icon": "npc/images/heavy_gunner.216c1043314a854e46b8b42ceacf1631.png", + "thumb": "npc/images/thumbs/heavy_gunner.216c1043314a854e46b8b42ceacf1631.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18e2", + "slug": "aurax_actinic", + "gameRef": "", + "i18n": { + "en": { + "name": "Aurax Actinic", + "icon": "npc/images/aurax_actinic.2d6a790b3eef8713b7edac09dc494ba9.png", + "thumb": "npc/images/thumbs/aurax_actinic.2d6a790b3eef8713b7edac09dc494ba9.128x128.png" + } + } + }, + { + "id": "62d2f03c751567007abb18e3", + "slug": "mutalist_toxic_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Mutalist Toxic Carrier", + "icon": "npc/images/mutalist_toxic_carrier.bf8df8dff1905e0ee9860772e0f30ab3.png", + "thumb": "npc/images/thumbs/mutalist_toxic_carrier.bf8df8dff1905e0ee9860772e0f30ab3.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18e4", + "slug": "kuva_lich_agor_rok_(level_80_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Lich Agor Rok (Level 80 - 100)", + "icon": "npc/images/kuva_lich_agor_rok_(level_80_100).73bb240b742b1fa354965d6cd793d313.png", + "thumb": "npc/images/thumbs/kuva_lich_agor_rok_(level_80_100).73bb240b742b1fa354965d6cd793d313.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18e5", + "slug": "taro_vambac", + "gameRef": "", + "i18n": { + "en": { + "name": "Taro Vambac", + "icon": "npc/images/taro_vambac.83d94c41a5dff4d16601599e48eba2a5.png", + "thumb": "npc/images/thumbs/taro_vambac.83d94c41a5dff4d16601599e48eba2a5.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18e6", + "slug": "aurax_atloc_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Aurax Atloc Raknoid", + "icon": "npc/images/aurax_atloc_raknoid.9d90818c65305113646f2efce382a649.png", + "thumb": "npc/images/thumbs/aurax_atloc_raknoid.9d90818c65305113646f2efce382a649.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18e7", + "slug": "terra_raptor_sx", + "gameRef": "", + "i18n": { + "en": { + "name": "Terra Raptor Sx", + "icon": "npc/images/terra_raptor_sx.d41821984b8f1c36ee3a54598b2e1786.png", + "thumb": "npc/images/thumbs/terra_raptor_sx.d41821984b8f1c36ee3a54598b2e1786.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18e8", + "slug": "shadow_stalker", + "gameRef": "", + "i18n": { + "en": { + "name": "Shadow Stalker", + "icon": "npc/images/shadow_stalker.e85cd6cb64ebdbb3496ca48a9435124a.png", + "thumb": "npc/images/thumbs/shadow_stalker.e85cd6cb64ebdbb3496ca48a9435124a.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18e9", + "slug": "orm_harpi", + "gameRef": "", + "i18n": { + "en": { + "name": "Orm Harpi", + "icon": "npc/images/orm_harpi.58a110fbeb046b8020f6ded6625f758e.png", + "thumb": "npc/images/thumbs/orm_harpi.58a110fbeb046b8020f6ded6625f758e.128x128.png" + } + } + }, + { + "id": "62d2f03d751567007abb18ea", + "slug": "vapos_railgun_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Railgun Moa", + "icon": "npc/images/vapos_railgun_moa.73e6c22714613233e5cbfb98105659d4.png", + "thumb": "npc/images/thumbs/vapos_railgun_moa.73e6c22714613233e5cbfb98105659d4.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb18fa", + "slug": "amalgam_kucumatz", + "gameRef": "", + "i18n": { + "en": { + "name": "Amalgam Kucumatz", + "icon": "npc/images/amalgam_kucumatz.91bdff53dd48e5a9820d038d2a80bea4.png", + "thumb": "npc/images/thumbs/amalgam_kucumatz.91bdff53dd48e5a9820d038d2a80bea4.128x128.png" + } + } + }, + { + "id": "62d2f03f751567007abb18fc", + "slug": "drekar_seeker", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Seeker", + "icon": "npc/images/drekar_seeker.021f9bfac0f68c04a78b24025b70957c.png", + "thumb": "npc/images/thumbs/drekar_seeker.021f9bfac0f68c04a78b24025b70957c.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1910", + "slug": "gyre_gokstad_pilot", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Gokstad Pilot", + "icon": "npc/images/gyre_gokstad_pilot.fdbbdbb59c668d4e9501fd4bc246aa7f.png", + "thumb": "npc/images/thumbs/gyre_gokstad_pilot.fdbbdbb59c668d4e9501fd4bc246aa7f.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1911", + "slug": "glacik_commander", + "gameRef": "", + "i18n": { + "en": { + "name": "Glacik Commander", + "icon": "npc/images/glacik_commander.53739025764d95c0da93dcd600e6cdaa.png", + "thumb": "npc/images/thumbs/glacik_commander.53739025764d95c0da93dcd600e6cdaa.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1912", + "slug": "gyre_taktis", + "gameRef": "", + "i18n": { + "en": { + "name": "Gyre Taktis", + "icon": "npc/images/gyre_taktis.3ca5265acfaf813cc71ccf12ebb7bf34.png", + "thumb": "npc/images/thumbs/gyre_taktis.3ca5265acfaf813cc71ccf12ebb7bf34.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1913", + "slug": "arid_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Arid Eviscerator", + "icon": "npc/images/arid_eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/arid_eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1914", + "slug": "vapos_fusion_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Vapos Fusion Moa", + "icon": "npc/images/vapos_fusion_moa.bc803b3d323abedd684957ed65e49a93.png", + "thumb": "npc/images/thumbs/vapos_fusion_moa.bc803b3d323abedd684957ed65e49a93.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1915", + "slug": "lt_lech_kril", + "gameRef": "", + "i18n": { + "en": { + "name": "Lt Lech Kril", + "icon": "npc/images/lt_lech_kril.ff5f23593d0850514dd7b63c3a16d8c9.png", + "thumb": "npc/images/thumbs/lt_lech_kril.ff5f23593d0850514dd7b63c3a16d8c9.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1916", + "slug": "wolf_of_saturn_six", + "gameRef": "", + "i18n": { + "en": { + "name": "Wolf Of Saturn Six", + "icon": "npc/images/wolf_of_saturn_six.81e4031de01033420bbaad30fadb1b54.png", + "thumb": "npc/images/thumbs/wolf_of_saturn_six.81e4031de01033420bbaad30fadb1b54.128x128.png" + } + } + }, + { + "id": "62d2f041751567007abb1917", + "slug": "prod_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Prod Crewman", + "icon": "npc/images/prod_crewman.6bc4ee895343ac5b20358d054566c8e7.png", + "thumb": "npc/images/thumbs/prod_crewman.6bc4ee895343ac5b20358d054566c8e7.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb1921", + "slug": "narmer_detron_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Detron Crewman", + "icon": "npc/images/narmer_detron_crewman.b855e225111887f39b3650cabde86e33.png", + "thumb": "npc/images/thumbs/narmer_detron_crewman.b855e225111887f39b3650cabde86e33.128x128.png" + } + } + }, + { + "id": "62d2f042751567007abb1923", + "slug": "corrupted_bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Bombard", + "icon": "npc/images/corrupted_bombard.a6ac04d23105adcba22af2591f18b16a.png", + "thumb": "npc/images/thumbs/corrupted_bombard.a6ac04d23105adcba22af2591f18b16a.128x128.png" + } + } + }, + { + "id": "62d2f043751567007abb192a", + "slug": "drekar_eviscerator", + "gameRef": "", + "i18n": { + "en": { + "name": "Drekar Eviscerator", + "icon": "npc/images/drekar_eviscerator.b7321b6bac73b409f0361056bf34ee95.png", + "thumb": "npc/images/thumbs/drekar_eviscerator.b7321b6bac73b409f0361056bf34ee95.128x128.png" + } + } + }, + { + "id": "62d2f044751567007abb1931", + "slug": "mutalist_osprey_carrier", + "gameRef": "", + "i18n": { + "en": { + "name": "Mutalist Osprey Carrier", + "icon": "npc/images/mutalist_osprey_carrier.091599706750bd2de45b2334a49d0960.png", + "thumb": "npc/images/thumbs/mutalist_osprey_carrier.091599706750bd2de45b2334a49d0960.128x128.png" + } + } + }, + { + "id": "62d2f044751567007abb1933", + "slug": "aurax_baculus", + "gameRef": "", + "i18n": { + "en": { + "name": "Aurax Baculus", + "icon": "npc/images/aurax_baculus.f4143eb533d02357c9190b8e8ace86b7.png", + "thumb": "npc/images/thumbs/aurax_baculus.f4143eb533d02357c9190b8e8ace86b7.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb194b", + "slug": "narmer_bombard", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Bombard", + "icon": "npc/images/narmer_bombard.769984ca52f538a01f26d5135fad8148.png", + "thumb": "npc/images/thumbs/narmer_bombard.769984ca52f538a01f26d5135fad8148.128x128.png" + } + } + }, + { + "id": "62d2f047751567007abb194c", + "slug": "kuva_lich_agor_rok_(level_70_79)", + "gameRef": "", + "i18n": { + "en": { + "name": "Kuva Lich Agor Rok (Level 70 - 79)", + "icon": "npc/images/kuva_lich_agor_rok_(level_70_79).73bb240b742b1fa354965d6cd793d313.png", + "thumb": "npc/images/thumbs/kuva_lich_agor_rok_(level_70_79).73bb240b742b1fa354965d6cd793d313.128x128.png" + } + } + }, + { + "id": "6322929fdd457f0084f1a405", + "slug": "narmer_elite_crewman", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Elite Crewman", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a0dd457f0084f1a409", + "slug": "narmer_scyto_raknoid", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Scyto Raknoid", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a0dd457f0084f1a40a", + "slug": "narmer_demolisher_bailiff", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Demolisher Bailiff", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a0dd457f0084f1a40b", + "slug": "narmer_oxium_osprey", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Oxium Osprey", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a1dd457f0084f1a40c", + "slug": "tyro_conculyst", + "gameRef": "", + "i18n": { + "en": { + "name": "Tyro Conculyst", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a6dd457f0084f1a40d", + "slug": "narmer_scavenger_drone", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Scavenger Drone", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a6dd457f0084f1a40e", + "slug": "narmer_shockwave_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Shockwave Moa", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a6dd457f0084f1a40f", + "slug": "narmer_demolisher_expired", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Demolisher Expired", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a7dd457f0084f1a410", + "slug": "narmer_butcher", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Butcher", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a7dd457f0084f1a411", + "slug": "narmer_nullifier_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Nullifier Ranger", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a7dd457f0084f1a412", + "slug": "narmer_seeker", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Seeker", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a8dd457f0084f1a413", + "slug": "narmer_elite_lancer", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Elite Lancer", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "632292a8dd457f0084f1a414", + "slug": "narmer_sniper_ranger", + "gameRef": "", + "i18n": { + "en": { + "name": "Narmer Sniper Ranger", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "63886829e7c98800a3b47118", + "slug": "corrupted_drahk", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Drahk", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "63886829e7c98800a3b47119", + "slug": "corrupted_drahk_master", + "gameRef": "", + "i18n": { + "en": { + "name": "Corrupted Drahk Master", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "649325b77ec1902187d57144", + "slug": "necramech_(tier_1)", + "gameRef": "", + "i18n": { + "en": { + "name": "Necramech (Tier 1)", + "icon": "npc/images/necramech_(tier_1).a20cbeb0e27ad7af345816dc97d73cdb.png", + "thumb": "npc/images/thumbs/necramech_(tier_1).a20cbeb0e27ad7af345816dc97d73cdb.128x128.png" + } + } + }, + { + "id": "653052d332327ba8746da72a", + "slug": "tamm", + "gameRef": "", + "i18n": { + "en": { + "name": "Tamm", + "icon": "", + "thumb": "" + } + } + }, + { + "id": "653052d732327ba8746da72b", + "slug": "frontier_bailiff", + "gameRef": "", + "i18n": { + "en": { + "name": "Frontier Bailiff", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "657f0f8b8820fb8f3c5f45c0", + "slug": "netracell_arcocanid", + "gameRef": "", + "i18n": { + "en": { + "name": "Netracell Arcocanid", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "657f0f8c8820fb8f3c5f45c1", + "slug": "netracell_culverin", + "gameRef": "", + "i18n": { + "en": { + "name": "Netracell Culverin", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "657f0f8d8820fb8f3c5f45c2", + "slug": "lumbering_fragment", + "gameRef": "", + "i18n": { + "en": { + "name": "Lumbering Fragment", + "icon": "npc/images/lumbering_fragment.641c9d23aeb2897b76220c4d52bf1d87.png", + "thumb": "npc/images/thumbs/lumbering_fragment.641c9d23aeb2897b76220c4d52bf1d87.128x128.png" + } + } + }, + { + "id": "657f0f8d8820fb8f3c5f45c3", + "slug": "the_anatomizer", + "gameRef": "", + "i18n": { + "en": { + "name": "The Anatomizer", + "icon": "npc/images/the_anatomizer.641c9d23aeb2897b76220c4d52bf1d87.png", + "thumb": "npc/images/thumbs/the_anatomizer.641c9d23aeb2897b76220c4d52bf1d87.128x128.png" + } + } + }, + { + "id": "657f0f8e8820fb8f3c5f45c4", + "slug": "rogue_bonewidow", + "gameRef": "", + "i18n": { + "en": { + "name": "Rogue Bonewidow", + "icon": "npc/images/rogue_bonewidow.a5367e0b6e20b6c6d343f0df72557d59.png", + "thumb": "npc/images/thumbs/rogue_bonewidow.a5367e0b6e20b6c6d343f0df72557d59.128x128.png" + } + } + }, + { + "id": "657f0f8f8820fb8f3c5f45c5", + "slug": "rogue_arcocanid", + "gameRef": "", + "i18n": { + "en": { + "name": "Rogue Arcocanid", + "icon": "npc/images/rogue_arcocanid.88c93066ebde85ef751f04bfe5f307fc.png", + "thumb": "npc/images/thumbs/rogue_arcocanid.88c93066ebde85ef751f04bfe5f307fc.128x128.png" + } + } + }, + { + "id": "657f0f908820fb8f3c5f45c6", + "slug": "rogue_culverin", + "gameRef": "", + "i18n": { + "en": { + "name": "Rogue Culverin", + "icon": "npc/images/rogue_culverin.7b68d039062da456d6d3cd2953375af7.png", + "thumb": "npc/images/thumbs/rogue_culverin.7b68d039062da456d6d3cd2953375af7.128x128.png" + } + } + }, + { + "id": "657f0f918820fb8f3c5f45c7", + "slug": "rogue_voidrig", + "gameRef": "", + "i18n": { + "en": { + "name": "Rogue Voidrig", + "icon": "npc/images/rogue_voidrig.171d9da7a4617fafd39af0a2c5e2db47.png", + "thumb": "npc/images/thumbs/rogue_voidrig.171d9da7a4617fafd39af0a2c5e2db47.128x128.png" + } + } + }, + { + "id": "657f0f928820fb8f3c5f45c8", + "slug": "the_fragmented_suzerain", + "gameRef": "", + "i18n": { + "en": { + "name": "The Fragmented Suzerain", + "icon": "npc/images/the_fragmented_suzerain.641c9d23aeb2897b76220c4d52bf1d87.png", + "thumb": "npc/images/thumbs/the_fragmented_suzerain.641c9d23aeb2897b76220c4d52bf1d87.128x128.png" + } + } + }, + { + "id": "657f0f938820fb8f3c5f45c9", + "slug": "the_hollow_vein", + "gameRef": "", + "i18n": { + "en": { + "name": "The Hollow Vein", + "icon": "npc/images/the_hollow_vein.d67ce28ac04d84f8d2e7dfb96da8dac5.png", + "thumb": "npc/images/thumbs/the_hollow_vein.d67ce28ac04d84f8d2e7dfb96da8dac5.128x128.png" + } + } + }, + { + "id": "657f0f948820fb8f3c5f45ca", + "slug": "the_severed_warden", + "gameRef": "", + "i18n": { + "en": { + "name": "The Severed Warden", + "icon": "npc/images/the_severed_warden.641c9d23aeb2897b76220c4d52bf1d87.png", + "thumb": "npc/images/thumbs/the_severed_warden.641c9d23aeb2897b76220c4d52bf1d87.128x128.png" + } + } + }, + { + "id": "658d476e6a16d2e9b441c876", + "slug": "mocking_whisper", + "gameRef": "", + "i18n": { + "en": { + "name": "Mocking Whisper", + "icon": "npc/images/mocking_whisper.205f26e1cc779a65cdcd72daa5d17a7e.png", + "thumb": "npc/images/thumbs/mocking_whisper.205f26e1cc779a65cdcd72daa5d17a7e.128x128.png" + } + } + }, + { + "id": "658d476f6a16d2e9b441c877", + "slug": "scathing_whisper", + "gameRef": "", + "i18n": { + "en": { + "name": "Scathing Whisper", + "icon": "npc/images/scathing_whisper.205f26e1cc779a65cdcd72daa5d17a7e.png", + "thumb": "npc/images/thumbs/scathing_whisper.205f26e1cc779a65cdcd72daa5d17a7e.128x128.png" + } + } + }, + { + "id": "658d477e6a16d2e9b441c878", + "slug": "albrecht_entratis_netracell_(level_190_210)", + "gameRef": "", + "i18n": { + "en": { + "name": "Albrecht Entrati's Netracell (Level 190 - 210)", + "icon": "npc/images/albrecht_entratis_netracell_(level_190_210).7a4397bc355f6c5be7f8d6626ec094bc.png", + "thumb": "npc/images/thumbs/albrecht_entratis_netracell_(level_190_210).7a4397bc355f6c5be7f8d6626ec094bc.128x128.png" + } + } + }, + { + "id": "65a831571aa5178e83e73010", + "slug": "albrecht_entratis_netracells_(level_220_240)", + "gameRef": "", + "i18n": { + "en": { + "name": "Albrecht Entrati's Netracells (Level 220 - 240)", + "icon": "npc/images/albrecht_entratis_netracells_(level_220_240).41749a2439a836837205690be7a07934.png", + "thumb": "npc/images/thumbs/albrecht_entratis_netracells_(level_220_240).41749a2439a836837205690be7a07934.128x128.png" + } + } + }, + { + "id": "66049655dbdd5c1673781da7", + "slug": "demolisher_bonewidow", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Bonewidow", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "66049655dbdd5c1673781da8", + "slug": "demolisher_voidrig", + "gameRef": "", + "i18n": { + "en": { + "name": "Demolisher Voidrig", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "66049658dbdd5c1673781da9", + "slug": "elementa_arcocanid", + "gameRef": "", + "i18n": { + "en": { + "name": "Elementa Arcocanid", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "66049659dbdd5c1673781daa", + "slug": "elementa_culverin", + "gameRef": "", + "i18n": { + "en": { + "name": "Elementa Culverin", + "icon": "npc/images/elementa_culverin.22c12205641bc7aa2d9826d62bd90cf0.png", + "thumb": "npc/images/thumbs/elementa_culverin.22c12205641bc7aa2d9826d62bd90cf0.128x128.png" + } + } + }, + { + "id": "6676c43e07a5007fadf3ec67", + "slug": "juna_sapper_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Juna Sapper Moa", + "icon": "npc/images/juna_sapper_moa.31c9e2c569080149bf07f4b7c5d8731f.webp", + "thumb": "npc/images/thumbs/juna_sapper_moa.31c9e2c569080149bf07f4b7c5d8731f.128x128.webp" + } + } + }, + { + "id": "6676c44b07a5007fadf3ec68", + "slug": "sister_of_parvos_(ascension_hard_mode)", + "gameRef": "", + "i18n": { + "en": { + "name": "Sister Of Parvos (Ascension Hard Mode)", + "icon": "npc/images/sister_of_parvos_(ascension_hard_mode).504976825f1dc5367f9a98e938202ada.webp", + "thumb": "npc/images/thumbs/sister_of_parvos_(ascension_hard_mode).504976825f1dc5367f9a98e938202ada.128x128.webp" + } + } + }, + { + "id": "6676c44c07a5007fadf3ec69", + "slug": "sister_of_parvos_(ascension_mode)", + "gameRef": "", + "i18n": { + "en": { + "name": "Sister Of Parvos (Ascension Mode)", + "icon": "npc/images/sister_of_parvos_(ascension_mode).bcb799d764554d9c22a124a6546cf26c.webp", + "thumb": "npc/images/thumbs/sister_of_parvos_(ascension_mode).bcb799d764554d9c22a124a6546cf26c.128x128.webp" + } + } + }, + { + "id": "66ed73a23a826eccf651c36a", + "slug": "juno_sapper_moa", + "gameRef": "", + "i18n": { + "en": { + "name": "Juno Sapper Moa", + "icon": "npc/images/juno_sapper_moa.216b89df0b9f8c7249c023a9befd8837.webp", + "thumb": "npc/images/thumbs/juno_sapper_moa.216b89df0b9f8c7249c023a9befd8837.128x128.webp" + } + } + }, + { + "id": "66ed73aa3a826eccf651c36b", + "slug": "protector_stalker", + "gameRef": "", + "i18n": { + "en": { + "name": "Protector Stalker", + "icon": "npc/images/protector_stalker.b59006c0a3b5abdbc82ec7a6e826499e.webp", + "thumb": "npc/images/thumbs/protector_stalker.b59006c0a3b5abdbc82ec7a6e826499e.128x128.webp" + } + } + }, + { + "id": "66fe973e755c14b58ddfa050", + "slug": "infested_oni", + "gameRef": "", + "i18n": { + "en": { + "name": "Infested Oni", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "66fe9744755c14b58ddfa051", + "slug": "deimos_undying_flyer", + "gameRef": "", + "i18n": { + "en": { + "name": "Deimos Undying Flyer", + "icon": "npc/images/deimos_undying_flyer.b1e4bb2eacd487c020deb6908a930ade.webp", + "thumb": "npc/images/thumbs/deimos_undying_flyer.b1e4bb2eacd487c020deb6908a930ade.128x128.webp" + } + } + }, + { + "id": "67351689db3ac2cfade14a6e", + "slug": "entrati_netracell_coffer_(level_220_240)", + "gameRef": "", + "i18n": { + "en": { + "name": "Entrati Netracell Coffer (Level 220 - 240)", + "icon": "npc/images/entrati_netracell_coffer_(level_220_240).1ccbe5abe987b585ac61fa0d2d07581b.webp", + "thumb": "npc/images/thumbs/entrati_netracell_coffer_(level_220_240).1ccbe5abe987b585ac61fa0d2d07581b.128x128.webp" + } + } + }, + { + "id": "675c420f7b18977f6e6453e4", + "slug": "scaldra_ti_92", + "gameRef": "", + "i18n": { + "en": { + "name": "Scaldra Ti-92", + "icon": "items/images/en/scaldra_ti_92.8478aadb47880e0d330b53c5fd36071d.webp", + "thumb": "items/images/en/thumbs/scaldra_ti_92.8478aadb47880e0d330b53c5fd36071d.128x128.webp" + } + } + }, + { + "id": "675c42167b18977f6e6453e5", + "slug": "ancient_protector", + "gameRef": "", + "i18n": { + "en": { + "name": "Ancient Protector", + "icon": "items/images/en/ancient_protector.908d5f555ebf436b43087f4075f1ea8a.webp", + "thumb": "items/images/en/thumbs/ancient_protector.908d5f555ebf436b43087f4075f1ea8a.128x128.webp" + } + } + }, + { + "id": "675c42297b18977f6e6453e6", + "slug": "entrati_netracell_coffer_(level_0_100)", + "gameRef": "", + "i18n": { + "en": { + "name": "Entrati Netracell Coffer (Level 0 - 100)", + "icon": "items/images/en/entrati_netracell_coffer_(level_0_100).433512bd6311aaf87d1aebc6a7a2a4b4.webp", + "thumb": "items/images/en/thumbs/entrati_netracell_coffer_(level_0_100).433512bd6311aaf87d1aebc6a7a2a4b4.128x128.webp" + } + } + }, + { + "id": "675c65007b18977f6e64542a", + "slug": "h_09_efervon_tank", + "gameRef": "", + "i18n": { + "en": { + "name": "H-09 Efervon Tank", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "675c65047b18977f6e64542b", + "slug": "techrot_obsolyte", + "gameRef": "", + "i18n": { + "en": { + "name": "Techrot Obsolyte", + "icon": "items/images/en/techrot_obsolyte.be951080f3d7042029e009e2fd3aa72a.webp", + "thumb": "items/images/en/thumbs/techrot_obsolyte.be951080f3d7042029e009e2fd3aa72a.128x128.webp" + } + } + }, + { + "id": "675c65067b18977f6e64542c", + "slug": "techrot_babau", + "gameRef": "", + "i18n": { + "en": { + "name": "Techrot Babau", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "675c65087b18977f6e64542d", + "slug": "techrot_skuzzi", + "gameRef": "", + "i18n": { + "en": { + "name": "Techrot Skuzzi", + "icon": "items/images/en/techrot_skuzzi.be951080f3d7042029e009e2fd3aa72a.webp", + "thumb": "items/images/en/thumbs/techrot_skuzzi.be951080f3d7042029e009e2fd3aa72a.128x128.webp" + } + } + }, + { + "id": "675c650b7b18977f6e64542e", + "slug": "techrot_galliflex", + "gameRef": "", + "i18n": { + "en": { + "name": "Techrot Galliflex", + "icon": "items/images/en/techrot_galliflex.be951080f3d7042029e009e2fd3aa72a.webp", + "thumb": "items/images/en/thumbs/techrot_galliflex.be951080f3d7042029e009e2fd3aa72a.128x128.webp" + } + } + }, + { + "id": "675c650e7b18977f6e64542f", + "slug": "techrot_volatile_galliflex", + "gameRef": "", + "i18n": { + "en": { + "name": "Techrot Volatile Galliflex", + "icon": "items/images/en/techrot_volatile_galliflex.62ac0e253a44616b37c48c7b56eae2eb.webp", + "thumb": "items/images/en/thumbs/techrot_volatile_galliflex.62ac0e253a44616b37c48c7b56eae2eb.128x128.webp" + } + } + }, + { + "id": "675c65117b18977f6e645430", + "slug": "techrot_matmas", + "gameRef": "", + "i18n": { + "en": { + "name": "Techrot Matmas", + "icon": "items/images/en/techrot_matmas.be951080f3d7042029e009e2fd3aa72a.webp", + "thumb": "items/images/en/thumbs/techrot_matmas.be951080f3d7042029e009e2fd3aa72a.128x128.webp" + } + } + }, + { + "id": "675c65147b18977f6e645431", + "slug": "techrot_scaart", + "gameRef": "", + "i18n": { + "en": { + "name": "Techrot Scaart", + "icon": "items/images/en/techrot_scaart.be951080f3d7042029e009e2fd3aa72a.webp", + "thumb": "items/images/en/thumbs/techrot_scaart.be951080f3d7042029e009e2fd3aa72a.128x128.webp" + } + } + }, + { + "id": "675c65157b18977f6e645432", + "slug": "scaldra_flayer", + "gameRef": "", + "i18n": { + "en": { + "name": "Scaldra Flayer", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "675c65167b18977f6e645433", + "slug": "scaldra_dedicant", + "gameRef": "", + "i18n": { + "en": { + "name": "Scaldra Dedicant", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "675c65187b18977f6e645434", + "slug": "scaldra_eradicator", + "gameRef": "", + "i18n": { + "en": { + "name": "Scaldra Eradicator", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "675c65197b18977f6e645435", + "slug": "scaldra_jaeger", + "gameRef": "", + "i18n": { + "en": { + "name": "Scaldra Jaeger", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "675c651a7b18977f6e645436", + "slug": "scaldra_barbican", + "gameRef": "", + "i18n": { + "en": { + "name": "Scaldra Barbican", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "679243ab125398d92c8bb4dc", + "slug": "h_09_apex", + "gameRef": "", + "i18n": { + "en": { + "name": "H-09 Apex", + "icon": "npc/unknown.png", + "thumb": "npc/unknown.thumb.png" + } + } + }, + { + "id": "67db5dac9cec3e52e6252244", + "slug": "scaldra_screamer", + "gameRef": "", + "i18n": { + "en": { + "name": "Scaldra Screamer", + "icon": "items/images/en/scaldra_screamer.f12105e30908af3981e64d763f4e62c9.webp", + "thumb": "items/images/en/thumbs/scaldra_screamer.f12105e30908af3981e64d763f4e62c9.128x128.webp" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/orders.json b/src/market/models/fixtures/orders.json new file mode 100644 index 0000000..36d1531 --- /dev/null +++ b/src/market/models/fixtures/orders.json @@ -0,0 +1,10892 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "67fff94af5ba0a0031754087", + "type": "sell", + "platinum": 4, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:39:06Z", + "updatedAt": "2025-04-16T18:39:06Z", + "itemId": "66c60c2766bbb2aedca695a5", + "user": { + "id": "62fd2611ef9de8003c61fe04", + "ingameName": "Sn3k7", + "slug": "sn3k7", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:50Z" + }, + "lastSeen": "2025-04-16T18:36:50Z" + } + }, + { + "id": "67fff9498e487d0036a693fe", + "type": "sell", + "platinum": 5, + "quantity": 3, + "visible": true, + "createdAt": "2025-04-16T18:39:05Z", + "updatedAt": "2025-04-16T18:39:05Z", + "itemId": "5f498a219426ed00443bd0a7", + "user": { + "id": "64a69b7bef049529681e2bb6", + "ingameName": "AdamantiumBoy", + "slug": "adamantiumboy", + "avatar": "user/avatar/64a69b7bef049529681e2bb6.png?fd4f1d6e5807724604f5232f93b0432a", + "reputation": 297, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:55:21Z" + }, + "lastSeen": "2025-04-16T17:55:21Z" + } + }, + { + "id": "67fff9498e487d0036a693fd", + "type": "sell", + "platinum": 15, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:39:05Z", + "updatedAt": "2025-04-16T18:39:05Z", + "itemId": "673516addb3ac2cfade14a74", + "user": { + "id": "6382280bda27f708786af932", + "ingameName": "SqQubanyPL", + "slug": "sqqubanypl", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:54:11Z" + }, + "lastSeen": "2025-04-16T17:54:11Z" + } + }, + { + "id": "67fff944f5ba0a002bc30d7d", + "type": "sell", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:39:00Z", + "updatedAt": "2025-04-16T18:39:00Z", + "itemId": "5d93ca117ea27b0a87566f65", + "user": { + "id": "62a6747ac8be1f075f867260", + "ingameName": "Nakiiz", + "slug": "nakiiz", + "avatar": "user/avatar/62a6747ac8be1f075f867260.png?6e23f34705baf3ced59eee8970dac2c4", + "reputation": 35, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:44Z" + }, + "lastSeen": "2025-04-16T18:37:44Z" + } + }, + { + "id": "67fff944fde1ef0125bc4707", + "type": "sell", + "platinum": 30, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:39:00Z", + "updatedAt": "2025-04-16T18:39:00Z", + "itemId": "54a74454e779892d5e515661", + "user": { + "id": "646e75cd6c031410dcd4e6d0", + "ingameName": "KiryouPrime", + "slug": "kiryouprime", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:20:52Z" + }, + "lastSeen": "2025-04-16T18:20:52Z" + } + }, + { + "id": "67fff9436c6de200556c49b3", + "type": "buy", + "platinum": 32, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:59Z", + "updatedAt": "2025-04-16T18:38:59Z", + "itemId": "5c8693d22cc6ce0bbc095d9c", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff9436c6de2005b961bcb", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:59Z", + "updatedAt": "2025-04-16T18:38:59Z", + "itemId": "60e70f7f479445008f27259d", + "user": { + "id": "67a68047566cdb00092005f1", + "ingameName": "WarMachROX", + "slug": "warmachrox", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:58Z" + }, + "lastSeen": "2025-04-16T18:31:58Z" + } + }, + { + "id": "67fff943ff90160008d97ec4", + "type": "sell", + "platinum": 100, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:59Z", + "updatedAt": "2025-04-16T18:38:59Z", + "itemId": "5c196fae96037800ddadac15", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff942ff9016000982fe1c", + "type": "sell", + "platinum": 14, + "quantity": 2, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:58Z", + "updatedAt": "2025-04-16T18:38:58Z", + "itemId": "54a74454e779892d5e51563a", + "user": { + "id": "67e9369b8e487d000a6fdbbd", + "ingameName": "TheDexterMorgane", + "slug": "thedextermorgane", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:35Z" + }, + "lastSeen": "2025-04-16T18:31:35Z" + } + }, + { + "id": "67fff942f5ba0a001f5e3dad", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:58Z", + "updatedAt": "2025-04-16T18:38:58Z", + "itemId": "5740c1999d238d4a03d2851a", + "user": { + "id": "62f1ae8af12cfe06874c1d39", + "ingameName": "NothingIsuseless", + "slug": "nothingisuseless", + "avatar": "user/avatar/62f1ae8af12cfe06874c1d39.png?edae572a6c575a04e8b3d8aa075805c7", + "reputation": 12, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:03:25Z" + }, + "lastSeen": "2025-04-16T18:03:25Z" + } + }, + { + "id": "67fff941fde1ef0113605d20", + "type": "buy", + "platinum": 17, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:57Z", + "updatedAt": "2025-04-16T18:38:57Z", + "itemId": "641263e07d179f02100c6d49", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff9410067ad001faf864f", + "type": "buy", + "platinum": 42, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:57Z", + "updatedAt": "2025-04-16T18:38:57Z", + "itemId": "667236b88ba7c81b70d02c90", + "user": { + "id": "66dcd48460bf510007980c57", + "ingameName": "1dkwh014m", + "slug": "1dkwh014m", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:09Z" + }, + "lastSeen": "2025-04-16T18:28:09Z" + } + }, + { + "id": "67fff9406c6de200556c49b2", + "type": "sell", + "platinum": 50, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:38:56Z", + "updatedAt": "2025-04-16T18:38:56Z", + "itemId": "60ad4a1bf1904300d012c6ff", + "user": { + "id": "636f678fda27f70440b87cb1", + "ingameName": "BananaRey", + "slug": "bananarey", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:01Z" + }, + "lastSeen": "2025-04-16T18:39:01Z" + } + }, + { + "id": "67fff93f8e487d004259bca7", + "type": "sell", + "platinum": 4, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:55Z", + "updatedAt": "2025-04-16T18:38:55Z", + "itemId": "5814b1f2ca550948410af0ad", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff93ff5ba0a001f5e3dac", + "type": "sell", + "platinum": 5, + "quantity": 10, + "subtype": "intact", + "visible": true, + "createdAt": "2025-04-16T18:38:55Z", + "updatedAt": "2025-04-16T18:38:55Z", + "itemId": "6054dd0b5221e30057500f17", + "user": { + "id": "67f99937fde1ef003d5aa418", + "ingameName": "Acceltrix", + "slug": "acceltrix", + "avatar": "user/avatar/67f99937fde1ef003d5aa418.png?5b3a025cb909def69b229f7afafdc2c9", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:21:35Z" + }, + "lastSeen": "2025-04-16T18:21:35Z" + } + }, + { + "id": "67fff93cff9016000ac0fb70", + "type": "sell", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:52Z", + "updatedAt": "2025-04-16T18:38:52Z", + "itemId": "5f986cf99dbdce024971b0b8", + "user": { + "id": "62a6747ac8be1f075f867260", + "ingameName": "Nakiiz", + "slug": "nakiiz", + "avatar": "user/avatar/62a6747ac8be1f075f867260.png?6e23f34705baf3ced59eee8970dac2c4", + "reputation": 35, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:44Z" + }, + "lastSeen": "2025-04-16T18:37:44Z" + } + }, + { + "id": "67fff93af5ba0a002bc30d7c", + "type": "sell", + "platinum": 19, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:50Z", + "updatedAt": "2025-04-16T18:38:50Z", + "itemId": "64c2aa1466456704eba6ba36", + "user": { + "id": "67cdac0863ca6a000bffc8b2", + "ingameName": "-Trickster", + "slug": "trickster-3302", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:48Z" + }, + "lastSeen": "2025-04-16T18:35:48Z" + } + }, + { + "id": "67fff9396c6de2004999f20f", + "type": "sell", + "platinum": 30, + "quantity": 3, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:49Z", + "updatedAt": "2025-04-16T18:38:49Z", + "itemId": "62a2b833a554aa00a86de35c", + "user": { + "id": "5d87f158b6afee0572075fd3", + "ingameName": "Yotanido", + "slug": "yotanido", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:47Z" + }, + "lastSeen": "2025-04-16T18:29:47Z" + } + }, + { + "id": "67fff9398e487d0036a693fc", + "type": "sell", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:49Z", + "updatedAt": "2025-04-16T18:38:49Z", + "itemId": "56c3bbdb5d2f0202da32e93c", + "user": { + "id": "610c33ae05d44402341ff02b", + "ingameName": "titanium.XL", + "slug": "titanium-xl", + "avatar": "user/avatar/610c33ae05d44402341ff02b.png?7cca6c926ac71dcc01c72d7ff9b628cf", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:22:14Z" + }, + "lastSeen": "2025-04-16T18:22:14Z" + } + }, + { + "id": "67fff939fb9ffe000768daf1", + "type": "sell", + "platinum": 9, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:49Z", + "updatedAt": "2025-04-16T18:38:49Z", + "itemId": "5dfea13d1456970294aff363", + "user": { + "id": "6352a11740019f0d9ec0cd68", + "ingameName": "ImKahzma", + "slug": "imkahzma", + "avatar": "user/avatar/6352a11740019f0d9ec0cd68.png?c30858611f98f3a1a36098303727f214", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:15:27Z" + }, + "lastSeen": "2025-04-16T18:15:27Z" + } + }, + { + "id": "67fff9386c6de200556c49b1", + "type": "buy", + "platinum": 42, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:48Z", + "updatedAt": "2025-04-16T18:38:48Z", + "itemId": "667236b88ba7c81b70d02c90", + "user": { + "id": "56f800ce0f313904081f8bd5", + "ingameName": "KillThisLove", + "slug": "killthislove", + "avatar": "user/avatar/56f800ce0f313904081f8bd5.png?168fefa733dd6abfcda3c35293fb0fca", + "reputation": 155, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:30Z" + }, + "lastSeen": "2025-04-16T18:28:30Z" + } + }, + { + "id": "67fff937fde1ef011f23ad6b", + "type": "sell", + "platinum": 3, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:47Z", + "updatedAt": "2025-04-16T18:38:47Z", + "itemId": "65a7fc5aed5b0d2e3eb462b3", + "user": { + "id": "62fd2611ef9de8003c61fe04", + "ingameName": "Sn3k7", + "slug": "sn3k7", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:50Z" + }, + "lastSeen": "2025-04-16T18:36:50Z" + } + }, + { + "id": "67fff9366c6de2004f9c9b27", + "type": "sell", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:46Z", + "updatedAt": "2025-04-16T18:38:46Z", + "itemId": "5a2feeb2c2c9e90cbdaa23d5", + "user": { + "id": "62a6747ac8be1f075f867260", + "ingameName": "Nakiiz", + "slug": "nakiiz", + "avatar": "user/avatar/62a6747ac8be1f075f867260.png?6e23f34705baf3ced59eee8970dac2c4", + "reputation": 35, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:44Z" + }, + "lastSeen": "2025-04-16T18:37:44Z" + } + }, + { + "id": "67fff9366c6de200556c49b0", + "type": "buy", + "platinum": 72, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:46Z", + "updatedAt": "2025-04-16T18:38:46Z", + "itemId": "649322b07ec190215a693093", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff935353ea1000ab11bd1", + "type": "buy", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:45Z", + "updatedAt": "2025-04-16T18:38:45Z", + "itemId": "54a74454e779892d5e51559e", + "user": { + "id": "56f800ce0f313904081f8bd5", + "ingameName": "KillThisLove", + "slug": "killthislove", + "avatar": "user/avatar/56f800ce0f313904081f8bd5.png?168fefa733dd6abfcda3c35293fb0fca", + "reputation": 155, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:30Z" + }, + "lastSeen": "2025-04-16T18:28:30Z" + } + }, + { + "id": "67fff935ff90160008d97ebf", + "type": "buy", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:45Z", + "updatedAt": "2025-04-16T18:38:45Z", + "itemId": "573b7fc80ec44a47787a690f", + "user": { + "id": "581c70f90f31395e0c2796fd", + "ingameName": "SkeletronFace", + "slug": "skeletronface", + "reputation": 10, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:19Z" + }, + "lastSeen": "2025-04-16T18:36:19Z" + } + }, + { + "id": "67fff9330067ad0025115345", + "type": "sell", + "platinum": 9, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:43Z", + "updatedAt": "2025-04-16T18:38:43Z", + "itemId": "639a8d9374b02f003889eb77", + "user": { + "id": "67fc1d5afb9ffe0008f2ae93", + "ingameName": "marrop01", + "slug": "marrop01", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:17:53Z" + }, + "lastSeen": "2025-04-16T18:17:53Z" + } + }, + { + "id": "67fff933f5ba0a001f5e3dab", + "type": "buy", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:43Z", + "updatedAt": "2025-04-16T18:38:43Z", + "itemId": "639a8d9374b02f003889eb77", + "user": { + "id": "6023e467151ed60237494ba2", + "ingameName": "Kalicion", + "slug": "kalicion", + "avatar": "user/avatar/6023e467151ed60237494ba2.png?f3d96ac46ca1ea471a67c44bd5a0aac5", + "reputation": 6, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:30Z" + }, + "lastSeen": "2025-04-16T18:23:30Z" + } + }, + { + "id": "67fff932353ea10009cf7545", + "type": "buy", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:42Z", + "updatedAt": "2025-04-16T18:38:42Z", + "itemId": "54a74454e779892d5e51559e", + "user": { + "id": "67a0e4e93ba9d80565d92762", + "ingameName": "TheSparten", + "slug": "thesparten-4631", + "reputation": 12, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:36Z" + }, + "lastSeen": "2025-04-16T18:23:36Z" + } + }, + { + "id": "67fff931ff9016000ac0fb6f", + "type": "buy", + "platinum": 32, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:41Z", + "updatedAt": "2025-04-16T18:38:41Z", + "itemId": "60df11f0169993009bbb0d11", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff930fde1ef0113605d1f", + "type": "buy", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:40Z", + "updatedAt": "2025-04-16T18:38:40Z", + "itemId": "54a74454e779892d5e51559e", + "user": { + "id": "66dcd48460bf510007980c57", + "ingameName": "1dkwh014m", + "slug": "1dkwh014m", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:09Z" + }, + "lastSeen": "2025-04-16T18:28:09Z" + } + }, + { + "id": "67fff930f5ba0a001f5e3da9", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:40Z", + "updatedAt": "2025-04-16T18:38:40Z", + "itemId": "663268d1e85cac3856c86dbf", + "user": { + "id": "66069e1cf76355001f5baaf9", + "ingameName": "OROKIN.MUHAFlZl", + "slug": "orokin-muhaflzl", + "avatar": "user/avatar/66069e1cf76355001f5baaf9.png?d59f2909fe347e751a8c89fd741a57bb", + "reputation": 10, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:30Z" + }, + "lastSeen": "2025-04-16T18:38:30Z" + } + }, + { + "id": "67fff92ffde1ef0119f8374f", + "type": "buy", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:39Z", + "updatedAt": "2025-04-16T18:38:39Z", + "itemId": "61bb64fc3132ff00482b5fba", + "user": { + "id": "65bcc50aa6d41f004349ca57", + "ingameName": "HeiligeSophie", + "slug": "heiligesophie", + "avatar": "user/avatar/65bcc50aa6d41f004349ca57.png?9039ebc7732ce2072fedd285779c3c2d", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:55:36Z" + }, + "lastSeen": "2025-04-16T17:55:36Z" + } + }, + { + "id": "67fff92f6c6de2004f9c9b25", + "type": "sell", + "platinum": 20, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:39Z", + "updatedAt": "2025-04-16T18:38:39Z", + "itemId": "60e70f79479445008f272573", + "user": { + "id": "57ffdb1cd3ffb63cccf73b3a", + "ingameName": "Vanyshi", + "slug": "vanyshi", + "avatar": "user/avatar/57ffdb1cd3ffb63cccf73b3a.png?05f7ea7fd10f48b9d032db7b714efa35", + "reputation": 65, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:22:41Z" + }, + "lastSeen": "2025-04-16T18:22:41Z" + } + }, + { + "id": "67fff92efb9ffe000883f7be", + "type": "sell", + "platinum": 3, + "quantity": 13, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:38Z", + "updatedAt": "2025-04-16T18:38:38Z", + "itemId": "675c5cd07b18977f6e6453ee", + "user": { + "id": "6794b666603c7900099e29db", + "ingameName": "ImRickMFJamesB", + "slug": "imrickmfjamesb", + "avatar": "user/avatar/6794b666603c7900099e29db.png?3b08dac20e40588efdf144ff137564b6", + "reputation": 23, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:26:46Z" + }, + "lastSeen": "2025-04-16T18:26:46Z" + } + }, + { + "id": "67fff92dfde1ef011f23ad6a", + "type": "sell", + "platinum": 5, + "quantity": 10, + "subtype": "intact", + "visible": true, + "createdAt": "2025-04-16T18:38:37Z", + "updatedAt": "2025-04-16T18:38:37Z", + "itemId": "6054dd0c5221e30057500f18", + "user": { + "id": "67f99937fde1ef003d5aa418", + "ingameName": "Acceltrix", + "slug": "acceltrix", + "avatar": "user/avatar/67f99937fde1ef003d5aa418.png?5b3a025cb909def69b229f7afafdc2c9", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:21:35Z" + }, + "lastSeen": "2025-04-16T18:21:35Z" + } + }, + { + "id": "67fff92c8e487d00302d3198", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:36Z", + "updatedAt": "2025-04-16T18:38:36Z", + "itemId": "58b57068eb26db5c3119210f", + "user": { + "id": "66069e1cf76355001f5baaf9", + "ingameName": "OROKIN.MUHAFlZl", + "slug": "orokin-muhaflzl", + "avatar": "user/avatar/66069e1cf76355001f5baaf9.png?d59f2909fe347e751a8c89fd741a57bb", + "reputation": 10, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:30Z" + }, + "lastSeen": "2025-04-16T18:38:30Z" + } + }, + { + "id": "67fff92c0067ad0031fd8f07", + "type": "sell", + "platinum": 23, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:36Z", + "updatedAt": "2025-04-16T18:38:36Z", + "itemId": "67acd8fb125398d92c8bb4e0", + "user": { + "id": "5fe9cd966db57b0301ca4cb1", + "ingameName": "Strastmix", + "slug": "strastmix", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:32Z" + }, + "lastSeen": "2025-04-16T18:36:32Z" + } + }, + { + "id": "67fff92b0067ad0031fd8f06", + "type": "buy", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:35Z", + "updatedAt": "2025-04-16T18:38:35Z", + "itemId": "633e2e6af570d10793afb816", + "user": { + "id": "586c1b6e0f31390e0c98b7e9", + "ingameName": "ANDREAG757", + "slug": "andreag757", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:40Z" + }, + "lastSeen": "2025-04-16T18:38:40Z" + } + }, + { + "id": "67fff92a6c6de2005b961bc9", + "type": "buy", + "platinum": 85, + "quantity": 1, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:38:34Z", + "updatedAt": "2025-04-16T18:38:34Z", + "itemId": "54a74454e779892d5e51558d", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff92aff90160008d97ebe", + "type": "sell", + "platinum": 5, + "quantity": 4, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:34Z", + "updatedAt": "2025-04-16T18:38:34Z", + "itemId": "54a74454e779892d5e5155e9", + "user": { + "id": "63491d2e5e5fd50b5e1f8e97", + "ingameName": "DeddoendoPrime", + "slug": "deddoendoprime", + "avatar": "user/avatar/63491d2e5e5fd50b5e1f8e97.png?e08cc8a95fc2fcca6728fe490f9daedb", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:25Z" + }, + "lastSeen": "2025-04-16T18:23:25Z" + } + }, + { + "id": "67fff92a6c6de2005b961bc8", + "type": "buy", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:34Z", + "updatedAt": "2025-04-16T18:38:34Z", + "itemId": "5a2feeb2c2c9e90cbdaa23d5", + "user": { + "id": "62a6747ac8be1f075f867260", + "ingameName": "Nakiiz", + "slug": "nakiiz", + "avatar": "user/avatar/62a6747ac8be1f075f867260.png?6e23f34705baf3ced59eee8970dac2c4", + "reputation": 35, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:44Z" + }, + "lastSeen": "2025-04-16T18:37:44Z" + } + }, + { + "id": "67fff92afde1ef011f23ad69", + "type": "sell", + "platinum": 75, + "quantity": 3, + "visible": true, + "createdAt": "2025-04-16T18:38:34Z", + "updatedAt": "2025-04-16T18:38:34Z", + "itemId": "5e839496267539077b0dd6d3", + "user": { + "id": "61fc7f74ba586d044a8c3390", + "ingameName": "Ax1Le0", + "slug": "ax1le0", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:09:41Z" + }, + "lastSeen": "2025-04-16T18:09:41Z" + } + }, + { + "id": "67fff9280067ad001faf864d", + "type": "sell", + "platinum": 40, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:32Z", + "updatedAt": "2025-04-16T18:38:32Z", + "itemId": "64c2aa1466456704eba6ba35", + "user": { + "id": "6432f76937fc1604a1ceb88f", + "ingameName": "Kronoshy", + "slug": "kronoshy", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:39Z" + }, + "lastSeen": "2025-04-16T18:13:39Z" + } + }, + { + "id": "67fff925fde1ef0113605d1e", + "type": "buy", + "platinum": 9, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:29Z", + "updatedAt": "2025-04-16T18:38:29Z", + "itemId": "54a73e65e779893a797fff72", + "user": { + "id": "62a6747ac8be1f075f867260", + "ingameName": "Nakiiz", + "slug": "nakiiz", + "avatar": "user/avatar/62a6747ac8be1f075f867260.png?6e23f34705baf3ced59eee8970dac2c4", + "reputation": 35, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:44Z" + }, + "lastSeen": "2025-04-16T18:37:44Z" + } + }, + { + "id": "67fff9238e487d004259bca4", + "type": "sell", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:27Z", + "updatedAt": "2025-04-16T18:38:27Z", + "itemId": "673516aadb3ac2cfade14a71", + "user": { + "id": "5fe9cd966db57b0301ca4cb1", + "ingameName": "Strastmix", + "slug": "strastmix", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:32Z" + }, + "lastSeen": "2025-04-16T18:36:32Z" + } + }, + { + "id": "67fff9236c6de2004999f20d", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:27Z", + "updatedAt": "2025-04-16T18:38:27Z", + "itemId": "55c154a7e779895e0186c0a4", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff922fde1ef0125bc4706", + "type": "sell", + "platinum": 85, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:26Z", + "updatedAt": "2025-04-16T18:38:40Z", + "itemId": "56783f24cbfa8f0432dd89a4", + "user": { + "id": "5a3e6eb1c2c9e91c177fd6b7", + "ingameName": "LIBAM", + "slug": "libam", + "avatar": "user/avatar/5a3e6eb1c2c9e91c177fd6b7.png?27e86b14ca5ca9805efa28ba0387459c", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:20:03Z" + }, + "lastSeen": "2025-04-16T18:20:03Z" + } + }, + { + "id": "67fff9228e487d003c26acb1", + "type": "sell", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:26Z", + "updatedAt": "2025-04-16T18:38:26Z", + "itemId": "5a2feeb2c2c9e90cbdaa23d6", + "user": { + "id": "6337d4ad71ad400517458f87", + "ingameName": "VirtualGunner", + "slug": "virtualgunner", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:36Z" + }, + "lastSeen": "2025-04-16T18:37:36Z" + } + }, + { + "id": "67fff921fb9ffe0009115fd1", + "type": "buy", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:25Z", + "updatedAt": "2025-04-16T18:38:25Z", + "itemId": "673516e0db3ac2cfade14a7f", + "user": { + "id": "62a6747ac8be1f075f867260", + "ingameName": "Nakiiz", + "slug": "nakiiz", + "avatar": "user/avatar/62a6747ac8be1f075f867260.png?6e23f34705baf3ced59eee8970dac2c4", + "reputation": 35, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:44Z" + }, + "lastSeen": "2025-04-16T18:37:44Z" + } + }, + { + "id": "67fff921fde1ef0113605d1c", + "type": "sell", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:25Z", + "updatedAt": "2025-04-16T18:38:25Z", + "itemId": "663267c5e85cac3856c86db7", + "user": { + "id": "671cfe0cb12b743fc34b8232", + "ingameName": "Liamdjsbarnett", + "slug": "liamdjsbarnett", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:12Z" + }, + "lastSeen": "2025-04-16T18:28:12Z" + } + }, + { + "id": "67fff920fde1ef0119f8374d", + "type": "sell", + "platinum": 14, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:24Z", + "updatedAt": "2025-04-16T18:38:24Z", + "itemId": "56a7b2851133f656cb085d8d", + "user": { + "id": "6342f7d00404c108ac510de6", + "ingameName": "potatoketchup", + "slug": "potatoketchup", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:47:17Z" + }, + "lastSeen": "2025-04-16T17:47:17Z" + } + }, + { + "id": "67fff91ffde1ef011f23ad68", + "type": "sell", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:23Z", + "updatedAt": "2025-04-16T18:38:23Z", + "itemId": "663267c5e85cac3856c86db7", + "user": { + "id": "6382280bda27f708786af932", + "ingameName": "SqQubanyPL", + "slug": "sqqubanypl", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:54:11Z" + }, + "lastSeen": "2025-04-16T17:54:11Z" + } + }, + { + "id": "67fff91f353ea10008f1f106", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:23Z", + "updatedAt": "2025-04-16T18:38:23Z", + "itemId": "66c6080266bbb2aedca6957b", + "user": { + "id": "67cdac0863ca6a000bffc8b2", + "ingameName": "-Trickster", + "slug": "trickster-3302", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:48Z" + }, + "lastSeen": "2025-04-16T18:35:48Z" + } + }, + { + "id": "67fff91f6c6de2004999f20c", + "type": "sell", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:23Z", + "updatedAt": "2025-04-16T18:38:23Z", + "itemId": "573b804a0ec44a47787a6916", + "user": { + "id": "5fe9cd966db57b0301ca4cb1", + "ingameName": "Strastmix", + "slug": "strastmix", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:32Z" + }, + "lastSeen": "2025-04-16T18:36:32Z" + } + }, + { + "id": "67fff91efb9ffe000883f7bc", + "type": "sell", + "platinum": 100, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:38:22Z", + "updatedAt": "2025-04-16T18:38:22Z", + "itemId": "563893fcb66f83093e823472", + "user": { + "id": "5c0cd226642a2e00157abb35", + "ingameName": "KeLLdooM", + "slug": "kelldoom", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:09:31Z" + }, + "lastSeen": "2025-04-16T18:09:31Z" + } + }, + { + "id": "67fff91e353ea100079294f2", + "type": "buy", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:22Z", + "updatedAt": "2025-04-16T18:38:22Z", + "itemId": "633e2e6bf570d10793afb81d", + "user": { + "id": "586c1b6e0f31390e0c98b7e9", + "ingameName": "ANDREAG757", + "slug": "andreag757", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:40Z" + }, + "lastSeen": "2025-04-16T18:38:40Z" + } + }, + { + "id": "67fff91d8e487d00302d3197", + "type": "buy", + "platinum": 216, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:21Z", + "updatedAt": "2025-04-16T18:38:21Z", + "itemId": "649322af7ec190215a693092", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff91b0067ad001faf864c", + "type": "sell", + "platinum": 110, + "quantity": 1, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:38:19Z", + "updatedAt": "2025-04-16T18:38:19Z", + "itemId": "54a74454e779892d5e51558d", + "user": { + "id": "61e293f3493dc9135c606b3a", + "ingameName": "Sai02", + "slug": "sai02", + "avatar": "user/avatar/61e293f3493dc9135c606b3a.png?759c892c13658914344fe0e33b065d2c", + "reputation": 10, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T16:37:35Z" + }, + "lastSeen": "2025-04-16T16:37:35Z" + } + }, + { + "id": "67fff91a6c6de2005b961bc6", + "type": "sell", + "platinum": 6, + "quantity": 4, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:38:18Z", + "updatedAt": "2025-04-16T18:38:41Z", + "itemId": "595567c18e34b5ed3cb3d9b9", + "user": { + "id": "62819774f26d880181cc3c81", + "ingameName": "LeoNextDoor", + "slug": "leonextdoor", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:37:36Z" + }, + "lastSeen": "2025-04-16T17:37:36Z" + } + }, + { + "id": "67fff91a0067ad002b5d8cb0", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:18Z", + "updatedAt": "2025-04-16T18:38:18Z", + "itemId": "5f0e0fdc9f527b0285718f19", + "user": { + "id": "5b9153a79e538d01dd4769b9", + "ingameName": "The___Meg", + "slug": "the-meg", + "avatar": "user/avatar/5b9153a79e538d01dd4769b9.png?7fc2bf0c53cc6f9189a38cab794df42b", + "reputation": 73, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:08Z" + }, + "lastSeen": "2025-04-16T18:33:08Z" + } + }, + { + "id": "67fff917ff9016000982fe19", + "type": "sell", + "platinum": 105, + "quantity": 2, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:38:15Z", + "updatedAt": "2025-04-16T18:38:15Z", + "itemId": "66fd69303a826eccf651cd5b", + "user": { + "id": "5c396e04e12a2d00c7dcfd76", + "ingameName": "Spartan B177", + "slug": "spartan-b177", + "avatar": "user/avatar/5c396e04e12a2d00c7dcfd76.png?041502b1f5bc64aeb00c94237dab8ce6", + "reputation": 59, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:48Z" + }, + "lastSeen": "2025-04-16T18:37:48Z" + } + }, + { + "id": "67fff916ff9016000ac0fb6d", + "type": "buy", + "platinum": 285, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:14Z", + "updatedAt": "2025-04-16T18:38:14Z", + "itemId": "5d8765df7ea27b08950c13cc", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff916353ea100079294f0", + "type": "buy", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:14Z", + "updatedAt": "2025-04-16T18:38:14Z", + "itemId": "65a7fcc4ed5b0d2e3eb462d2", + "user": { + "id": "60a79dee54b014008753a3c7", + "ingameName": "_JetWorld_", + "slug": "jetworld", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff915f5ba0a00256a39b0", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:13Z", + "updatedAt": "2025-04-16T18:38:13Z", + "itemId": "5655c48eb66f832e0427152e", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff9136c6de2004999f209", + "type": "buy", + "platinum": 220, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:11Z", + "updatedAt": "2025-04-16T18:38:11Z", + "itemId": "63ee00fd10125411da49e6ea", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff912fb9ffe000768daef", + "type": "sell", + "platinum": 5, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:10Z", + "updatedAt": "2025-04-16T18:38:10Z", + "itemId": "54a74454e779892d5e5155aa", + "user": { + "id": "63491d2e5e5fd50b5e1f8e97", + "ingameName": "DeddoendoPrime", + "slug": "deddoendoprime", + "avatar": "user/avatar/63491d2e5e5fd50b5e1f8e97.png?e08cc8a95fc2fcca6728fe490f9daedb", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:25Z" + }, + "lastSeen": "2025-04-16T18:23:25Z" + } + }, + { + "id": "67fff912fb9ffe000accfdc0", + "type": "sell", + "platinum": 24, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:38:10Z", + "updatedAt": "2025-04-16T18:38:10Z", + "itemId": "54a73e65e779893a797fff61", + "user": { + "id": "671cfe0cb12b743fc34b8232", + "ingameName": "Liamdjsbarnett", + "slug": "liamdjsbarnett", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:12Z" + }, + "lastSeen": "2025-04-16T18:28:12Z" + } + }, + { + "id": "67fff90ff5ba0a001f5e3da7", + "type": "buy", + "platinum": 58, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:38:07Z", + "updatedAt": "2025-04-16T18:38:07Z", + "itemId": "5bc1ab92b919f200c18c10ee", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff90f0067ad002b5d8cac", + "type": "sell", + "platinum": 94, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:38:07Z", + "updatedAt": "2025-04-16T18:38:14Z", + "itemId": "5a311f84c2c9e90dfff475f1", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff90cfb9ffe0009115fcf", + "type": "sell", + "platinum": 35, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:38:04Z", + "updatedAt": "2025-04-16T18:38:04Z", + "itemId": "64c2aa1466456704eba6ba35", + "user": { + "id": "5b9153a79e538d01dd4769b9", + "ingameName": "The___Meg", + "slug": "the-meg", + "avatar": "user/avatar/5b9153a79e538d01dd4769b9.png?7fc2bf0c53cc6f9189a38cab794df42b", + "reputation": 73, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:08Z" + }, + "lastSeen": "2025-04-16T18:33:08Z" + } + }, + { + "id": "67fff90cff9016000ac0fb6c", + "type": "buy", + "platinum": 45, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:38:04Z", + "updatedAt": "2025-04-16T18:38:04Z", + "itemId": "56a7b24c1133f656cb085d85", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff909fb9ffe0009115fce", + "type": "buy", + "platinum": 42, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:38:01Z", + "updatedAt": "2025-04-16T18:38:01Z", + "itemId": "551085dde7798972c228aed9", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff9086c6de2004999f208", + "type": "sell", + "platinum": 5, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:38:00Z", + "updatedAt": "2025-04-16T18:38:00Z", + "itemId": "54a74455e779892d5e5156c0", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff907f5ba0a002bc30d78", + "type": "sell", + "platinum": 7, + "quantity": 3, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:37:59Z", + "updatedAt": "2025-04-16T18:37:59Z", + "itemId": "67db600c9cec3e52e62523e0", + "user": { + "id": "67bc9b1663ca6a001fb8c245", + "ingameName": "Mirapolius", + "slug": "mirapolius", + "avatar": "user/avatar/67bc9b1663ca6a001fb8c245.png?ad99b795f9518109bf43c08055950b5d", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:14:47Z" + }, + "lastSeen": "2025-04-16T18:14:47Z" + } + }, + { + "id": "67fff9058e487d004259bca2", + "type": "sell", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:57Z", + "updatedAt": "2025-04-16T18:37:57Z", + "itemId": "633e2e6cf570d10793afb82a", + "user": { + "id": "671cfe0cb12b743fc34b8232", + "ingameName": "Liamdjsbarnett", + "slug": "liamdjsbarnett", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:12Z" + }, + "lastSeen": "2025-04-16T18:28:12Z" + } + }, + { + "id": "67fff9050067ad0025115342", + "type": "sell", + "platinum": 4, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:57Z", + "updatedAt": "2025-04-16T18:37:57Z", + "itemId": "59dfeb6c115f1d887cfd7ac0", + "user": { + "id": "6342f7d00404c108ac510de6", + "ingameName": "potatoketchup", + "slug": "potatoketchup", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:47:17Z" + }, + "lastSeen": "2025-04-16T17:47:17Z" + } + }, + { + "id": "67fff905fde1ef0119f8374b", + "type": "sell", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:57Z", + "updatedAt": "2025-04-16T18:37:57Z", + "itemId": "56153692b66f836f7d649936", + "user": { + "id": "5fcc19f6afb13a0049aac4fe", + "ingameName": "MOONETSU", + "slug": "moonetsu", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:09Z" + }, + "lastSeen": "2025-04-16T18:29:09Z" + } + }, + { + "id": "67fff903f5ba0a002bc30d77", + "type": "sell", + "platinum": 58, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:55Z", + "updatedAt": "2025-04-16T18:37:55Z", + "itemId": "667236b88ba7c81b70d02c90", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff902353ea10008f1f105", + "type": "buy", + "platinum": 45, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:54Z", + "updatedAt": "2025-04-16T18:37:54Z", + "itemId": "667237598ba7c81b70d02c96", + "user": { + "id": "5de7d526aaeaa3032b443c95", + "ingameName": "Royssen", + "slug": "royssen", + "avatar": "user/avatar/5de7d526aaeaa3032b443c95.png?0ce2eddb5e4c3543a8139bd45cfd085c", + "reputation": 52, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff901353ea10009cf7541", + "type": "sell", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:53Z", + "updatedAt": "2025-04-16T18:37:53Z", + "itemId": "639a941d74b02f008887784f", + "user": { + "id": "562efca8b66f834044203dec", + "ingameName": "HPP_Kaa", + "slug": "hpp_kaa", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:21:25Z" + }, + "lastSeen": "2025-04-16T18:21:25Z" + } + }, + { + "id": "67fff900fde1ef0119f83749", + "type": "buy", + "platinum": 72, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:52Z", + "updatedAt": "2025-04-16T18:37:52Z", + "itemId": "649322b07ec190215a693093", + "user": { + "id": "66dcd48460bf510007980c57", + "ingameName": "1dkwh014m", + "slug": "1dkwh014m", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:09Z" + }, + "lastSeen": "2025-04-16T18:28:09Z" + } + }, + { + "id": "67fff9006c6de2005b961bc3", + "type": "sell", + "platinum": 45, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:37:52Z", + "updatedAt": "2025-04-16T18:37:52Z", + "itemId": "65a7fca4ed5b0d2e3eb462c9", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff8fffb9ffe000768daee", + "type": "sell", + "platinum": 85, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:51Z", + "updatedAt": "2025-04-16T18:37:51Z", + "itemId": "5e4e4a3526753901984c2f24", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8feff9016000ac0fb6a", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:50Z", + "updatedAt": "2025-04-16T18:37:50Z", + "itemId": "673516acdb3ac2cfade14a73", + "user": { + "id": "62fd2611ef9de8003c61fe04", + "ingameName": "Sn3k7", + "slug": "sn3k7", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:50Z" + }, + "lastSeen": "2025-04-16T18:36:50Z" + } + }, + { + "id": "67fff8fe6c6de200556c49ab", + "type": "sell", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:50Z", + "updatedAt": "2025-04-16T18:37:50Z", + "itemId": "54a73e65e779893a797fff27", + "user": { + "id": "65d7d3420d1bf7007f03bf54", + "ingameName": "Wretched138", + "slug": "wretched138", + "avatar": "user/avatar/65d7d3420d1bf7007f03bf54.png?473c79fb48e12e8bf9f9275dd9583eca", + "reputation": 158, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:51Z" + }, + "lastSeen": "2025-04-16T18:34:51Z" + } + }, + { + "id": "67fff8fe0067ad002b5d8ca9", + "type": "sell", + "platinum": 9, + "quantity": 2, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:50Z", + "updatedAt": "2025-04-16T18:37:50Z", + "itemId": "54c688a2e77989145e6d0aa0", + "user": { + "id": "63491d2e5e5fd50b5e1f8e97", + "ingameName": "DeddoendoPrime", + "slug": "deddoendoprime", + "avatar": "user/avatar/63491d2e5e5fd50b5e1f8e97.png?e08cc8a95fc2fcca6728fe490f9daedb", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:25Z" + }, + "lastSeen": "2025-04-16T18:23:25Z" + } + }, + { + "id": "67fff8fdff90160008d97ebb", + "type": "sell", + "platinum": 3, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:49Z", + "updatedAt": "2025-04-16T18:37:49Z", + "itemId": "54a73e65e779893a797fff23", + "user": { + "id": "60bba58b6e1b5802be30341c", + "ingameName": "karizev", + "slug": "karizev", + "avatar": "user/avatar/60bba58b6e1b5802be30341c.png?a1a264e08f148715598f2530c661033b", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:00Z" + }, + "lastSeen": "2025-04-16T18:34:00Z" + } + }, + { + "id": "67fff8fdff9016000982fe18", + "type": "sell", + "platinum": 14, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:49Z", + "updatedAt": "2025-04-16T18:37:49Z", + "itemId": "5615432bb66f8371035bfa2a", + "user": { + "id": "672eab7c63a29700a9468477", + "ingameName": "ChaoticNyx", + "slug": "chaoticnyx", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:49Z" + }, + "lastSeen": "2025-04-16T18:31:49Z" + } + }, + { + "id": "67fff8fcff9016000ac0fb69", + "type": "buy", + "platinum": 66, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:48Z", + "updatedAt": "2025-04-16T18:37:48Z", + "itemId": "5d93ca127ea27b0a87566f7b", + "user": { + "id": "5de7d526aaeaa3032b443c95", + "ingameName": "Royssen", + "slug": "royssen", + "avatar": "user/avatar/5de7d526aaeaa3032b443c95.png?0ce2eddb5e4c3543a8139bd45cfd085c", + "reputation": 52, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff8fc0067ad001faf8647", + "type": "sell", + "platinum": 45, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:48Z", + "updatedAt": "2025-04-16T18:37:48Z", + "itemId": "673516a9db3ac2cfade14a70", + "user": { + "id": "5bfaee86f59068056c27f81f", + "ingameName": "SharkPlushie", + "slug": "sharkplushie", + "reputation": 14, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:36Z" + }, + "lastSeen": "2025-04-16T18:37:36Z" + } + }, + { + "id": "67fff8fa353ea10009cf7540", + "type": "sell", + "platinum": 34, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:37:46Z", + "updatedAt": "2025-04-16T18:37:46Z", + "itemId": "54a74454e779892d5e5155fe", + "user": { + "id": "5ecc8e0504d55c07caf62e49", + "ingameName": "Cadmot", + "slug": "cadmot", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:14:03Z" + }, + "lastSeen": "2025-04-16T18:14:03Z" + } + }, + { + "id": "67fff8fa0067ad002b5d8ca8", + "type": "sell", + "platinum": 7, + "quantity": 1, + "amberStars": 2, + "cyanStars": 2, + "visible": true, + "createdAt": "2025-04-16T18:37:46Z", + "updatedAt": "2025-04-16T18:37:46Z", + "itemId": "588a789c3cf52c408a2f88dd", + "user": { + "id": "67ff96ceac7a930008614a3f", + "ingameName": "Raikyojiro", + "slug": "raikyojiro", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:29Z" + }, + "lastSeen": "2025-04-16T18:38:29Z" + } + }, + { + "id": "67fff8f8fb9ffe000accfdbd", + "type": "sell", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:44Z", + "updatedAt": "2025-04-16T18:37:44Z", + "itemId": "5f0deab79f527b024d48f058", + "user": { + "id": "60bba58b6e1b5802be30341c", + "ingameName": "karizev", + "slug": "karizev", + "avatar": "user/avatar/60bba58b6e1b5802be30341c.png?a1a264e08f148715598f2530c661033b", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:00Z" + }, + "lastSeen": "2025-04-16T18:34:00Z" + } + }, + { + "id": "67fff8f78e487d004259bca1", + "type": "sell", + "platinum": 30, + "quantity": 2, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:43Z", + "updatedAt": "2025-04-16T18:37:43Z", + "itemId": "658ed23f2ad6a142084fa434", + "user": { + "id": "67cdac0863ca6a000bffc8b2", + "ingameName": "-Trickster", + "slug": "trickster-3302", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:48Z" + }, + "lastSeen": "2025-04-16T18:35:48Z" + } + }, + { + "id": "67fff8f6fde1ef0113605d1a", + "type": "sell", + "platinum": 13, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:42Z", + "updatedAt": "2025-04-16T18:37:42Z", + "itemId": "5c1bda0a14a8e4006b1dad67", + "user": { + "id": "6342f7d00404c108ac510de6", + "ingameName": "potatoketchup", + "slug": "potatoketchup", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:47:17Z" + }, + "lastSeen": "2025-04-16T17:47:17Z" + } + }, + { + "id": "67fff8f5fde1ef0113605d19", + "type": "buy", + "platinum": 1, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:41Z", + "updatedAt": "2025-04-16T18:37:41Z", + "itemId": "6530694722c7fd977050854a", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8f5353ea100079294ed", + "type": "sell", + "platinum": 50, + "quantity": 5, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:41Z", + "updatedAt": "2025-04-16T18:37:41Z", + "itemId": "5be4b0a53ffcc703294e76b3", + "user": { + "id": "67e9369b8e487d000a6fdbbd", + "ingameName": "TheDexterMorgane", + "slug": "thedextermorgane", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:35Z" + }, + "lastSeen": "2025-04-16T18:31:35Z" + } + }, + { + "id": "67fff8f48e487d003c26acb0", + "type": "buy", + "platinum": 125, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:40Z", + "updatedAt": "2025-04-16T18:37:40Z", + "itemId": "566751815dcbc186f0536bd3", + "user": { + "id": "5de7d526aaeaa3032b443c95", + "ingameName": "Royssen", + "slug": "royssen", + "avatar": "user/avatar/5de7d526aaeaa3032b443c95.png?0ce2eddb5e4c3543a8139bd45cfd085c", + "reputation": 52, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff8f4353ea10008f1f103", + "type": "sell", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:40Z", + "updatedAt": "2025-04-16T18:37:40Z", + "itemId": "5f0e0fdc9f527b0285718f17", + "user": { + "id": "60bba58b6e1b5802be30341c", + "ingameName": "karizev", + "slug": "karizev", + "avatar": "user/avatar/60bba58b6e1b5802be30341c.png?a1a264e08f148715598f2530c661033b", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:00Z" + }, + "lastSeen": "2025-04-16T18:34:00Z" + } + }, + { + "id": "67fff8f38e487d00302d3194", + "type": "buy", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:39Z", + "updatedAt": "2025-04-16T18:37:39Z", + "itemId": "6242037666a58f0108c3d482", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8f3fb9ffe000accfdbc", + "type": "sell", + "platinum": 12, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:39Z", + "updatedAt": "2025-04-16T18:37:39Z", + "itemId": "633e2e6af570d10793afb816", + "user": { + "id": "5fcc19f6afb13a0049aac4fe", + "ingameName": "MOONETSU", + "slug": "moonetsu", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:09Z" + }, + "lastSeen": "2025-04-16T18:29:09Z" + } + }, + { + "id": "67fff8f00067ad001faf8645", + "type": "sell", + "platinum": 75, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:36Z", + "updatedAt": "2025-04-16T18:37:36Z", + "itemId": "5c182b739603780081b09a53", + "user": { + "id": "601e0ece59c74201765c2d45", + "ingameName": "3JI0BPED", + "slug": "3ji0bped", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:33:24Z" + }, + "lastSeen": "2025-04-16T17:33:24Z" + } + }, + { + "id": "67fff8f0ff90160007d2d28f", + "type": "buy", + "platinum": 22, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:36Z", + "updatedAt": "2025-04-16T18:37:36Z", + "itemId": "5d93ca107ea27b0a87566f62", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff8f0fde1ef011f23ad61", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:36Z", + "updatedAt": "2025-04-16T18:37:36Z", + "itemId": "54e0c9eee7798903744178a9", + "user": { + "id": "672eab7c63a29700a9468477", + "ingameName": "ChaoticNyx", + "slug": "chaoticnyx", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:49Z" + }, + "lastSeen": "2025-04-16T18:31:49Z" + } + }, + { + "id": "67fff8f0fb9ffe000883f7b9", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:36Z", + "updatedAt": "2025-04-16T18:37:36Z", + "itemId": "6242037666a58f0108c3d481", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8efff90160008d97eba", + "type": "sell", + "platinum": 75, + "quantity": 1, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:37:35Z", + "updatedAt": "2025-04-16T18:37:35Z", + "itemId": "657af5ac21646e595134f5cf", + "user": { + "id": "5e8236f75a828105d0eb1248", + "ingameName": "MrZer01", + "slug": "mrzer01", + "avatar": "user/avatar/5e8236f75a828105d0eb1248.png?35174e42ac4a02171d24b415c1761281", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:14Z" + }, + "lastSeen": "2025-04-16T18:37:14Z" + } + }, + { + "id": "67fff8edfde1ef0119f83748", + "type": "sell", + "platinum": 9, + "quantity": 6, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:33Z", + "updatedAt": "2025-04-16T18:37:33Z", + "itemId": "54a74455e779892d5e5156c5", + "user": { + "id": "59b3db820f313948a4afb416", + "ingameName": "FlyingCultLlama", + "slug": "flyingcultllama", + "avatar": "user/avatar/59b3db820f313948a4afb416.png?b68a99b2b8ba38e9280908f420ce25cf", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:26Z" + }, + "lastSeen": "2025-04-16T18:30:26Z" + } + }, + { + "id": "67fff8ed8e487d0036a693f8", + "type": "sell", + "platinum": 25, + "quantity": 4, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:33Z", + "updatedAt": "2025-04-16T18:37:33Z", + "itemId": "626a197bf40db600660a1d8b", + "user": { + "id": "5d87f158b6afee0572075fd3", + "ingameName": "Yotanido", + "slug": "yotanido", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:47Z" + }, + "lastSeen": "2025-04-16T18:29:47Z" + } + }, + { + "id": "67fff8edfde1ef0125bc4705", + "type": "sell", + "platinum": 55, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:33Z", + "updatedAt": "2025-04-16T18:37:33Z", + "itemId": "56dac8d25cc639de0a45c52d", + "user": { + "id": "677b0799f278b10008a2301a", + "ingameName": "BCristian16", + "slug": "bcristian16", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:05Z" + }, + "lastSeen": "2025-04-16T18:37:05Z" + } + }, + { + "id": "67fff8ed0067ad0031fd8f05", + "type": "buy", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:33Z", + "updatedAt": "2025-04-16T18:37:33Z", + "itemId": "639a941c74b02f008887784a", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8eaff9016000982fe15", + "type": "sell", + "platinum": 20, + "quantity": 1, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:37:30Z", + "updatedAt": "2025-04-16T18:38:51Z", + "itemId": "5526aec1e779896af9418264", + "user": { + "id": "6622bef2b0f809074bcfa879", + "ingameName": "CalilunaR", + "slug": "calilunar", + "avatar": "user/avatar/6622bef2b0f809074bcfa879.png?b931625290c9d460a3adf5280c92ea0c", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:05Z" + }, + "lastSeen": "2025-04-16T18:39:05Z" + } + }, + { + "id": "67fff8e9fde1ef0125bc4704", + "type": "buy", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:29Z", + "updatedAt": "2025-04-16T18:37:29Z", + "itemId": "54a73e65e779893a797fff58", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8e96c6de2005b961bc2", + "type": "buy", + "platinum": 37, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:29Z", + "updatedAt": "2025-04-16T18:37:37Z", + "itemId": "58b57068eb26db5c3119210e", + "user": { + "id": "6789b707c1523900a2729d08", + "ingameName": "Miahoo", + "slug": "miahoo", + "avatar": "user/avatar/6789b707c1523900a2729d08.png?b3e37e763d57d639e6a6c17ee866f122", + "reputation": 1, + "platform": "pc", + "crossplay": false, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:51Z" + }, + "lastSeen": "2025-04-16T18:36:51Z" + } + }, + { + "id": "67fff8e96c6de2004999f206", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:29Z", + "updatedAt": "2025-04-16T18:37:29Z", + "itemId": "54a74455e779892d5e5156ef", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff8e88e487d003c26acae", + "type": "sell", + "platinum": 65, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:28Z", + "updatedAt": "2025-04-16T18:37:28Z", + "itemId": "5adf8729931bcf00574adc11", + "user": { + "id": "67ffc8ca6c6de2004326db72", + "ingameName": "Muzz1221", + "slug": "muzz1221", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:58:08Z" + }, + "lastSeen": "2025-04-16T17:58:08Z" + } + }, + { + "id": "67fff8e66c6de2005b961bc1", + "type": "buy", + "platinum": 6, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:26Z", + "updatedAt": "2025-04-16T18:37:26Z", + "itemId": "591844575c170664fbd37eb2", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8e6ff90160008d97eb9", + "type": "sell", + "platinum": 85, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:26Z", + "updatedAt": "2025-04-16T18:37:26Z", + "itemId": "5a311f84c2c9e90dfff475f1", + "user": { + "id": "608dfcdae68e920265231186", + "ingameName": "TakeHiDraMi", + "slug": "takehidrami", + "avatar": "user/avatar/608dfcdae68e920265231186.png?964c393d9679b488faf6a6f3786dc799", + "reputation": 20, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:10:11Z" + }, + "lastSeen": "2025-04-16T18:10:11Z" + } + }, + { + "id": "67fff8e60067ad0031fd8f04", + "type": "sell", + "platinum": 13, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:26Z", + "updatedAt": "2025-04-16T18:37:26Z", + "itemId": "5d8765de7ea27b08950c13c5", + "user": { + "id": "6342f7d00404c108ac510de6", + "ingameName": "potatoketchup", + "slug": "potatoketchup", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:47:17Z" + }, + "lastSeen": "2025-04-16T17:47:17Z" + } + }, + { + "id": "67fff8e58e487d003c26acad", + "type": "sell", + "platinum": 10, + "quantity": 2, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:25Z", + "updatedAt": "2025-04-16T18:39:01Z", + "itemId": "5ecd08d804d55c0806f8534c", + "user": { + "id": "6622bef2b0f809074bcfa879", + "ingameName": "CalilunaR", + "slug": "calilunar", + "avatar": "user/avatar/6622bef2b0f809074bcfa879.png?b931625290c9d460a3adf5280c92ea0c", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:05Z" + }, + "lastSeen": "2025-04-16T18:39:05Z" + } + }, + { + "id": "67fff8e46c6de2004f9c9b20", + "type": "buy", + "platinum": 3, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:24Z", + "updatedAt": "2025-04-16T18:37:24Z", + "itemId": "5ee76f4c04d55c0a8197243b", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8e3f5ba0a002bc30d75", + "type": "sell", + "platinum": 11, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:23Z", + "updatedAt": "2025-04-16T18:37:23Z", + "itemId": "5eadc6bf04d55c027d23a6de", + "user": { + "id": "63491d2e5e5fd50b5e1f8e97", + "ingameName": "DeddoendoPrime", + "slug": "deddoendoprime", + "avatar": "user/avatar/63491d2e5e5fd50b5e1f8e97.png?e08cc8a95fc2fcca6728fe490f9daedb", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:25Z" + }, + "lastSeen": "2025-04-16T18:23:25Z" + } + }, + { + "id": "67fff8e16c6de2004999f205", + "type": "sell", + "platinum": 69, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:37:21Z", + "updatedAt": "2025-04-16T18:37:21Z", + "itemId": "5c182b739603780081b09a53", + "user": { + "id": "5999d8e0d3ffb66c7c334f82", + "ingameName": "CodeTerraB21", + "slug": "codeterrab21", + "reputation": 19, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:01Z" + }, + "lastSeen": "2025-04-16T18:36:01Z" + } + }, + { + "id": "67fff8e18e487d0036a693f7", + "type": "buy", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:21Z", + "updatedAt": "2025-04-16T18:37:21Z", + "itemId": "641263e07d179f02100c6d47", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8df353ea10009cf753e", + "type": "sell", + "platinum": 24, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:19Z", + "updatedAt": "2025-04-16T18:37:19Z", + "itemId": "603621500a372600fd5614d9", + "user": { + "id": "6382280bda27f708786af932", + "ingameName": "SqQubanyPL", + "slug": "sqqubanypl", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:54:11Z" + }, + "lastSeen": "2025-04-16T17:54:11Z" + } + }, + { + "id": "67fff8de0067ad002b5d8ca6", + "type": "buy", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:18Z", + "updatedAt": "2025-04-16T18:37:18Z", + "itemId": "5f0e0fde9f527b0285718f1f", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8dd6c6de2004f9c9b1f", + "type": "sell", + "platinum": 9, + "quantity": 10, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:17Z", + "updatedAt": "2025-04-16T18:37:17Z", + "itemId": "5f498a269426ed00443bd0d1", + "user": { + "id": "59b3db820f313948a4afb416", + "ingameName": "FlyingCultLlama", + "slug": "flyingcultllama", + "avatar": "user/avatar/59b3db820f313948a4afb416.png?b68a99b2b8ba38e9280908f420ce25cf", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:26Z" + }, + "lastSeen": "2025-04-16T18:30:26Z" + } + }, + { + "id": "67fff8ddf5ba0a00256a39ae", + "type": "sell", + "platinum": 20, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:37:17Z", + "updatedAt": "2025-04-16T18:37:17Z", + "itemId": "64c2aa1466456704eba6ba36", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff8dbff90160008d97eb7", + "type": "sell", + "platinum": 2, + "quantity": 24, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:15Z", + "updatedAt": "2025-04-16T18:37:15Z", + "itemId": "675c5ed17b18977f6e6453f2", + "user": { + "id": "6794b666603c7900099e29db", + "ingameName": "ImRickMFJamesB", + "slug": "imrickmfjamesb", + "avatar": "user/avatar/6794b666603c7900099e29db.png?3b08dac20e40588efdf144ff137564b6", + "reputation": 23, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:26:46Z" + }, + "lastSeen": "2025-04-16T18:26:46Z" + } + }, + { + "id": "67fff8dbf5ba0a003175407f", + "type": "buy", + "platinum": 45, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:15Z", + "updatedAt": "2025-04-16T18:37:15Z", + "itemId": "667237598ba7c81b70d02c96", + "user": { + "id": "6727b16b5ca3223baf7821df", + "ingameName": "Cypher2005", + "slug": "cypher2005", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:09:31Z" + }, + "lastSeen": "2025-04-16T18:09:31Z" + } + }, + { + "id": "67fff8db6c6de2004f9c9b1e", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:15Z", + "updatedAt": "2025-04-16T18:37:15Z", + "itemId": "639a941d74b02f0088877850", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8d9fde1ef0125bc4701", + "type": "buy", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:13Z", + "updatedAt": "2025-04-16T18:37:13Z", + "itemId": "5ba9f2014567de01415f6387", + "user": { + "id": "67bc9b1663ca6a001fb8c245", + "ingameName": "Mirapolius", + "slug": "mirapolius", + "avatar": "user/avatar/67bc9b1663ca6a001fb8c245.png?ad99b795f9518109bf43c08055950b5d", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:14:47Z" + }, + "lastSeen": "2025-04-16T18:14:47Z" + } + }, + { + "id": "67fff8d8fde1ef0119f83746", + "type": "buy", + "platinum": 45, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:37:12Z", + "updatedAt": "2025-04-16T18:37:12Z", + "itemId": "667237598ba7c81b70d02c96", + "user": { + "id": "56f800ce0f313904081f8bd5", + "ingameName": "KillThisLove", + "slug": "killthislove", + "avatar": "user/avatar/56f800ce0f313904081f8bd5.png?168fefa733dd6abfcda3c35293fb0fca", + "reputation": 155, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:30Z" + }, + "lastSeen": "2025-04-16T18:28:30Z" + } + }, + { + "id": "67fff8d80067ad002b5d8ca5", + "type": "sell", + "platinum": 43, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:12Z", + "updatedAt": "2025-04-16T18:37:12Z", + "itemId": "67acd93f125398d92c8bb4ea", + "user": { + "id": "6681a9575ca32219e77b4ddf", + "ingameName": "Sercan0258", + "slug": "sercan0258", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:52Z" + }, + "lastSeen": "2025-04-16T18:36:52Z" + } + }, + { + "id": "67fff8d86c6de2004999f204", + "type": "buy", + "platinum": 9, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:12Z", + "updatedAt": "2025-04-16T18:37:12Z", + "itemId": "5f986cf99dbdce024971b0b9", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8d88e487d003c26acac", + "type": "buy", + "platinum": 130, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:37:12Z", + "updatedAt": "2025-04-16T18:37:12Z", + "itemId": "6139101930dd5b004b7f909c", + "user": { + "id": "6355f0545e5fd50eb8749157", + "ingameName": "WOShiXiaoChengYa", + "slug": "woshixiaochengya", + "avatar": "user/avatar/6355f0545e5fd50eb8749157.png?d2d6ceebb2277323ed5d9f1fdd8b793e", + "reputation": 16, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:59:25Z" + }, + "lastSeen": "2025-04-16T17:59:25Z" + } + }, + { + "id": "67fff8d56c6de2005b961bbf", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:09Z", + "updatedAt": "2025-04-16T18:37:09Z", + "itemId": "5f0e0fde9f527b0285718f1e", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8d58e487d003c26acab", + "type": "sell", + "platinum": 50, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:37:09Z", + "updatedAt": "2025-04-16T18:37:09Z", + "itemId": "633e2e6bf570d10793afb821", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff8d40067ad001faf8643", + "type": "sell", + "platinum": 15, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:37:08Z", + "updatedAt": "2025-04-16T18:37:08Z", + "itemId": "67acd945125398d92c8bb4ee", + "user": { + "id": "67e4870ca2c1fb0021eac564", + "ingameName": "Losevo", + "slug": "losevo", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:52Z" + }, + "lastSeen": "2025-04-16T18:36:52Z" + } + }, + { + "id": "67fff8d4353ea100079294eb", + "type": "sell", + "platinum": 40, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:37:08Z", + "updatedAt": "2025-04-16T18:37:08Z", + "itemId": "561536deb66f836f8bbaca47", + "user": { + "id": "5fcc19f6afb13a0049aac4fe", + "ingameName": "MOONETSU", + "slug": "moonetsu", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:09Z" + }, + "lastSeen": "2025-04-16T18:29:09Z" + } + }, + { + "id": "67fff8d30067ad0031fd8f02", + "type": "sell", + "platinum": 75, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:07Z", + "updatedAt": "2025-04-16T18:37:34Z", + "itemId": "5ba9f2034567de01415f638b", + "user": { + "id": "5a3e6eb1c2c9e91c177fd6b7", + "ingameName": "LIBAM", + "slug": "libam", + "avatar": "user/avatar/5a3e6eb1c2c9e91c177fd6b7.png?27e86b14ca5ca9805efa28ba0387459c", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:20:03Z" + }, + "lastSeen": "2025-04-16T18:20:03Z" + } + }, + { + "id": "67fff8d2f5ba0a00256a39ad", + "type": "buy", + "platinum": 1, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:06Z", + "updatedAt": "2025-04-16T18:37:06Z", + "itemId": "641263e07d179f02100c6d4e", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8d1f5ba0a002bc30d74", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:05Z", + "updatedAt": "2025-04-16T18:37:05Z", + "itemId": "54a74454e779892d5e515676", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff8cf8e487d00302d3190", + "type": "buy", + "platinum": 1, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:03Z", + "updatedAt": "2025-04-16T18:37:03Z", + "itemId": "657f14f38820fb8f3c5f465c", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8cdfb9ffe000768daea", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:37:01Z", + "updatedAt": "2025-04-16T18:38:43Z", + "itemId": "5615432bb66f8371035bfa30", + "user": { + "id": "6622bef2b0f809074bcfa879", + "ingameName": "CalilunaR", + "slug": "calilunar", + "avatar": "user/avatar/6622bef2b0f809074bcfa879.png?b931625290c9d460a3adf5280c92ea0c", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:05Z" + }, + "lastSeen": "2025-04-16T18:39:05Z" + } + }, + { + "id": "67fff8cc6c6de200556c49a9", + "type": "buy", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:37:00Z", + "updatedAt": "2025-04-16T18:37:00Z", + "itemId": "5ba9f2024567de01415f6389", + "user": { + "id": "67bc9b1663ca6a001fb8c245", + "ingameName": "Mirapolius", + "slug": "mirapolius", + "avatar": "user/avatar/67bc9b1663ca6a001fb8c245.png?ad99b795f9518109bf43c08055950b5d", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:14:47Z" + }, + "lastSeen": "2025-04-16T18:14:47Z" + } + }, + { + "id": "67fff8cb0067ad002b5d8ca4", + "type": "buy", + "platinum": 46, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:59Z", + "updatedAt": "2025-04-16T18:36:59Z", + "itemId": "58b57068eb26db5c3119210e", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8caf5ba0a002bc30d73", + "type": "sell", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:58Z", + "updatedAt": "2025-04-16T18:36:58Z", + "itemId": "67acd8fd125398d92c8bb4e2", + "user": { + "id": "67e832009354c20007d0c08e", + "ingameName": "-Vorx-", + "slug": "vorx", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:56Z" + }, + "lastSeen": "2025-04-16T18:34:56Z" + } + }, + { + "id": "67fff8c98e487d00302d318f", + "type": "buy", + "platinum": 3, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:57Z", + "updatedAt": "2025-04-16T18:36:57Z", + "itemId": "5ee76f4c04d55c0a81972439", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8c8ff9016000982fe13", + "type": "sell", + "platinum": 5, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:36:56Z", + "updatedAt": "2025-04-16T18:38:27Z", + "itemId": "65a7fcc4ed5b0d2e3eb462d1", + "user": { + "id": "67dffc3c6be596000a0c58b1", + "ingameName": "DeadlyEscapeYT", + "slug": "deadlyescapeyt", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:36Z" + }, + "lastSeen": "2025-04-16T18:35:36Z" + } + }, + { + "id": "67fff8c6fde1ef0119f83745", + "type": "buy", + "platinum": 125, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:36:54Z", + "updatedAt": "2025-04-16T18:36:54Z", + "itemId": "566751815dcbc186f0536bd3", + "user": { + "id": "67a0e4e93ba9d80565d92762", + "ingameName": "TheSparten", + "slug": "thesparten-4631", + "reputation": 12, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:36Z" + }, + "lastSeen": "2025-04-16T18:23:36Z" + } + }, + { + "id": "67fff8c6fb9ffe000883f7b7", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:54Z", + "updatedAt": "2025-04-16T18:36:54Z", + "itemId": "5ee76f4c04d55c0a81972437", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8c50067ad002b5d8ca2", + "type": "sell", + "platinum": 40, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:36:53Z", + "updatedAt": "2025-04-16T18:36:53Z", + "itemId": "626a197af40db600660a1d83", + "user": { + "id": "5b3f71f70bb5760181950ea4", + "ingameName": "Einshi", + "slug": "einshi", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:47:35Z" + }, + "lastSeen": "2025-04-16T17:47:35Z" + } + }, + { + "id": "67fff8c5fde1ef0119f83743", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:53Z", + "updatedAt": "2025-04-16T18:36:53Z", + "itemId": "65d6509d453a14fbc68e273a", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff8c4fb9ffe000accfdb9", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:36:52Z", + "updatedAt": "2025-04-16T18:36:52Z", + "itemId": "60e70f79479445008f272573", + "user": { + "id": "67a68047566cdb00092005f1", + "ingameName": "WarMachROX", + "slug": "warmachrox", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:58Z" + }, + "lastSeen": "2025-04-16T18:31:58Z" + } + }, + { + "id": "67fff8c3ff90160007d2d28d", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:51Z", + "updatedAt": "2025-04-16T18:36:51Z", + "itemId": "657f14f38820fb8f3c5f4659", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8c00067ad002511533e", + "type": "buy", + "platinum": 3, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:48Z", + "updatedAt": "2025-04-16T18:36:48Z", + "itemId": "5ee76f4d04d55c0a8197243d", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8bd8e487d0036a693f4", + "type": "sell", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:45Z", + "updatedAt": "2025-04-16T18:36:45Z", + "itemId": "663267c3e85cac3856c86db3", + "user": { + "id": "61e430320ac480004d443306", + "ingameName": "Matt_Rowe", + "slug": "matt-rowe", + "avatar": "user/avatar/61e430320ac480004d443306.png?05d73d6efdf02d33fd8291e4fd263759", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "es", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:55Z" + }, + "lastSeen": "2025-04-16T18:36:55Z" + } + }, + { + "id": "67fff8bd0067ad002b5d8ca1", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:45Z", + "updatedAt": "2025-04-16T18:36:45Z", + "itemId": "657f14f38820fb8f3c5f465a", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8bc0067ad002511533d", + "type": "sell", + "platinum": 50, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:44Z", + "updatedAt": "2025-04-16T18:37:22Z", + "itemId": "5f0deab69f527b024d48f055", + "user": { + "id": "5a3e6eb1c2c9e91c177fd6b7", + "ingameName": "LIBAM", + "slug": "libam", + "avatar": "user/avatar/5a3e6eb1c2c9e91c177fd6b7.png?27e86b14ca5ca9805efa28ba0387459c", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:20:03Z" + }, + "lastSeen": "2025-04-16T18:20:03Z" + } + }, + { + "id": "67fff8bcfde1ef0113605d15", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:44Z", + "updatedAt": "2025-04-16T18:36:44Z", + "itemId": "6242037666a58f0108c3d479", + "user": { + "id": "6382280bda27f708786af932", + "ingameName": "SqQubanyPL", + "slug": "sqqubanypl", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:54:11Z" + }, + "lastSeen": "2025-04-16T17:54:11Z" + } + }, + { + "id": "67fff8bc0067ad002511533c", + "type": "sell", + "platinum": 3, + "quantity": 23, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:44Z", + "updatedAt": "2025-04-16T18:36:44Z", + "itemId": "675c59247b18977f6e6453e8", + "user": { + "id": "6794b666603c7900099e29db", + "ingameName": "ImRickMFJamesB", + "slug": "imrickmfjamesb", + "avatar": "user/avatar/6794b666603c7900099e29db.png?3b08dac20e40588efdf144ff137564b6", + "reputation": 23, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:26:46Z" + }, + "lastSeen": "2025-04-16T18:26:46Z" + } + }, + { + "id": "67fff8bc0067ad002511533b", + "type": "sell", + "platinum": 19, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:36:44Z", + "updatedAt": "2025-04-16T18:36:44Z", + "itemId": "66fd6a5b3a826eccf651cd7d", + "user": { + "id": "5ec68f5ffa08dc05cbbda235", + "ingameName": "BESTDOTAPLAYER", + "slug": "bestdotaplayer", + "reputation": 40, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:09:45Z" + }, + "lastSeen": "2025-04-16T17:09:45Z" + } + }, + { + "id": "67fff8bafde1ef0125bc4700", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:42Z", + "updatedAt": "2025-04-16T18:36:42Z", + "itemId": "641263e07d179f02100c6d4c", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8ba0067ad002b5d8ca0", + "type": "sell", + "platinum": 85, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:42Z", + "updatedAt": "2025-04-16T18:36:42Z", + "itemId": "5d21ce48f4604c012d1e0c18", + "user": { + "id": "660101f9b12b740277cfbbd6", + "ingameName": "54zm", + "slug": "54zm", + "reputation": 15, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:41Z" + }, + "lastSeen": "2025-04-16T18:38:41Z" + } + }, + { + "id": "67fff8b8f5ba0a001f5e3da3", + "type": "sell", + "platinum": 42, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:40Z", + "updatedAt": "2025-04-16T18:36:40Z", + "itemId": "5d21ce46f4604c012d1e0c12", + "user": { + "id": "62fd2611ef9de8003c61fe04", + "ingameName": "Sn3k7", + "slug": "sn3k7", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:50Z" + }, + "lastSeen": "2025-04-16T18:36:50Z" + } + }, + { + "id": "67fff8b70067ad0031fd8f00", + "type": "sell", + "platinum": 19, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:39Z", + "updatedAt": "2025-04-16T18:36:39Z", + "itemId": "5dfea1421456970294aff380", + "user": { + "id": "67f974ef8f1dcf0007d9112b", + "ingameName": "LozardPrime", + "slug": "lozardprime", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:16Z" + }, + "lastSeen": "2025-04-16T18:36:16Z" + } + }, + { + "id": "67fff8b7f5ba0a002bc30d70", + "type": "buy", + "platinum": 1, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:39Z", + "updatedAt": "2025-04-16T18:36:39Z", + "itemId": "54a73e65e779893a797fff22", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8b7fb9ffe000768dae8", + "type": "sell", + "platinum": 11, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:39Z", + "updatedAt": "2025-04-16T18:36:39Z", + "itemId": "6604a680dbdd5c1673781dbb", + "user": { + "id": "5c4f3357af75ea038e3f993e", + "ingameName": "FlightDream", + "slug": "flightdream", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:18Z" + }, + "lastSeen": "2025-04-16T18:32:18Z" + } + }, + { + "id": "67fff8b50067ad0031fd8eff", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:37Z", + "updatedAt": "2025-04-16T18:36:37Z", + "itemId": "6242037666a58f0108c3d485", + "user": { + "id": "67c4868840c8b300c124f786", + "ingameName": "Nevermindsde", + "slug": "nevermindsde", + "avatar": "user/avatar/67c4868840c8b300c124f786.png?de276235ed195ae0129461606ded454d", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:36Z" + }, + "lastSeen": "2025-04-16T18:35:36Z" + } + }, + { + "id": "67fff8b50067ad0031fd8efe", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:37Z", + "updatedAt": "2025-04-16T18:36:37Z", + "itemId": "54a74454e779892d5e515626", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff8b4ff9016000982fe12", + "type": "buy", + "platinum": 18, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:36Z", + "updatedAt": "2025-04-16T18:36:36Z", + "itemId": "56783f24cbfa8f0432dd89a7", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8b3f5ba0a002bc30d6f", + "type": "buy", + "platinum": 32, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:35Z", + "updatedAt": "2025-04-16T18:36:35Z", + "itemId": "573d0efa336297b2dfca2909", + "user": { + "id": "5f3a4facd4c2480081d61018", + "ingameName": "StandoPowa420", + "slug": "standopowa420", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:41Z" + }, + "lastSeen": "2025-04-16T18:35:41Z" + } + }, + { + "id": "67fff8b18e487d004259bc9a", + "type": "buy", + "platinum": 25, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:36:33Z", + "updatedAt": "2025-04-16T18:38:34Z", + "itemId": "675c59297b18977f6e6453ea", + "user": { + "id": "67a0e4e93ba9d80565d92762", + "ingameName": "TheSparten", + "slug": "thesparten-4631", + "reputation": 12, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:36Z" + }, + "lastSeen": "2025-04-16T18:23:36Z" + } + }, + { + "id": "67fff8b0fde1ef0125bc46fe", + "type": "buy", + "platinum": 1, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:32Z", + "updatedAt": "2025-04-16T18:36:32Z", + "itemId": "65a7fcc4ed5b0d2e3eb462cf", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8afff9016000ac0fb67", + "type": "sell", + "platinum": 35, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:36:31Z", + "updatedAt": "2025-04-16T18:36:31Z", + "itemId": "58358e1b2c2ada00655a4ef5", + "user": { + "id": "5fcc19f6afb13a0049aac4fe", + "ingameName": "MOONETSU", + "slug": "moonetsu", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:09Z" + }, + "lastSeen": "2025-04-16T18:29:09Z" + } + }, + { + "id": "67fff8af0067ad001faf8642", + "type": "sell", + "platinum": 35, + "quantity": 5, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:31Z", + "updatedAt": "2025-04-16T18:36:31Z", + "itemId": "554d3f0ce779894445a848fe", + "user": { + "id": "59b3db820f313948a4afb416", + "ingameName": "FlyingCultLlama", + "slug": "flyingcultllama", + "avatar": "user/avatar/59b3db820f313948a4afb416.png?b68a99b2b8ba38e9280908f420ce25cf", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:26Z" + }, + "lastSeen": "2025-04-16T18:30:26Z" + } + }, + { + "id": "67fff8ad353ea10008f1f0fd", + "type": "buy", + "platinum": 28, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:29Z", + "updatedAt": "2025-04-16T18:36:29Z", + "itemId": "573b7fc80ec44a47787a690f", + "user": { + "id": "5f3a4facd4c2480081d61018", + "ingameName": "StandoPowa420", + "slug": "standopowa420", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:41Z" + }, + "lastSeen": "2025-04-16T18:35:41Z" + } + }, + { + "id": "67fff8adff9016000ac0fb66", + "type": "buy", + "platinum": 13, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:29Z", + "updatedAt": "2025-04-16T18:36:29Z", + "itemId": "62d3494075156700ce450df0", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8aa6c6de2004999f203", + "type": "buy", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:26Z", + "updatedAt": "2025-04-16T18:36:26Z", + "itemId": "54a73e65e779893a797fff5a", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8aafde1ef011f23ad5a", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:36:26Z", + "updatedAt": "2025-04-16T18:36:26Z", + "itemId": "60e70f80479445008f2725a6", + "user": { + "id": "67a68047566cdb00092005f1", + "ingameName": "WarMachROX", + "slug": "warmachrox", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:58Z" + }, + "lastSeen": "2025-04-16T18:31:58Z" + } + }, + { + "id": "67fff8a7ff9016000982fe11", + "type": "buy", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:23Z", + "updatedAt": "2025-04-16T18:36:23Z", + "itemId": "633e2e6bf570d10793afb81e", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8a6fb9ffe0009115fcd", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:22Z", + "updatedAt": "2025-04-16T18:36:22Z", + "itemId": "55c15459e779895dd6f10f59", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff8a68e487d0036a693f3", + "type": "buy", + "platinum": 16, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:22Z", + "updatedAt": "2025-04-16T18:36:22Z", + "itemId": "573b7fc20ec44a47787a690e", + "user": { + "id": "5f3a4facd4c2480081d61018", + "ingameName": "StandoPowa420", + "slug": "standopowa420", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:41Z" + }, + "lastSeen": "2025-04-16T18:35:41Z" + } + }, + { + "id": "67fff8a5353ea10009cf753a", + "type": "sell", + "platinum": 55, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:21Z", + "updatedAt": "2025-04-16T18:36:21Z", + "itemId": "639a8d9474b02f003889eb84", + "user": { + "id": "62e1747c31d5ce0339b86146", + "ingameName": "Superman961", + "slug": "superman961", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:00Z" + }, + "lastSeen": "2025-04-16T18:23:00Z" + } + }, + { + "id": "67fff8a50067ad001faf8641", + "type": "buy", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:21Z", + "updatedAt": "2025-04-16T18:36:21Z", + "itemId": "639a941d74b02f008887784e", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff8a4fb9ffe0009115fcc", + "type": "sell", + "platinum": 35, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:36:20Z", + "updatedAt": "2025-04-16T18:36:20Z", + "itemId": "673516c5db3ac2cfade14a76", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff8a28e487d003c26aca9", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:18Z", + "updatedAt": "2025-04-16T18:36:18Z", + "itemId": "67db60859cec3e52e62523f2", + "user": { + "id": "5c4f3357af75ea038e3f993e", + "ingameName": "FlightDream", + "slug": "flightdream", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:18Z" + }, + "lastSeen": "2025-04-16T18:32:18Z" + } + }, + { + "id": "67fff8a28e487d003c26aca8", + "type": "buy", + "platinum": 18, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:18Z", + "updatedAt": "2025-04-16T18:36:18Z", + "itemId": "5dff6e111456970316674a20", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff89f6c6de2004999f202", + "type": "buy", + "platinum": 90, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:15Z", + "updatedAt": "2025-04-16T18:36:15Z", + "itemId": "56783f24cbfa8f0432dd89a1", + "user": { + "id": "65bcc50aa6d41f004349ca57", + "ingameName": "HeiligeSophie", + "slug": "heiligesophie", + "avatar": "user/avatar/65bcc50aa6d41f004349ca57.png?9039ebc7732ce2072fedd285779c3c2d", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:55:36Z" + }, + "lastSeen": "2025-04-16T17:55:36Z" + } + }, + { + "id": "67fff89f6c6de200556c49a5", + "type": "buy", + "platinum": 3, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:15Z", + "updatedAt": "2025-04-16T18:36:15Z", + "itemId": "657f14f38820fb8f3c5f465b", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff89e353ea10008f1f0fb", + "type": "sell", + "platinum": 84, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:14Z", + "updatedAt": "2025-04-16T18:36:14Z", + "itemId": "5d21ce48f4604c012d1e0c18", + "user": { + "id": "5d29b976c40cd90082a66be5", + "ingameName": "lXsivel", + "slug": "lxsivel", + "avatar": "user/avatar/5d29b976c40cd90082a66be5.png?1eddcfa26cc6cdda93b16149f99b899c", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:19:14Z" + }, + "lastSeen": "2025-04-16T18:19:14Z" + } + }, + { + "id": "67fff89d8e487d004259bc99", + "type": "buy", + "platinum": 52, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:36:13Z", + "updatedAt": "2025-04-16T18:36:22Z", + "itemId": "54a74454e779892d5e51563d", + "user": { + "id": "5ada379f69f3060a4a580cdc", + "ingameName": "MrEarthz", + "slug": "mrearthz", + "avatar": "user/avatar/5ada379f69f3060a4a580cdc.png?2463d30b528837931628b85d4c853ff0", + "reputation": 42, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:35:28Z" + }, + "lastSeen": "2025-04-16T17:35:28Z" + } + }, + { + "id": "67fff89c6c6de2005b961bbc", + "type": "buy", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:12Z", + "updatedAt": "2025-04-16T18:36:12Z", + "itemId": "5dfea1421456970294aff37f", + "user": { + "id": "5c168596d14592013c0cd094", + "ingameName": "JakubWF", + "slug": "jakubwf", + "avatar": "user/avatar/5c168596d14592013c0cd094.png?9af9a2eae33aa1c8e19e7388a7f37bef", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:13:48Z" + }, + "lastSeen": "2025-04-16T18:13:48Z" + } + }, + { + "id": "67fff89c0067ad001faf8640", + "type": "sell", + "platinum": 5, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:36:12Z", + "updatedAt": "2025-04-16T18:36:12Z", + "itemId": "6242037666a58f0108c3d479", + "user": { + "id": "67c4868840c8b300c124f786", + "ingameName": "Nevermindsde", + "slug": "nevermindsde", + "avatar": "user/avatar/67c4868840c8b300c124f786.png?de276235ed195ae0129461606ded454d", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:36Z" + }, + "lastSeen": "2025-04-16T18:35:36Z" + } + }, + { + "id": "67fff89bf5ba0a001f5e3da2", + "type": "sell", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:11Z", + "updatedAt": "2025-04-16T18:36:29Z", + "itemId": "663268cbe85cac3856c86dbb", + "user": { + "id": "616349f4af9b5f0414b8091c", + "ingameName": "BriannaSatou", + "slug": "briannasatou", + "avatar": "user/avatar/616349f4af9b5f0414b8091c.png?fe7adb428b1f64b0b3c9c6d3cb3ec314", + "reputation": 16, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:33Z" + }, + "lastSeen": "2025-04-16T18:36:33Z" + } + }, + { + "id": "67fff89a0067ad002b5d8c9e", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:36:10Z", + "updatedAt": "2025-04-16T18:36:10Z", + "itemId": "60e70f80479445008f2725a4", + "user": { + "id": "67a68047566cdb00092005f1", + "ingameName": "WarMachROX", + "slug": "warmachrox", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:58Z" + }, + "lastSeen": "2025-04-16T18:31:58Z" + } + }, + { + "id": "67fff899353ea100079294e7", + "type": "sell", + "platinum": 2, + "quantity": 15, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:36:09Z", + "updatedAt": "2025-04-16T18:36:09Z", + "itemId": "675c5edc7b18977f6e6453f4", + "user": { + "id": "6794b666603c7900099e29db", + "ingameName": "ImRickMFJamesB", + "slug": "imrickmfjamesb", + "avatar": "user/avatar/6794b666603c7900099e29db.png?3b08dac20e40588efdf144ff137564b6", + "reputation": 23, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:26:46Z" + }, + "lastSeen": "2025-04-16T18:26:46Z" + } + }, + { + "id": "67fff8970067ad002511533a", + "type": "sell", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:07Z", + "updatedAt": "2025-04-16T18:36:07Z", + "itemId": "58b57068eb26db5c31192111", + "user": { + "id": "6382280bda27f708786af932", + "ingameName": "SqQubanyPL", + "slug": "sqqubanypl", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:54:11Z" + }, + "lastSeen": "2025-04-16T17:54:11Z" + } + }, + { + "id": "67fff896fb9ffe000883f7b5", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:36:06Z", + "updatedAt": "2025-04-16T18:36:06Z", + "itemId": "66fd6a413a826eccf651cd79", + "user": { + "id": "5ec68f5ffa08dc05cbbda235", + "ingameName": "BESTDOTAPLAYER", + "slug": "bestdotaplayer", + "reputation": 40, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:09:45Z" + }, + "lastSeen": "2025-04-16T17:09:45Z" + } + }, + { + "id": "67fff8956c6de200556c49a3", + "type": "buy", + "platinum": 11, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:05Z", + "updatedAt": "2025-04-16T18:36:10Z", + "itemId": "573b7fbd0ec44a47787a690d", + "user": { + "id": "5f3a4facd4c2480081d61018", + "ingameName": "StandoPowa420", + "slug": "standopowa420", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:41Z" + }, + "lastSeen": "2025-04-16T18:35:41Z" + } + }, + { + "id": "67fff892ff9016000982fe10", + "type": "sell", + "platinum": 9, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:02Z", + "updatedAt": "2025-04-16T18:36:02Z", + "itemId": "65a7fca4ed5b0d2e3eb462cb", + "user": { + "id": "67e832009354c20007d0c08e", + "ingameName": "-Vorx-", + "slug": "vorx", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:56Z" + }, + "lastSeen": "2025-04-16T18:34:56Z" + } + }, + { + "id": "67fff891353ea100079294e6", + "type": "sell", + "platinum": 14, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:01Z", + "updatedAt": "2025-04-16T18:36:01Z", + "itemId": "56c3bbd55d2f0202da32e93b", + "user": { + "id": "5fcc19f6afb13a0049aac4fe", + "ingameName": "MOONETSU", + "slug": "moonetsu", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:09Z" + }, + "lastSeen": "2025-04-16T18:29:09Z" + } + }, + { + "id": "67fff8908e487d003c26aca6", + "type": "sell", + "platinum": 10, + "quantity": 3, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:36:00Z", + "updatedAt": "2025-04-16T18:36:00Z", + "itemId": "584160cd43e4267b5b699191", + "user": { + "id": "67e874cdf029d8000871f791", + "ingameName": "ReconfigureTheCitrus", + "slug": "reconfigurethecitrus", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:09Z" + }, + "lastSeen": "2025-04-16T18:36:09Z" + } + }, + { + "id": "67fff890fb9ffe0009115fca", + "type": "buy", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:36:00Z", + "updatedAt": "2025-04-16T18:36:00Z", + "itemId": "6242037666a58f0108c3d486", + "user": { + "id": "67bc9b1663ca6a001fb8c245", + "ingameName": "Mirapolius", + "slug": "mirapolius", + "avatar": "user/avatar/67bc9b1663ca6a001fb8c245.png?ad99b795f9518109bf43c08055950b5d", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:14:47Z" + }, + "lastSeen": "2025-04-16T18:14:47Z" + } + }, + { + "id": "67fff88e6c6de2005b961bbb", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:58Z", + "updatedAt": "2025-04-16T18:35:58Z", + "itemId": "60ad4a1cf1904300d012c703", + "user": { + "id": "67c4868840c8b300c124f786", + "ingameName": "Nevermindsde", + "slug": "nevermindsde", + "avatar": "user/avatar/67c4868840c8b300c124f786.png?de276235ed195ae0129461606ded454d", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:36Z" + }, + "lastSeen": "2025-04-16T18:35:36Z" + } + }, + { + "id": "67fff88df5ba0a002bc30d6d", + "type": "sell", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:57Z", + "updatedAt": "2025-04-16T18:35:57Z", + "itemId": "54a73e65e779893a797fff63", + "user": { + "id": "67c883c940c8b3001fd59aa3", + "ingameName": "Niceou", + "slug": "niceou", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:54Z" + }, + "lastSeen": "2025-04-16T18:34:54Z" + } + }, + { + "id": "67fff88d8e487d00302d318e", + "type": "sell", + "platinum": 7, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:57Z", + "updatedAt": "2025-04-16T18:35:57Z", + "itemId": "54a74454e779892d5e515657", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff88df5ba0a003175407d", + "type": "buy", + "platinum": 28, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:57Z", + "updatedAt": "2025-04-16T18:35:57Z", + "itemId": "559daacae779897b47b74c13", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff88bff9016000ac0fb65", + "type": "sell", + "platinum": 9, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:55Z", + "updatedAt": "2025-04-16T18:35:55Z", + "itemId": "56783f24cbfa8f0432dd89a9", + "user": { + "id": "67c8b3a330f007002b55d788", + "ingameName": "Bronnson144", + "slug": "bronnson144", + "reputation": 16, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:40Z" + }, + "lastSeen": "2025-04-16T18:36:40Z" + } + }, + { + "id": "67fff88bff90160008d97eb1", + "type": "buy", + "platinum": 27, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:35:55Z", + "updatedAt": "2025-04-16T18:38:35Z", + "itemId": "56153e78b66f83706f01716f", + "user": { + "id": "66dcd48460bf510007980c57", + "ingameName": "1dkwh014m", + "slug": "1dkwh014m", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:09Z" + }, + "lastSeen": "2025-04-16T18:28:09Z" + } + }, + { + "id": "67fff88b0067ad001faf863f", + "type": "sell", + "platinum": 75, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:55Z", + "updatedAt": "2025-04-16T18:35:55Z", + "itemId": "5d93ca117ea27b0a87566f6b", + "user": { + "id": "595d10180f313943c41e6b73", + "ingameName": "spifi", + "slug": "spifi", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:55Z" + }, + "lastSeen": "2025-04-16T18:28:55Z" + } + }, + { + "id": "67fff887353ea10009cf7539", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:51Z", + "updatedAt": "2025-04-16T18:35:51Z", + "itemId": "5df8b0aa1456970087cd9aff", + "user": { + "id": "67ffef65fb9ffe0009115f32", + "ingameName": "platinvm", + "slug": "platinvm", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "es", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:08Z" + }, + "lastSeen": "2025-04-16T18:35:08Z" + } + }, + { + "id": "67fff8860067ad0031fd8efd", + "type": "buy", + "platinum": 17, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:50Z", + "updatedAt": "2025-04-16T18:35:50Z", + "itemId": "641263e07d179f02100c6d49", + "user": { + "id": "61fabc6f0ac48003fda1fefe", + "ingameName": "Kemosabe111", + "slug": "kemosabe111", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:04:56Z" + }, + "lastSeen": "2025-04-16T17:04:56Z" + } + }, + { + "id": "67fff886ff90160007d2d288", + "type": "buy", + "platinum": 95, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:50Z", + "updatedAt": "2025-04-16T18:35:50Z", + "itemId": "56783f24cbfa8f0432dd89a3", + "user": { + "id": "67f63cf2fde1ef00370158e0", + "ingameName": "69QwertyPrime69", + "slug": "69qwertyprime69", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:14Z" + }, + "lastSeen": "2025-04-16T18:33:14Z" + } + }, + { + "id": "67fff8860067ad0025115339", + "type": "sell", + "platinum": 12, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:50Z", + "updatedAt": "2025-04-16T18:35:50Z", + "itemId": "633e2e6af570d10793afb816", + "user": { + "id": "66476979da67ec0008fc1405", + "ingameName": "SKRIPTEDMAN", + "slug": "skriptedman", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:26:09Z" + }, + "lastSeen": "2025-04-16T18:26:09Z" + } + }, + { + "id": "67fff8826c6de2004f9c9b19", + "type": "sell", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:46Z", + "updatedAt": "2025-04-16T18:35:46Z", + "itemId": "639a941d74b02f008887784d", + "user": { + "id": "67e832009354c20007d0c08e", + "ingameName": "-Vorx-", + "slug": "vorx", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:56Z" + }, + "lastSeen": "2025-04-16T18:34:56Z" + } + }, + { + "id": "67fff8818e487d0036a693f2", + "type": "sell", + "platinum": 30, + "quantity": 3, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:35:45Z", + "updatedAt": "2025-04-16T18:35:45Z", + "itemId": "626a197af40db600660a1d83", + "user": { + "id": "5d87f158b6afee0572075fd3", + "ingameName": "Yotanido", + "slug": "yotanido", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:47Z" + }, + "lastSeen": "2025-04-16T18:29:47Z" + } + }, + { + "id": "67fff8818e487d004259bc97", + "type": "sell", + "platinum": 40, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:45Z", + "updatedAt": "2025-04-16T18:35:45Z", + "itemId": "559daacae779897b47b74c13", + "user": { + "id": "5b439f000bb5760262623536", + "ingameName": "dankbananas", + "slug": "dankbananas", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:44Z" + }, + "lastSeen": "2025-04-16T17:39:44Z" + } + }, + { + "id": "67fff8806c6de2004999f200", + "type": "sell", + "platinum": 89, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:44Z", + "updatedAt": "2025-04-16T18:35:44Z", + "itemId": "59a48b625cd9938cfede703c", + "user": { + "id": "62f5e20f138cc606f981e7ac", + "ingameName": "CleanerRiver", + "slug": "cleanerriver", + "avatar": "user/avatar/62f5e20f138cc606f981e7ac.png?4471870e088e71f492ccf6eaa5afc1fc", + "reputation": 10, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:04:36Z" + }, + "lastSeen": "2025-04-16T18:04:36Z" + } + }, + { + "id": "67fff8800067ad0025115338", + "type": "sell", + "platinum": 50, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:35:44Z", + "updatedAt": "2025-04-16T18:35:44Z", + "itemId": "626a197af40db600660a1d87", + "user": { + "id": "671a5b3194543239beecc792", + "ingameName": "Drg02", + "slug": "drg02", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:52Z" + }, + "lastSeen": "2025-04-16T18:38:52Z" + } + }, + { + "id": "67fff8806c6de200556c499f", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:44Z", + "updatedAt": "2025-04-16T18:35:44Z", + "itemId": "6242037766a58f0108c3d48a", + "user": { + "id": "67c4868840c8b300c124f786", + "ingameName": "Nevermindsde", + "slug": "nevermindsde", + "avatar": "user/avatar/67c4868840c8b300c124f786.png?de276235ed195ae0129461606ded454d", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:36Z" + }, + "lastSeen": "2025-04-16T18:35:36Z" + } + }, + { + "id": "67fff87fff9016000982fe0f", + "type": "sell", + "platinum": 13, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:43Z", + "updatedAt": "2025-04-16T18:35:43Z", + "itemId": "66c60c2766bbb2aedca695a6", + "user": { + "id": "6382280bda27f708786af932", + "ingameName": "SqQubanyPL", + "slug": "sqqubanypl", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:54:11Z" + }, + "lastSeen": "2025-04-16T17:54:11Z" + } + }, + { + "id": "67fff87f0067ad002b5d8c9c", + "type": "buy", + "platinum": 58, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:43Z", + "updatedAt": "2025-04-16T18:39:00Z", + "itemId": "5c182b739603780081b09a53", + "user": { + "id": "56f800ce0f313904081f8bd5", + "ingameName": "KillThisLove", + "slug": "killthislove", + "avatar": "user/avatar/56f800ce0f313904081f8bd5.png?168fefa733dd6abfcda3c35293fb0fca", + "reputation": 155, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:30Z" + }, + "lastSeen": "2025-04-16T18:28:30Z" + } + }, + { + "id": "67fff87efb9ffe000768dae3", + "type": "sell", + "platinum": 23, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:42Z", + "updatedAt": "2025-04-16T18:35:42Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "67c8b3a330f007002b55d788", + "ingameName": "Bronnson144", + "slug": "bronnson144", + "reputation": 16, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:36:40Z" + }, + "lastSeen": "2025-04-16T18:36:40Z" + } + }, + { + "id": "67fff87dff9016000ac0fb62", + "type": "buy", + "platinum": 8, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:41Z", + "updatedAt": "2025-04-16T18:35:41Z", + "itemId": "54a74454e779892d5e5155d6", + "user": { + "id": "67eff1aa8f1dcf0009d04013", + "ingameName": "shasige", + "slug": "shasige", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:04:18Z" + }, + "lastSeen": "2025-04-16T17:04:18Z" + } + }, + { + "id": "67fff87c8e487d00302d318d", + "type": "sell", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:40Z", + "updatedAt": "2025-04-16T18:35:40Z", + "itemId": "5ba9f2024567de01415f6388", + "user": { + "id": "5fcc19f6afb13a0049aac4fe", + "ingameName": "MOONETSU", + "slug": "moonetsu", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:09Z" + }, + "lastSeen": "2025-04-16T18:29:09Z" + } + }, + { + "id": "67fff8776c6de2004f9c9b17", + "type": "sell", + "platinum": 27, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:35:35Z", + "updatedAt": "2025-04-16T18:35:35Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff876353ea10008f1f0fa", + "type": "sell", + "platinum": 49, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:34Z", + "updatedAt": "2025-04-16T18:35:34Z", + "itemId": "6139101830dd5b004b7f9096", + "user": { + "id": "65dcbde07fa45c016f57a33f", + "ingameName": "Bleed024", + "slug": "bleed024", + "avatar": "user/avatar/65dcbde07fa45c016f57a33f.png?a4cadde5b22f7750b94d1889ddffad46", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:57:22Z" + }, + "lastSeen": "2025-04-16T17:57:22Z" + } + }, + { + "id": "67fff875fb9ffe000883f7b2", + "type": "sell", + "platinum": 14, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:33Z", + "updatedAt": "2025-04-16T18:35:33Z", + "itemId": "54a74454e779892d5e5155bb", + "user": { + "id": "5c4f3357af75ea038e3f993e", + "ingameName": "FlightDream", + "slug": "flightdream", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:18Z" + }, + "lastSeen": "2025-04-16T18:32:18Z" + } + }, + { + "id": "67fff874ff90160007d2d286", + "type": "sell", + "platinum": 4, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:32Z", + "updatedAt": "2025-04-16T18:35:32Z", + "itemId": "54a74455e779892d5e5156c0", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff873fb9ffe0009115fc6", + "type": "sell", + "platinum": 25, + "quantity": 21, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:31Z", + "updatedAt": "2025-04-16T18:35:31Z", + "itemId": "644b00247ec1900044b97733", + "user": { + "id": "65d7e9c1d995a50042454fcf", + "ingameName": "Ac3Connor", + "slug": "ac3connor", + "avatar": "user/avatar/65d7e9c1d995a50042454fcf.png?8aec9856ae8648addd81dd973680e197", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:11Z" + }, + "lastSeen": "2025-04-16T18:32:11Z" + } + }, + { + "id": "67fff8726c6de2004999f1fe", + "type": "sell", + "platinum": 6, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:30Z", + "updatedAt": "2025-04-16T18:35:30Z", + "itemId": "65a7fcc4ed5b0d2e3eb462d1", + "user": { + "id": "67e832009354c20007d0c08e", + "ingameName": "-Vorx-", + "slug": "vorx", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:56Z" + }, + "lastSeen": "2025-04-16T18:34:56Z" + } + }, + { + "id": "67fff8710067ad001faf863d", + "type": "buy", + "platinum": 25, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:35:29Z", + "updatedAt": "2025-04-16T18:38:04Z", + "itemId": "675c59297b18977f6e6453ea", + "user": { + "id": "679a313d7d979604449c6f41", + "ingameName": "YearningSanity", + "slug": "yearningsanity", + "avatar": "user/avatar/679a313d7d979604449c6f41.png?1a3d1481002cc8c7a913a77ef1693b2b", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:03Z" + }, + "lastSeen": "2025-04-16T18:37:03Z" + } + }, + { + "id": "67fff871fde1ef011f23ad58", + "type": "sell", + "platinum": 10, + "quantity": 3, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:29Z", + "updatedAt": "2025-04-16T18:35:29Z", + "itemId": "675c62297b18977f6e64541e", + "user": { + "id": "5e8236f75a828105d0eb1248", + "ingameName": "MrZer01", + "slug": "mrzer01", + "avatar": "user/avatar/5e8236f75a828105d0eb1248.png?35174e42ac4a02171d24b415c1761281", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:14Z" + }, + "lastSeen": "2025-04-16T18:37:14Z" + } + }, + { + "id": "67fff871f5ba0a001f5e3da0", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:29Z", + "updatedAt": "2025-04-16T18:35:29Z", + "itemId": "54a74454e779892d5e515642", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff870353ea10008f1f0f9", + "type": "buy", + "platinum": 40, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:28Z", + "updatedAt": "2025-04-16T18:35:28Z", + "itemId": "54c68686e7798913c1042b4b", + "user": { + "id": "661264d2082606010f245aea", + "ingameName": "LoreleyPrime", + "slug": "loreleyprime", + "avatar": "user/avatar/661264d2082606010f245aea.png?a8edceeb7f46c50ba56c4489df07fec3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:13:50Z" + }, + "lastSeen": "2025-04-16T17:13:50Z" + } + }, + { + "id": "67fff870353ea10008f1f0f8", + "type": "sell", + "platinum": 4, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:28Z", + "updatedAt": "2025-04-16T18:35:28Z", + "itemId": "5dff6e111456970316674a16", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff8700067ad001faf863c", + "type": "sell", + "platinum": 60, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:28Z", + "updatedAt": "2025-04-16T18:35:28Z", + "itemId": "56dac8d25cc639de0a45c52d", + "user": { + "id": "6342f7d00404c108ac510de6", + "ingameName": "potatoketchup", + "slug": "potatoketchup", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:47:17Z" + }, + "lastSeen": "2025-04-16T17:47:17Z" + } + }, + { + "id": "67fff86f8e487d004259bc96", + "type": "sell", + "platinum": 50, + "quantity": 1, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:35:27Z", + "updatedAt": "2025-04-16T18:35:27Z", + "itemId": "5d6ea6777ea27b05d929cbfc", + "user": { + "id": "62819774f26d880181cc3c81", + "ingameName": "LeoNextDoor", + "slug": "leonextdoor", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:37:36Z" + }, + "lastSeen": "2025-04-16T17:37:36Z" + } + }, + { + "id": "67fff86ffde1ef0119f83740", + "type": "sell", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:27Z", + "updatedAt": "2025-04-16T18:35:27Z", + "itemId": "56783f24cbfa8f0432dd8993", + "user": { + "id": "61a6c5ac07cc96086cbe5fe3", + "ingameName": "Lordrip1975", + "slug": "lordrip1975", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:21:31Z" + }, + "lastSeen": "2025-04-16T18:21:31Z" + } + }, + { + "id": "67fff86f0067ad0025115336", + "type": "sell", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:27Z", + "updatedAt": "2025-04-16T18:35:27Z", + "itemId": "55e797d2e7798924849dd9f0", + "user": { + "id": "65de467dd995a500cd805446", + "ingameName": "H0SSPrime", + "slug": "h0ssprime", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:24:51Z" + }, + "lastSeen": "2025-04-16T17:24:51Z" + } + }, + { + "id": "67fff86d353ea1000ab11bca", + "type": "sell", + "platinum": 40, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:25Z", + "updatedAt": "2025-04-16T18:35:25Z", + "itemId": "60ad4a1cf1904300d012c708", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff86c6c6de200556c499d", + "type": "sell", + "platinum": 13, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:24Z", + "updatedAt": "2025-04-16T18:35:24Z", + "itemId": "54e0c9eee7798903744178ae", + "user": { + "id": "67d7603663ca6a000aa0fc1a", + "ingameName": "Kartashow1991", + "slug": "kartashow1991", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:30Z" + }, + "lastSeen": "2025-04-16T18:35:30Z" + } + }, + { + "id": "67fff86b6c6de2005b961bb8", + "type": "sell", + "platinum": 55, + "quantity": 3, + "visible": true, + "createdAt": "2025-04-16T18:35:23Z", + "updatedAt": "2025-04-16T18:35:23Z", + "itemId": "5df8b0ab1456970087cd9b00", + "user": { + "id": "60410e938390ca018494d442", + "ingameName": "M.Petrosel", + "slug": "m-petrosel", + "avatar": "user/avatar/60410e938390ca018494d442.png?4329c6416ea028930a9acb2cea2cf536", + "reputation": 18, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:25:47Z" + }, + "lastSeen": "2025-04-16T18:25:47Z" + } + }, + { + "id": "67fff86a8e487d003c26aca2", + "type": "sell", + "platinum": 120, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:22Z", + "updatedAt": "2025-04-16T18:35:46Z", + "itemId": "573b805f0ec44a47787a6919", + "user": { + "id": "5a3e6eb1c2c9e91c177fd6b7", + "ingameName": "LIBAM", + "slug": "libam", + "avatar": "user/avatar/5a3e6eb1c2c9e91c177fd6b7.png?27e86b14ca5ca9805efa28ba0387459c", + "reputation": 7, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:20:03Z" + }, + "lastSeen": "2025-04-16T18:20:03Z" + } + }, + { + "id": "67fff8660067ad0025115335", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:18Z", + "updatedAt": "2025-04-16T18:35:18Z", + "itemId": "657af5ac21646e595134f5d0", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff8630067ad002b5d8c9b", + "type": "sell", + "platinum": 3, + "quantity": 15, + "visible": true, + "createdAt": "2025-04-16T18:35:15Z", + "updatedAt": "2025-04-16T18:35:15Z", + "itemId": "5f498a209426ed00443bd0a4", + "user": { + "id": "64a69b7bef049529681e2bb6", + "ingameName": "AdamantiumBoy", + "slug": "adamantiumboy", + "avatar": "user/avatar/64a69b7bef049529681e2bb6.png?fd4f1d6e5807724604f5232f93b0432a", + "reputation": 297, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:55:21Z" + }, + "lastSeen": "2025-04-16T17:55:21Z" + } + }, + { + "id": "67fff8620067ad0025115334", + "type": "sell", + "platinum": 50, + "quantity": 3, + "visible": true, + "createdAt": "2025-04-16T18:35:14Z", + "updatedAt": "2025-04-16T18:35:14Z", + "itemId": "5f0deab69f527b024d48f055", + "user": { + "id": "60410e938390ca018494d442", + "ingameName": "M.Petrosel", + "slug": "m-petrosel", + "avatar": "user/avatar/60410e938390ca018494d442.png?4329c6416ea028930a9acb2cea2cf536", + "reputation": 18, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:25:47Z" + }, + "lastSeen": "2025-04-16T18:25:47Z" + } + }, + { + "id": "67fff85f8e487d0036a693f0", + "type": "buy", + "platinum": 42, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:35:11Z", + "updatedAt": "2025-04-16T18:36:59Z", + "itemId": "667236b88ba7c81b70d02c90", + "user": { + "id": "679a313d7d979604449c6f41", + "ingameName": "YearningSanity", + "slug": "yearningsanity", + "avatar": "user/avatar/679a313d7d979604449c6f41.png?1a3d1481002cc8c7a913a77ef1693b2b", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:03Z" + }, + "lastSeen": "2025-04-16T18:37:03Z" + } + }, + { + "id": "67fff85e6c6de2004f9c9b15", + "type": "sell", + "platinum": 5, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:10Z", + "updatedAt": "2025-04-16T18:35:10Z", + "itemId": "5e02154e14569703bf43e54c", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff85bfde1ef011f23ad54", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:07Z", + "updatedAt": "2025-04-16T18:35:07Z", + "itemId": "667238bc8ba7c81b70d02cbc", + "user": { + "id": "669b7f1c5ca3221e2b913ee8", + "ingameName": "Kurokunlol", + "slug": "kurokunlol", + "reputation": 6, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:17Z" + }, + "lastSeen": "2025-04-16T18:35:17Z" + } + }, + { + "id": "67fff85b8e487d00302d318c", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:35:07Z", + "updatedAt": "2025-04-16T18:35:07Z", + "itemId": "60e70f7a479445008f27257d", + "user": { + "id": "67a68047566cdb00092005f1", + "ingameName": "WarMachROX", + "slug": "warmachrox", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:58Z" + }, + "lastSeen": "2025-04-16T18:31:58Z" + } + }, + { + "id": "67fff85a8e487d003c26aca1", + "type": "sell", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:06Z", + "updatedAt": "2025-04-16T18:35:06Z", + "itemId": "57dbdc525e334907aa8edb56", + "user": { + "id": "65de467dd995a500cd805446", + "ingameName": "H0SSPrime", + "slug": "h0ssprime", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:24:51Z" + }, + "lastSeen": "2025-04-16T17:24:51Z" + } + }, + { + "id": "67fff8570067ad0025115333", + "type": "buy", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:35:03Z", + "updatedAt": "2025-04-16T18:35:03Z", + "itemId": "60f3feb1b64404003f0bf5fe", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff856fde1ef0119f8373d", + "type": "sell", + "platinum": 6, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:02Z", + "updatedAt": "2025-04-16T18:35:02Z", + "itemId": "5dff6e111456970316674a16", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff8558e487d003c26aca0", + "type": "sell", + "platinum": 30, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:35:01Z", + "updatedAt": "2025-04-16T18:35:01Z", + "itemId": "62a2b833a554aa00a86de35c", + "user": { + "id": "66bf63c96b17410b7783ed2f", + "ingameName": "Ethereal-Enigma", + "slug": "ethereal-enigma", + "avatar": "user/avatar/66bf63c96b17410b7783ed2f.png?0a74778eab107b920c93a3bf46dc8afb", + "reputation": 42, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:41Z" + }, + "lastSeen": "2025-04-16T18:28:41Z" + } + }, + { + "id": "67fff8546c6de2005b961bb6", + "type": "sell", + "platinum": 4, + "quantity": 4, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:35:00Z", + "updatedAt": "2025-04-16T18:35:00Z", + "itemId": "54a74454e779892d5e5155d3", + "user": { + "id": "624df0cc2e4ccc00739b8b94", + "ingameName": "YorkBruh", + "slug": "yorkbruh", + "avatar": "user/avatar/624df0cc2e4ccc00739b8b94.png?bc6f9e803f35da19868d85d702b82472", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:15Z" + }, + "lastSeen": "2025-04-16T18:30:15Z" + } + }, + { + "id": "67fff8528e487d00302d318b", + "type": "sell", + "platinum": 120, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:34:58Z", + "updatedAt": "2025-04-16T18:39:06Z", + "itemId": "63229385dd457f0096113c3f", + "user": { + "id": "66c4dcbb6b17410c8bc743f1", + "ingameName": "Rich_Kruspe_1998", + "slug": "rich-kruspe-1998", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:28:17Z" + }, + "lastSeen": "2025-04-16T17:28:17Z" + } + }, + { + "id": "67fff850353ea100079294e2", + "type": "buy", + "platinum": 17, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:56Z", + "updatedAt": "2025-04-16T18:34:56Z", + "itemId": "641263e07d179f02100c6d49", + "user": { + "id": "56f800ce0f313904081f8bd5", + "ingameName": "KillThisLove", + "slug": "killthislove", + "avatar": "user/avatar/56f800ce0f313904081f8bd5.png?168fefa733dd6abfcda3c35293fb0fca", + "reputation": 155, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:30Z" + }, + "lastSeen": "2025-04-16T18:28:30Z" + } + }, + { + "id": "67fff84f0067ad002b5d8c9a", + "type": "sell", + "platinum": 19, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:55Z", + "updatedAt": "2025-04-16T18:34:55Z", + "itemId": "64c2aa1466456704eba6ba36", + "user": { + "id": "65dcbde07fa45c016f57a33f", + "ingameName": "Bleed024", + "slug": "bleed024", + "avatar": "user/avatar/65dcbde07fa45c016f57a33f.png?a4cadde5b22f7750b94d1889ddffad46", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:57:22Z" + }, + "lastSeen": "2025-04-16T17:57:22Z" + } + }, + { + "id": "67fff84d353ea10009cf7531", + "type": "sell", + "platinum": 60, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:53Z", + "updatedAt": "2025-04-16T18:34:53Z", + "itemId": "5c7849e22cc6ce090383e267", + "user": { + "id": "638a0d3572394300e47311c8", + "ingameName": "Drawen302", + "slug": "drawen302", + "avatar": "user/avatar/638a0d3572394300e47311c8.png?abfb6f45251376e419c38cab0d92b88b", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:32Z" + }, + "lastSeen": "2025-04-16T18:33:32Z" + } + }, + { + "id": "67fff84dfde1ef0125bc46f7", + "type": "sell", + "platinum": 90, + "quantity": 10, + "visible": true, + "createdAt": "2025-04-16T18:34:53Z", + "updatedAt": "2025-04-16T18:34:53Z", + "itemId": "5e839496267539077b0dd6d3", + "user": { + "id": "66723ca4da67ec0411b7178b", + "ingameName": "anxiety________", + "slug": "anxiety-0020", + "avatar": "user/avatar/66723ca4da67ec0411b7178b.png?247b4391bf1314a9a963ead3fd4afe87", + "reputation": 52, + "platform": "pc", + "crossplay": true, + "locale": "es", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:01:26Z" + }, + "lastSeen": "2025-04-16T18:01:26Z" + } + }, + { + "id": "67fff84bfde1ef0125bc46f6", + "type": "sell", + "platinum": 90, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:51Z", + "updatedAt": "2025-04-16T18:34:51Z", + "itemId": "54aaf530e77989707ada3a7e", + "user": { + "id": "61fb0f8cba586d0422a17f97", + "ingameName": "-CaptainYaya-", + "slug": "captainyaya", + "reputation": 20, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:36Z" + }, + "lastSeen": "2025-04-16T18:34:36Z" + } + }, + { + "id": "67fff84b8e487d00302d3188", + "type": "sell", + "platinum": 5, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:51Z", + "updatedAt": "2025-04-16T18:34:51Z", + "itemId": "61bb64fc3132ff00482b5fbe", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff8480067ad001faf863a", + "type": "sell", + "platinum": 55, + "quantity": 4, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:48Z", + "updatedAt": "2025-04-16T18:34:48Z", + "itemId": "67db60889cec3e52e62523f5", + "user": { + "id": "5ec92dc909b33e06781f73e2", + "ingameName": "mmmmaaarrc", + "slug": "mmmmaaarrc", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "de", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:22Z" + }, + "lastSeen": "2025-04-16T18:35:22Z" + } + }, + { + "id": "67fff848ff9016000982fe0d", + "type": "buy", + "platinum": 235, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:48Z", + "updatedAt": "2025-04-16T18:38:21Z", + "itemId": "56463c24b66f8358acce4451", + "user": { + "id": "679a313d7d979604449c6f41", + "ingameName": "YearningSanity", + "slug": "yearningsanity", + "avatar": "user/avatar/679a313d7d979604449c6f41.png?1a3d1481002cc8c7a913a77ef1693b2b", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:03Z" + }, + "lastSeen": "2025-04-16T18:37:03Z" + } + }, + { + "id": "67fff847fde1ef0125bc46f5", + "type": "sell", + "platinum": 120, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:34:47Z", + "updatedAt": "2025-04-16T18:34:47Z", + "itemId": "54c6855ee779891362942572", + "user": { + "id": "672f2fa777077600c613b4aa", + "ingameName": "LSZ.G", + "slug": "lsz-g", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:25:58Z" + }, + "lastSeen": "2025-04-16T18:25:58Z" + } + }, + { + "id": "67fff8476c6de2005b961bb4", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:47Z", + "updatedAt": "2025-04-16T18:34:47Z", + "itemId": "64c2aa1566456704eba6ba3d", + "user": { + "id": "669b7f1c5ca3221e2b913ee8", + "ingameName": "Kurokunlol", + "slug": "kurokunlol", + "reputation": 6, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:17Z" + }, + "lastSeen": "2025-04-16T18:35:17Z" + } + }, + { + "id": "67fff8436c6de2004f9c9b11", + "type": "sell", + "platinum": 28, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:43Z", + "updatedAt": "2025-04-16T18:34:43Z", + "itemId": "626a197af40db600660a1d83", + "user": { + "id": "66bf63c96b17410b7783ed2f", + "ingameName": "Ethereal-Enigma", + "slug": "ethereal-enigma", + "avatar": "user/avatar/66bf63c96b17410b7783ed2f.png?0a74778eab107b920c93a3bf46dc8afb", + "reputation": 42, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:41Z" + }, + "lastSeen": "2025-04-16T18:28:41Z" + } + }, + { + "id": "67fff8438e487d004259bc90", + "type": "sell", + "platinum": 50, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:43Z", + "updatedAt": "2025-04-16T18:34:43Z", + "itemId": "5fde10c66db57b0185b39086", + "user": { + "id": "67eb2c858f1dcf0007966c9a", + "ingameName": "Florin23", + "slug": "florin23", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:54Z" + }, + "lastSeen": "2025-04-16T18:34:54Z" + } + }, + { + "id": "67fff842ff9016000ac0fb5f", + "type": "sell", + "platinum": 10, + "quantity": 9, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:34:42Z", + "updatedAt": "2025-04-16T18:34:42Z", + "itemId": "584160cd43e4267b5b699191", + "user": { + "id": "6779105c4201100008ce5445", + "ingameName": "starryerPrime", + "slug": "starryerprime", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:55Z" + }, + "lastSeen": "2025-04-16T18:32:55Z" + } + }, + { + "id": "67fff8428e487d003c26ac9f", + "type": "sell", + "platinum": 35, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:42Z", + "updatedAt": "2025-04-16T18:34:42Z", + "itemId": "5ca28670fc2db2035eae05a0", + "user": { + "id": "58f8b8d8d3ffb626dacf554a", + "ingameName": "Gamegame9672", + "slug": "gamegame9672", + "avatar": "user/avatar/58f8b8d8d3ffb626dacf554a.png?d88f0d1fa6cb95f4e59f02ed2bd93416", + "reputation": 41, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:26:00Z" + }, + "lastSeen": "2025-04-16T18:26:00Z" + } + }, + { + "id": "67fff83ef5ba0a002bc30d68", + "type": "sell", + "platinum": 9, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:38Z", + "updatedAt": "2025-04-16T18:34:38Z", + "itemId": "67db60849cec3e52e62523f0", + "user": { + "id": "5c4f3357af75ea038e3f993e", + "ingameName": "FlightDream", + "slug": "flightdream", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:18Z" + }, + "lastSeen": "2025-04-16T18:32:18Z" + } + }, + { + "id": "67fff83dfb9ffe000768dadf", + "type": "sell", + "platinum": 30, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:37Z", + "updatedAt": "2025-04-16T18:34:37Z", + "itemId": "54a74454e779892d5e51559e", + "user": { + "id": "67e60b9cfde1ef0008db1931", + "ingameName": "Lemiellll", + "slug": "lemiellll", + "reputation": 14, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:15:43Z" + }, + "lastSeen": "2025-04-16T18:15:43Z" + } + }, + { + "id": "67fff83dfde1ef0119f8373b", + "type": "sell", + "platinum": 9, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:37Z", + "updatedAt": "2025-04-16T18:34:37Z", + "itemId": "675c61c07b18977f6e645410", + "user": { + "id": "5ad100a249ef0014584ceeb9", + "ingameName": "KawaiiAsashin", + "slug": "kawaiiasashin", + "reputation": 25, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:00Z" + }, + "lastSeen": "2025-04-16T18:34:00Z" + } + }, + { + "id": "67fff83dfde1ef011f23ad53", + "type": "sell", + "platinum": 9, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:37Z", + "updatedAt": "2025-04-16T18:34:37Z", + "itemId": "58446f192c2ada003b4d4ffc", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff83aff90160008d97eab", + "type": "sell", + "platinum": 5, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:34Z", + "updatedAt": "2025-04-16T18:34:34Z", + "itemId": "5f498a1e9426ed00443bd092", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff8366c6de2004999f1fb", + "type": "sell", + "platinum": 50, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:30Z", + "updatedAt": "2025-04-16T18:34:38Z", + "itemId": "657f2efd8820fb8f3c5f4661", + "user": { + "id": "67400eefa5039f0009a5b440", + "ingameName": "didiela666", + "slug": "didiela666", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "es", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:25:11Z" + }, + "lastSeen": "2025-04-16T18:25:11Z" + } + }, + { + "id": "67fff834353ea100079294e0", + "type": "sell", + "platinum": 50, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:28Z", + "updatedAt": "2025-04-16T18:34:28Z", + "itemId": "626a197af40db600660a1d87", + "user": { + "id": "5dcf62beefd5a1011abf07a5", + "ingameName": "Keni03", + "slug": "keni03", + "avatar": "user/avatar/5dcf62beefd5a1011abf07a5.png?768b9e2fefcd3066cdf0e8b6e83e8bbc", + "reputation": 320, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:57Z" + }, + "lastSeen": "2025-04-16T18:31:57Z" + } + }, + { + "id": "67fff833fde1ef0113605d0b", + "type": "buy", + "platinum": 27, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:27Z", + "updatedAt": "2025-04-16T18:34:27Z", + "itemId": "56153e78b66f83706f01716f", + "user": { + "id": "5de7d526aaeaa3032b443c95", + "ingameName": "Royssen", + "slug": "royssen", + "avatar": "user/avatar/5de7d526aaeaa3032b443c95.png?0ce2eddb5e4c3543a8139bd45cfd085c", + "reputation": 52, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff833fde1ef0113605d0a", + "type": "sell", + "platinum": 239, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:27Z", + "updatedAt": "2025-04-16T18:34:27Z", + "itemId": "63ee00fd10125411da49e6ea", + "user": { + "id": "5a59dfc8c6d0fe04ab3987bd", + "ingameName": "itzkurt102", + "slug": "itzkurt102", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:37:14Z" + }, + "lastSeen": "2025-04-16T17:37:14Z" + } + }, + { + "id": "67fff832fde1ef0113605d09", + "type": "sell", + "platinum": 7, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:26Z", + "updatedAt": "2025-04-16T18:34:26Z", + "itemId": "54a74455e779892d5e5156ea", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff830353ea10009cf752e", + "type": "sell", + "platinum": 13, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:24Z", + "updatedAt": "2025-04-16T18:34:24Z", + "itemId": "67acd945125398d92c8bb4ee", + "user": { + "id": "67881b67c15239003ca71e35", + "ingameName": "B0kas0", + "slug": "b0kas0", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:41Z" + }, + "lastSeen": "2025-04-16T18:35:41Z" + } + }, + { + "id": "67fff82f8e487d004259bc8d", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:23Z", + "updatedAt": "2025-04-16T18:34:23Z", + "itemId": "67db60849cec3e52e62523f1", + "user": { + "id": "5c4f3357af75ea038e3f993e", + "ingameName": "FlightDream", + "slug": "flightdream", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:18Z" + }, + "lastSeen": "2025-04-16T18:32:18Z" + } + }, + { + "id": "67fff82f6c6de200556c4998", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:23Z", + "updatedAt": "2025-04-16T18:34:23Z", + "itemId": "5fb84767c34da3004797d543", + "user": { + "id": "67b0cbb9093d4c08dd1006cc", + "ingameName": "FEAR6236", + "slug": "fear6236", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "pt", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:45Z" + }, + "lastSeen": "2025-04-16T18:33:45Z" + } + }, + { + "id": "67fff82ffde1ef0119f8373a", + "type": "sell", + "platinum": 20, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:34:23Z", + "updatedAt": "2025-04-16T18:34:23Z", + "itemId": "5ba9f2044567de01415f638e", + "user": { + "id": "67bcb3c1593e9a000a4f14d0", + "ingameName": "dcmtuoity____", + "slug": "dcmtuoity-5752", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:16Z" + }, + "lastSeen": "2025-04-16T18:34:16Z" + } + }, + { + "id": "67fff82e6c6de2004999f1f9", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:22Z", + "updatedAt": "2025-04-16T18:34:22Z", + "itemId": "55c15473e779895de4118590", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff82c8e487d004259bc8c", + "type": "sell", + "platinum": 5, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:20Z", + "updatedAt": "2025-04-16T18:34:20Z", + "itemId": "657af5aa21646e595134f5b7", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff82aff90160007d2d284", + "type": "sell", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:18Z", + "updatedAt": "2025-04-16T18:34:18Z", + "itemId": "67acd944125398d92c8bb4ed", + "user": { + "id": "67881b67c15239003ca71e35", + "ingameName": "B0kas0", + "slug": "b0kas0", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:41Z" + }, + "lastSeen": "2025-04-16T18:35:41Z" + } + }, + { + "id": "67fff82af5ba0a002bc30d66", + "type": "sell", + "platinum": 10, + "quantity": 2, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:18Z", + "updatedAt": "2025-04-16T18:34:18Z", + "itemId": "5b91784d0566c80216658cea", + "user": { + "id": "643d966eb0656407c920f689", + "ingameName": "SEGADELLANOTTE", + "slug": "segadellanotte", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:21Z" + }, + "lastSeen": "2025-04-16T18:35:21Z" + } + }, + { + "id": "67fff8276c6de2005b961bb0", + "type": "sell", + "platinum": 2, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:15Z", + "updatedAt": "2025-04-16T18:34:15Z", + "itemId": "54a73e65e779893a797fff42", + "user": { + "id": "6469339d3545810ee37625c5", + "ingameName": "G4L4CTICKNIGHT", + "slug": "g4l4cticknight", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:38Z" + }, + "lastSeen": "2025-04-16T18:33:38Z" + } + }, + { + "id": "67fff8256c6de2004f9c9b10", + "type": "sell", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:13Z", + "updatedAt": "2025-04-16T18:34:13Z", + "itemId": "559daab7e779897b3d86cb8f", + "user": { + "id": "65d7d3420d1bf7007f03bf54", + "ingameName": "Wretched138", + "slug": "wretched138", + "avatar": "user/avatar/65d7d3420d1bf7007f03bf54.png?473c79fb48e12e8bf9f9275dd9583eca", + "reputation": 158, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:51Z" + }, + "lastSeen": "2025-04-16T18:34:51Z" + } + }, + { + "id": "67fff824ff9016000ac0fb5c", + "type": "sell", + "platinum": 9, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:12Z", + "updatedAt": "2025-04-16T18:34:12Z", + "itemId": "54a74455e779892d5e5156b0", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff8236c6de2005b961bae", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:11Z", + "updatedAt": "2025-04-16T18:34:11Z", + "itemId": "55c1548fe779895df57fd05d", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff81f353ea10008f1f0f5", + "type": "sell", + "platinum": 40, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:07Z", + "updatedAt": "2025-04-16T18:34:07Z", + "itemId": "573b802f0ec44a47787a6914", + "user": { + "id": "5c8e0fcbcaeeae0abb1a93a7", + "ingameName": "QWQ54250", + "slug": "qwq54250", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:16:03Z" + }, + "lastSeen": "2025-04-16T18:16:03Z" + } + }, + { + "id": "67fff81f353ea1000ab11bc5", + "type": "sell", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:34:07Z", + "updatedAt": "2025-04-16T18:34:07Z", + "itemId": "60e5b8fc4794450053e9993e", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff81cff90160007d2d283", + "type": "sell", + "platinum": 23, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:04Z", + "updatedAt": "2025-04-16T18:34:04Z", + "itemId": "63229386dd457f0096113c43", + "user": { + "id": "6793f04f1df1d40009b6e9d4", + "ingameName": "TemvipWF", + "slug": "temvipwf", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:01:27Z" + }, + "lastSeen": "2025-04-16T18:01:27Z" + } + }, + { + "id": "67fff81c0067ad002b5d8c98", + "type": "sell", + "platinum": 35, + "quantity": 4, + "visible": true, + "createdAt": "2025-04-16T18:34:04Z", + "updatedAt": "2025-04-16T18:34:04Z", + "itemId": "641263e07d179f02100c6d43", + "user": { + "id": "60410e938390ca018494d442", + "ingameName": "M.Petrosel", + "slug": "m-petrosel", + "avatar": "user/avatar/60410e938390ca018494d442.png?4329c6416ea028930a9acb2cea2cf536", + "reputation": 18, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:25:47Z" + }, + "lastSeen": "2025-04-16T18:25:47Z" + } + }, + { + "id": "67fff81aff90160007d2d282", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:34:02Z", + "updatedAt": "2025-04-16T18:34:02Z", + "itemId": "5be4b0a53ffcc703294e76b2", + "user": { + "id": "5ec92dc909b33e06781f73e2", + "ingameName": "mmmmaaarrc", + "slug": "mmmmaaarrc", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "de", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:22Z" + }, + "lastSeen": "2025-04-16T18:35:22Z" + } + }, + { + "id": "67fff81afb9ffe000accfdb2", + "type": "sell", + "platinum": 50, + "quantity": 1, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:34:02Z", + "updatedAt": "2025-04-16T18:34:02Z", + "itemId": "5d6ea6777ea27b05d929cbfc", + "user": { + "id": "6779105c4201100008ce5445", + "ingameName": "starryerPrime", + "slug": "starryerprime", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:55Z" + }, + "lastSeen": "2025-04-16T18:32:55Z" + } + }, + { + "id": "67fff8196c6de2005b961bac", + "type": "buy", + "platinum": 235, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:01Z", + "updatedAt": "2025-04-16T18:37:26Z", + "itemId": "56463c24b66f8358acce4451", + "user": { + "id": "60e1a8d7217641004d83d4b9", + "ingameName": "Esdeaths_Pet", + "slug": "esdeaths-pet", + "avatar": "user/avatar/60e1a8d7217641004d83d4b9.png?69a1dd956f0b11b9afa8cb33d5b22154", + "reputation": 9, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:33Z" + }, + "lastSeen": "2025-04-16T18:11:33Z" + } + }, + { + "id": "67fff818fb9ffe000accfdb1", + "type": "buy", + "platinum": 125, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:34:00Z", + "updatedAt": "2025-04-16T18:37:31Z", + "itemId": "566751815dcbc186f0536bd3", + "user": { + "id": "679a313d7d979604449c6f41", + "ingameName": "YearningSanity", + "slug": "yearningsanity", + "avatar": "user/avatar/679a313d7d979604449c6f41.png?1a3d1481002cc8c7a913a77ef1693b2b", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:03Z" + }, + "lastSeen": "2025-04-16T18:37:03Z" + } + }, + { + "id": "67fff816fde1ef011f23ad50", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:58Z", + "updatedAt": "2025-04-16T18:33:58Z", + "itemId": "54a74454e779892d5e515623", + "user": { + "id": "66b8c86db7f04303e525e49c", + "ingameName": "Kittyswrath", + "slug": "kittyswrath", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:39:06Z" + }, + "lastSeen": "2025-04-16T18:39:06Z" + } + }, + { + "id": "67fff8168e487d004259bc8a", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:58Z", + "updatedAt": "2025-04-16T18:33:58Z", + "itemId": "5c196fae96037800ddadac16", + "user": { + "id": "65da8201f06c1300085644a8", + "ingameName": "ISphexe", + "slug": "isphexe", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:43Z" + }, + "lastSeen": "2025-04-16T18:30:43Z" + } + }, + { + "id": "67fff8150067ad002511532f", + "type": "sell", + "platinum": 40, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:57Z", + "updatedAt": "2025-04-16T18:33:57Z", + "itemId": "641263e07d179f02100c6d43", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff8146c6de2005b961bab", + "type": "sell", + "platinum": 74, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:56Z", + "updatedAt": "2025-04-16T18:33:56Z", + "itemId": "67acd912125398d92c8bb4e5", + "user": { + "id": "65d6bbfb5702720020cdfcdb", + "ingameName": "deividmaicrai", + "slug": "deividmaicrai", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:04Z" + }, + "lastSeen": "2025-04-16T18:32:04Z" + } + }, + { + "id": "67fff814353ea10008f1f0f4", + "type": "sell", + "platinum": 21, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:56Z", + "updatedAt": "2025-04-16T18:33:56Z", + "itemId": "5a311f83c2c9e90dfff475d4", + "user": { + "id": "67f516c53b988a0009b47206", + "ingameName": "05_jigul", + "slug": "05_jigul", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:45Z" + }, + "lastSeen": "2025-04-16T18:29:45Z" + } + }, + { + "id": "67fff813fde1ef0113605d08", + "type": "buy", + "platinum": 235, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:55Z", + "updatedAt": "2025-04-16T18:38:27Z", + "itemId": "56463c24b66f8358acce4451", + "user": { + "id": "585fad660f31395972790b48", + "ingameName": "Mortanoid", + "slug": "mortanoid", + "avatar": "user/avatar/585fad660f31395972790b48.png?388e008758b033d1ec87d301778af432", + "reputation": 393, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:24:10Z" + }, + "lastSeen": "2025-04-16T18:24:10Z" + } + }, + { + "id": "67fff812f5ba0a003175407c", + "type": "sell", + "platinum": 6, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:54Z", + "updatedAt": "2025-04-16T18:33:54Z", + "itemId": "5d8765de7ea27b08950c13c1", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff810fb9ffe0009115fbe", + "type": "sell", + "platinum": 9, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:33:52Z", + "updatedAt": "2025-04-16T18:33:52Z", + "itemId": "62d3494175156700ce450e00", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + }, + { + "id": "67fff80e6c6de2004f9c9b0f", + "type": "sell", + "platinum": 100, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:50Z", + "updatedAt": "2025-04-16T18:33:50Z", + "itemId": "5ab1570db2b6a8044d5137c5", + "user": { + "id": "66723ca4da67ec0411b7178b", + "ingameName": "anxiety________", + "slug": "anxiety-0020", + "avatar": "user/avatar/66723ca4da67ec0411b7178b.png?247b4391bf1314a9a963ead3fd4afe87", + "reputation": 52, + "platform": "pc", + "crossplay": true, + "locale": "es", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:01:26Z" + }, + "lastSeen": "2025-04-16T18:01:26Z" + } + }, + { + "id": "67fff80c353ea10009cf752c", + "type": "buy", + "platinum": 235, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:48Z", + "updatedAt": "2025-04-16T18:38:04Z", + "itemId": "56463c24b66f8358acce4451", + "user": { + "id": "67a0e4e93ba9d80565d92762", + "ingameName": "TheSparten", + "slug": "thesparten-4631", + "reputation": 12, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:36Z" + }, + "lastSeen": "2025-04-16T18:23:36Z" + } + }, + { + "id": "67fff80bfde1ef0125bc46f2", + "type": "sell", + "platinum": 14, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:47Z", + "updatedAt": "2025-04-16T18:33:47Z", + "itemId": "633e2e6af570d10793afb816", + "user": { + "id": "60a79dee54b014008753a3c7", + "ingameName": "_JetWorld_", + "slug": "jetworld", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff80aff9016000982fe08", + "type": "sell", + "platinum": 11, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:33:46Z", + "updatedAt": "2025-04-16T18:33:46Z", + "itemId": "633e2e6bf570d10793afb81b", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + }, + { + "id": "67fff8098e487d00302d3180", + "type": "sell", + "platinum": 40, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:45Z", + "updatedAt": "2025-04-16T18:33:45Z", + "itemId": "66325ca7e85cac3856c86cbc", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff8088e487d003c26ac9c", + "type": "sell", + "platinum": 50, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:44Z", + "updatedAt": "2025-04-16T18:33:44Z", + "itemId": "67acd8fa125398d92c8bb4df", + "user": { + "id": "60db11c717443a0365b19462", + "ingameName": "Hitch_Orange", + "slug": "hitch-orange", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:40Z" + }, + "lastSeen": "2025-04-16T18:33:40Z" + } + }, + { + "id": "67fff806fb9ffe000883f7af", + "type": "buy", + "platinum": 30, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:42Z", + "updatedAt": "2025-04-16T18:33:42Z", + "itemId": "63886517e7c988007b5bd512", + "user": { + "id": "642dac1a527f7802510ab585", + "ingameName": "MRNeosuke", + "slug": "mrneosuke", + "avatar": "user/avatar/642dac1a527f7802510ab585.png?9f43d46b5ecb954b5e85acec10b059d3", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:04:20Z" + }, + "lastSeen": "2025-04-16T18:04:20Z" + } + }, + { + "id": "67fff8058e487d00302d317f", + "type": "sell", + "platinum": 30, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:41Z", + "updatedAt": "2025-04-16T18:33:54Z", + "itemId": "56a7b2581133f656cb085d87", + "user": { + "id": "679a313d7d979604449c6f41", + "ingameName": "YearningSanity", + "slug": "yearningsanity", + "avatar": "user/avatar/679a313d7d979604449c6f41.png?1a3d1481002cc8c7a913a77ef1693b2b", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:03Z" + }, + "lastSeen": "2025-04-16T18:37:03Z" + } + }, + { + "id": "67fff8056c6de2004999f1f6", + "type": "sell", + "platinum": 30, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:41Z", + "updatedAt": "2025-04-16T18:33:41Z", + "itemId": "675c59347b18977f6e6453ec", + "user": { + "id": "66bf63c96b17410b7783ed2f", + "ingameName": "Ethereal-Enigma", + "slug": "ethereal-enigma", + "avatar": "user/avatar/66bf63c96b17410b7783ed2f.png?0a74778eab107b920c93a3bf46dc8afb", + "reputation": 42, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:41Z" + }, + "lastSeen": "2025-04-16T18:28:41Z" + } + }, + { + "id": "67fff8038e487d003c26ac9a", + "type": "sell", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:39Z", + "updatedAt": "2025-04-16T18:33:39Z", + "itemId": "641263e07d179f02100c6d49", + "user": { + "id": "57c46bd00f3139740a2cfd0a", + "ingameName": "HeroicWaffle", + "slug": "heroicwaffle", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:08:52Z" + }, + "lastSeen": "2025-04-16T18:08:52Z" + } + }, + { + "id": "67fff801fde1ef0113605d07", + "type": "sell", + "platinum": 14, + "quantity": 3, + "visible": true, + "createdAt": "2025-04-16T18:33:37Z", + "updatedAt": "2025-04-16T18:33:37Z", + "itemId": "653060f332327ba8746da748", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + }, + { + "id": "67fff800ff9016000982fe07", + "type": "sell", + "platinum": 15, + "quantity": 5, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:33:36Z", + "updatedAt": "2025-04-16T18:33:36Z", + "itemId": "5cc4816afc2db2099c1804cd", + "user": { + "id": "59b3db820f313948a4afb416", + "ingameName": "FlyingCultLlama", + "slug": "flyingcultllama", + "avatar": "user/avatar/59b3db820f313948a4afb416.png?b68a99b2b8ba38e9280908f420ce25cf", + "reputation": 22, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:26Z" + }, + "lastSeen": "2025-04-16T18:30:26Z" + } + }, + { + "id": "67fff7fffde1ef0125bc46f1", + "type": "sell", + "platinum": 5, + "quantity": 3, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:33:35Z", + "updatedAt": "2025-04-16T18:33:35Z", + "itemId": "595567c18e34b5ed3cb3d9b9", + "user": { + "id": "5dcf62beefd5a1011abf07a5", + "ingameName": "Keni03", + "slug": "keni03", + "avatar": "user/avatar/5dcf62beefd5a1011abf07a5.png?768b9e2fefcd3066cdf0e8b6e83e8bbc", + "reputation": 320, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:57Z" + }, + "lastSeen": "2025-04-16T18:31:57Z" + } + }, + { + "id": "67fff7fdfb9ffe0009115fbc", + "type": "buy", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:33Z", + "updatedAt": "2025-04-16T18:33:33Z", + "itemId": "5a9ed835b2b6a80133127c2c", + "user": { + "id": "668fa9c9bc707e06c21ba191", + "ingameName": "TheEastKnght", + "slug": "theeastknght", + "avatar": "user/avatar/668fa9c9bc707e06c21ba191.png?4d59ea2fa6e5ff52c60774f03372b001", + "reputation": 15, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:03Z" + }, + "lastSeen": "2025-04-16T18:32:03Z" + } + }, + { + "id": "67fff7fdf5ba0a003175407a", + "type": "buy", + "platinum": 85, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:33Z", + "updatedAt": "2025-04-16T18:38:24Z", + "itemId": "551085bce7798972a9b2fc6e", + "user": { + "id": "56f800ce0f313904081f8bd5", + "ingameName": "KillThisLove", + "slug": "killthislove", + "avatar": "user/avatar/56f800ce0f313904081f8bd5.png?168fefa733dd6abfcda3c35293fb0fca", + "reputation": 155, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:30Z" + }, + "lastSeen": "2025-04-16T18:28:30Z" + } + }, + { + "id": "67fff7fc0067ad002511532c", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:32Z", + "updatedAt": "2025-04-16T18:33:32Z", + "itemId": "5783908cd9b6753790c89e7f", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff7fc8e487d003c26ac99", + "type": "buy", + "platinum": 235, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:32Z", + "updatedAt": "2025-04-16T18:38:08Z", + "itemId": "56463c24b66f8358acce4451", + "user": { + "id": "66dcd48460bf510007980c57", + "ingameName": "1dkwh014m", + "slug": "1dkwh014m", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:09Z" + }, + "lastSeen": "2025-04-16T18:28:09Z" + } + }, + { + "id": "67fff7fcf5ba0a002bc30d65", + "type": "sell", + "platinum": 18, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:32Z", + "updatedAt": "2025-04-16T18:33:37Z", + "itemId": "54ca4330e779891a286a5428", + "user": { + "id": "67be03c66d69b80007a4f396", + "ingameName": "Whi73Ang3l", + "slug": "whi73ang3l", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:14:33Z" + }, + "lastSeen": "2025-04-16T18:14:33Z" + } + }, + { + "id": "67fff7fbfde1ef0119f83735", + "type": "sell", + "platinum": 7, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:31Z", + "updatedAt": "2025-04-16T18:33:31Z", + "itemId": "54a73e65e779893a797fff5e", + "user": { + "id": "67aceb11603c7900ebd9d299", + "ingameName": "-Merw-", + "slug": "merw", + "reputation": 6, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:19Z" + }, + "lastSeen": "2025-04-16T18:38:19Z" + } + }, + { + "id": "67fff7f9f5ba0a001f5e3d95", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:29Z", + "updatedAt": "2025-04-16T18:33:29Z", + "itemId": "60e70f79479445008f272572", + "user": { + "id": "67a68047566cdb00092005f1", + "ingameName": "WarMachROX", + "slug": "warmachrox", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:58Z" + }, + "lastSeen": "2025-04-16T18:31:58Z" + } + }, + { + "id": "67fff7f9fb9ffe0009115fbb", + "type": "sell", + "platinum": 5, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:29Z", + "updatedAt": "2025-04-16T18:33:29Z", + "itemId": "633e2e6bf570d10793afb820", + "user": { + "id": "65da8201f06c1300085644a8", + "ingameName": "ISphexe", + "slug": "isphexe", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:43Z" + }, + "lastSeen": "2025-04-16T18:30:43Z" + } + }, + { + "id": "67fff7f8f5ba0a001f5e3d94", + "type": "sell", + "platinum": 48, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:28Z", + "updatedAt": "2025-04-16T18:33:28Z", + "itemId": "54a74454e779892d5e515616", + "user": { + "id": "5c4f3357af75ea038e3f993e", + "ingameName": "FlightDream", + "slug": "flightdream", + "reputation": 13, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:18Z" + }, + "lastSeen": "2025-04-16T18:32:18Z" + } + }, + { + "id": "67fff7f7f5ba0a00256a39a2", + "type": "sell", + "platinum": 15, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:33:27Z", + "updatedAt": "2025-04-16T18:33:27Z", + "itemId": "54a73e65e779893a797fff44", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + }, + { + "id": "67fff7f56c6de200556c4995", + "type": "sell", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:25Z", + "updatedAt": "2025-04-16T18:33:25Z", + "itemId": "5f4ed3fad5c36d0086f55b0b", + "user": { + "id": "67d7ec4960677b0009bf33f9", + "ingameName": "SpikeSC_", + "slug": "spikesc-4722", + "reputation": 3, + "platform": "pc", + "crossplay": false, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:41Z" + }, + "lastSeen": "2025-04-16T18:35:41Z" + } + }, + { + "id": "67fff7f58e487d0036a693ec", + "type": "sell", + "platinum": 5, + "quantity": 6, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:33:25Z", + "updatedAt": "2025-04-16T18:33:25Z", + "itemId": "58701655937cde2c9d378ac2", + "user": { + "id": "5dcf62beefd5a1011abf07a5", + "ingameName": "Keni03", + "slug": "keni03", + "avatar": "user/avatar/5dcf62beefd5a1011abf07a5.png?768b9e2fefcd3066cdf0e8b6e83e8bbc", + "reputation": 320, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:57Z" + }, + "lastSeen": "2025-04-16T18:31:57Z" + } + }, + { + "id": "67fff7f5f5ba0a002bc30d64", + "type": "buy", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:25Z", + "updatedAt": "2025-04-16T18:38:26Z", + "itemId": "57dbdc525e334907aa8edb58", + "user": { + "id": "64a9f06920b9c5238f5e1c2e", + "ingameName": "RukoLev", + "slug": "rukolev", + "avatar": "user/avatar/64a9f06920b9c5238f5e1c2e.png?aa5e6147f0b2fd3b628fd4171c2526cd", + "reputation": 18, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:05Z" + }, + "lastSeen": "2025-04-16T18:29:05Z" + } + }, + { + "id": "67fff7f3fde1ef011f23ad4f", + "type": "sell", + "platinum": 25, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:33:23Z", + "updatedAt": "2025-04-16T18:33:23Z", + "itemId": "54a73e65e779893a797fff74", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + }, + { + "id": "67fff7f00067ad0031fd8ef6", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:20Z", + "updatedAt": "2025-04-16T18:33:20Z", + "itemId": "54a74454e779892d5e515643", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff7f0353ea10008f1f0f2", + "type": "buy", + "platinum": 45, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:20Z", + "updatedAt": "2025-04-16T18:33:20Z", + "itemId": "667237598ba7c81b70d02c96", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff7f0f5ba0a0031754079", + "type": "buy", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:20Z", + "updatedAt": "2025-04-16T18:33:20Z", + "itemId": "5ca28670fc2db2035eae05a0", + "user": { + "id": "67dd07ea8afd120025529896", + "ingameName": "heynerpk", + "slug": "heynerpk", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:19:34Z" + }, + "lastSeen": "2025-04-16T18:19:34Z" + } + }, + { + "id": "67fff7ed0067ad0031fd8ef5", + "type": "sell", + "platinum": 25, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:17Z", + "updatedAt": "2025-04-16T18:33:17Z", + "itemId": "5f4ed3f5d5c36d0086f55b03", + "user": { + "id": "5ec92dc909b33e06781f73e2", + "ingameName": "mmmmaaarrc", + "slug": "mmmmaaarrc", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "de", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:22Z" + }, + "lastSeen": "2025-04-16T18:35:22Z" + } + }, + { + "id": "67fff7eb353ea1000ab11bc4", + "type": "sell", + "platinum": 43, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:15Z", + "updatedAt": "2025-04-16T18:33:15Z", + "itemId": "673516a9db3ac2cfade14a70", + "user": { + "id": "67ca3e4630f0070091ad8670", + "ingameName": "Alex5650", + "slug": "alex5650", + "reputation": 6, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:41Z" + }, + "lastSeen": "2025-04-16T18:33:41Z" + } + }, + { + "id": "67fff7e96c6de2005b961ba7", + "type": "sell", + "platinum": 10, + "quantity": 8, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:33:13Z", + "updatedAt": "2025-04-16T18:33:13Z", + "itemId": "584160cd43e4267b5b699191", + "user": { + "id": "5dcf62beefd5a1011abf07a5", + "ingameName": "Keni03", + "slug": "keni03", + "avatar": "user/avatar/5dcf62beefd5a1011abf07a5.png?768b9e2fefcd3066cdf0e8b6e83e8bbc", + "reputation": 320, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:57Z" + }, + "lastSeen": "2025-04-16T18:31:57Z" + } + }, + { + "id": "67fff7e9353ea10009cf7529", + "type": "sell", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:13Z", + "updatedAt": "2025-04-16T18:33:13Z", + "itemId": "5ab1570db2b6a8044d5137c3", + "user": { + "id": "60a79dee54b014008753a3c7", + "ingameName": "_JetWorld_", + "slug": "jetworld", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff7e66c6de200556c4994", + "type": "buy", + "platinum": 125, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:10Z", + "updatedAt": "2025-04-16T18:38:47Z", + "itemId": "566751815dcbc186f0536bd3", + "user": { + "id": "66dcd48460bf510007980c57", + "ingameName": "1dkwh014m", + "slug": "1dkwh014m", + "reputation": 21, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:09Z" + }, + "lastSeen": "2025-04-16T18:28:09Z" + } + }, + { + "id": "67fff7e60067ad002b5d8c93", + "type": "sell", + "platinum": 24, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:10Z", + "updatedAt": "2025-04-16T18:33:10Z", + "itemId": "5ba9f2014567de01415f6387", + "user": { + "id": "67fbb764dafbbb000abc9f13", + "ingameName": "HVAX", + "slug": "hvax", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:33:21Z" + }, + "lastSeen": "2025-04-16T17:33:21Z" + } + }, + { + "id": "67fff7e48e487d00302d317c", + "type": "sell", + "platinum": 9, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:08Z", + "updatedAt": "2025-04-16T18:33:08Z", + "itemId": "566759c8db7c7a568a8d45c5", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff7e4fb9ffe000accfdb0", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:33:08Z", + "updatedAt": "2025-04-16T18:33:08Z", + "itemId": "5be4b0a53ffcc703294e76ba", + "user": { + "id": "5ec92dc909b33e06781f73e2", + "ingameName": "mmmmaaarrc", + "slug": "mmmmaaarrc", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "de", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:22Z" + }, + "lastSeen": "2025-04-16T18:35:22Z" + } + }, + { + "id": "67fff7e4353ea10009cf7528", + "type": "sell", + "platinum": 28, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:08Z", + "updatedAt": "2025-04-16T18:33:08Z", + "itemId": "5f986cfb9dbdce024971b0c1", + "user": { + "id": "595d10180f313943c41e6b73", + "ingameName": "spifi", + "slug": "spifi", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:55Z" + }, + "lastSeen": "2025-04-16T18:28:55Z" + } + }, + { + "id": "67fff7e2fde1ef0113605d05", + "type": "sell", + "platinum": 65, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:33:06Z", + "updatedAt": "2025-04-16T18:33:06Z", + "itemId": "5a2feeb2c2c9e90cbdaa23d3", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff7e06c6de200556c4993", + "type": "buy", + "platinum": 27, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:33:04Z", + "updatedAt": "2025-04-16T18:36:40Z", + "itemId": "56153e78b66f83706f01716f", + "user": { + "id": "679a313d7d979604449c6f41", + "ingameName": "YearningSanity", + "slug": "yearningsanity", + "avatar": "user/avatar/679a313d7d979604449c6f41.png?1a3d1481002cc8c7a913a77ef1693b2b", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:37:03Z" + }, + "lastSeen": "2025-04-16T18:37:03Z" + } + }, + { + "id": "67fff7df0067ad0031fd8ef3", + "type": "sell", + "platinum": 70, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:33:03Z", + "updatedAt": "2025-04-16T18:33:03Z", + "itemId": "5c182b739603780081b09a53", + "user": { + "id": "5e4e7a8aebde7c0125a4a33c", + "ingameName": "Never-Ending-Abyss", + "slug": "never-ending-abyss", + "avatar": "user/avatar/5e4e7a8aebde7c0125a4a33c.png?79d27f1c0c792c81dc8cc47690a05617", + "reputation": 6, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:23:38Z" + }, + "lastSeen": "2025-04-16T18:23:38Z" + } + }, + { + "id": "67fff7dafde1ef0125bc46ed", + "type": "sell", + "platinum": 6, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:58Z", + "updatedAt": "2025-04-16T18:32:58Z", + "itemId": "5d21ce4af4604c012d1e0c1a", + "user": { + "id": "67aceb11603c7900ebd9d299", + "ingameName": "-Merw-", + "slug": "merw", + "reputation": 6, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:19Z" + }, + "lastSeen": "2025-04-16T18:38:19Z" + } + }, + { + "id": "67fff7d9ff9016000982fdff", + "type": "sell", + "platinum": 85, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:57Z", + "updatedAt": "2025-04-16T18:32:57Z", + "itemId": "657f2efd8820fb8f3c5f465d", + "user": { + "id": "66bf63c96b17410b7783ed2f", + "ingameName": "Ethereal-Enigma", + "slug": "ethereal-enigma", + "avatar": "user/avatar/66bf63c96b17410b7783ed2f.png?0a74778eab107b920c93a3bf46dc8afb", + "reputation": 42, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:41Z" + }, + "lastSeen": "2025-04-16T18:28:41Z" + } + }, + { + "id": "67fff7d98e487d004259bc87", + "type": "buy", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:57Z", + "updatedAt": "2025-04-16T18:38:25Z", + "itemId": "5b2985e0eb069f04ea65b0d8", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff7d8ff9016000982fdfe", + "type": "sell", + "platinum": 35, + "quantity": 10, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:56Z", + "updatedAt": "2025-04-16T18:32:56Z", + "itemId": "57c05949d0d9ef638234e4ab", + "user": { + "id": "67d585ed4257670066befb84", + "ingameName": "-Flo19-", + "slug": "flo19", + "avatar": "user/avatar/67d585ed4257670066befb84.png?a2c313a1b4ccfd70b350d7c3a3dd6d84", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:22:06Z" + }, + "lastSeen": "2025-04-16T18:22:06Z" + } + }, + { + "id": "67fff7d6353ea10008f1f0f0", + "type": "sell", + "platinum": 20, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:54Z", + "updatedAt": "2025-04-16T18:32:54Z", + "itemId": "5ba9f2034567de01415f638c", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + }, + { + "id": "67fff7d5353ea100079294dd", + "type": "buy", + "platinum": 15, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:53Z", + "updatedAt": "2025-04-16T18:32:53Z", + "itemId": "62a2baebfbd62c00450b71db", + "user": { + "id": "67e4349bfb9ffe0024779ff1", + "ingameName": "-SaiKa", + "slug": "saika-1935", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:14:11Z" + }, + "lastSeen": "2025-04-16T18:14:11Z" + } + }, + { + "id": "67fff7d20067ad002b5d8c92", + "type": "sell", + "platinum": 9, + "quantity": 2, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:32:50Z", + "updatedAt": "2025-04-16T18:32:50Z", + "itemId": "54a74454e779892d5e51563f", + "user": { + "id": "67e9369b8e487d000a6fdbbd", + "ingameName": "TheDexterMorgane", + "slug": "thedextermorgane", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "fr", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:35Z" + }, + "lastSeen": "2025-04-16T18:31:35Z" + } + }, + { + "id": "67fff7d2fb9ffe000883f7a9", + "type": "sell", + "platinum": 5, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:50Z", + "updatedAt": "2025-04-16T18:32:50Z", + "itemId": "54a74454e779892d5e51567e", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff7cf0067ad0031fd8ef1", + "type": "sell", + "platinum": 100, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:32:47Z", + "updatedAt": "2025-04-16T18:32:47Z", + "itemId": "54a74454e779892d5e5155dd", + "user": { + "id": "67fff3828f1dcf0007109b26", + "ingameName": "6FIRE7", + "slug": "6fire7", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:03Z" + }, + "lastSeen": "2025-04-16T18:38:03Z" + } + }, + { + "id": "67fff7cffde1ef0113605d03", + "type": "sell", + "platinum": 14, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:47Z", + "updatedAt": "2025-04-16T18:32:47Z", + "itemId": "66c60c2766bbb2aedca695a6", + "user": { + "id": "5ee3247da82f5e08e2fd9996", + "ingameName": "F1ey", + "slug": "f1ey", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:47:59Z" + }, + "lastSeen": "2025-04-16T17:47:59Z" + } + }, + { + "id": "67fff7ce0067ad002b5d8c90", + "type": "sell", + "platinum": 15, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:46Z", + "updatedAt": "2025-04-16T18:32:46Z", + "itemId": "60e70f79479445008f272572", + "user": { + "id": "6585c65a5d2df02baa4f4428", + "ingameName": "victor_szabo", + "slug": "victor-szabo", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:42Z" + }, + "lastSeen": "2025-04-16T18:38:42Z" + } + }, + { + "id": "67fff7cefde1ef011f23ad4c", + "type": "buy", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:46Z", + "updatedAt": "2025-04-16T18:32:46Z", + "itemId": "57dbdc525e334907aa8edb57", + "user": { + "id": "56f800ce0f313904081f8bd5", + "ingameName": "KillThisLove", + "slug": "killthislove", + "avatar": "user/avatar/56f800ce0f313904081f8bd5.png?168fefa733dd6abfcda3c35293fb0fca", + "reputation": 155, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:30Z" + }, + "lastSeen": "2025-04-16T18:28:30Z" + } + }, + { + "id": "67fff7cdfde1ef0113605d02", + "type": "sell", + "platinum": 5, + "quantity": 8, + "subtype": "unrevealed", + "visible": true, + "createdAt": "2025-04-16T18:32:45Z", + "updatedAt": "2025-04-16T18:32:51Z", + "itemId": "58701655937cde2c9d378ac3", + "user": { + "id": "5dcf62beefd5a1011abf07a5", + "ingameName": "Keni03", + "slug": "keni03", + "avatar": "user/avatar/5dcf62beefd5a1011abf07a5.png?768b9e2fefcd3066cdf0e8b6e83e8bbc", + "reputation": 320, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:57Z" + }, + "lastSeen": "2025-04-16T18:31:57Z" + } + }, + { + "id": "67fff7caff90160007d2d277", + "type": "sell", + "platinum": 10, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:42Z", + "updatedAt": "2025-04-16T18:32:42Z", + "itemId": "57bc9a40e506eb45ea251452", + "user": { + "id": "595d10180f313943c41e6b73", + "ingameName": "spifi", + "slug": "spifi", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:55Z" + }, + "lastSeen": "2025-04-16T18:28:55Z" + } + }, + { + "id": "67fff7c9fb9ffe000883f7a8", + "type": "buy", + "platinum": 10, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:41Z", + "updatedAt": "2025-04-16T18:32:41Z", + "itemId": "54a74454e779892d5e51559e", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff7c9f5ba0a0031754075", + "type": "sell", + "platinum": 19, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:41Z", + "updatedAt": "2025-04-16T18:32:41Z", + "itemId": "58b57068eb26db5c31192115", + "user": { + "id": "5f92e051e6527b04ff576cb9", + "ingameName": "hesus31", + "slug": "hesus31", + "avatar": "user/avatar/5f92e051e6527b04ff576cb9.png?9e71a9b3618e50fd790d7e8b54f41fa0", + "reputation": 68, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:08:35Z" + }, + "lastSeen": "2025-04-16T18:08:35Z" + } + }, + { + "id": "67fff7c8fde1ef0125bc46ea", + "type": "sell", + "platinum": 50, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:40Z", + "updatedAt": "2025-04-16T18:32:40Z", + "itemId": "626a197af40db600660a1d87", + "user": { + "id": "5ff9f1d2ddcf4c01081a7d04", + "ingameName": "DRReapy", + "slug": "drreapy", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:51Z" + }, + "lastSeen": "2025-04-16T18:33:51Z" + } + }, + { + "id": "67fff7c7ff90160007d2d276", + "type": "sell", + "platinum": 8, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:39Z", + "updatedAt": "2025-04-16T18:32:39Z", + "itemId": "5d21ce4af4604c012d1e0c1a", + "user": { + "id": "60a79dee54b014008753a3c7", + "ingameName": "_JetWorld_", + "slug": "jetworld", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff7c7fb9ffe000768dad5", + "type": "sell", + "platinum": 21, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:39Z", + "updatedAt": "2025-04-16T18:32:39Z", + "itemId": "58b57068eb26db5c3119210c", + "user": { + "id": "66476979da67ec0008fc1405", + "ingameName": "SKRIPTEDMAN", + "slug": "skriptedman", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:26:09Z" + }, + "lastSeen": "2025-04-16T18:26:09Z" + } + }, + { + "id": "67fff7c68e487d00302d317a", + "type": "sell", + "platinum": 45, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:38Z", + "updatedAt": "2025-04-16T18:32:38Z", + "itemId": "5dfea1481456970294aff3a3", + "user": { + "id": "66723ca4da67ec0411b7178b", + "ingameName": "anxiety________", + "slug": "anxiety-0020", + "avatar": "user/avatar/66723ca4da67ec0411b7178b.png?247b4391bf1314a9a963ead3fd4afe87", + "reputation": 52, + "platform": "pc", + "crossplay": true, + "locale": "es", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:01:26Z" + }, + "lastSeen": "2025-04-16T18:01:26Z" + } + }, + { + "id": "67fff7c5fde1ef0113605d00", + "type": "sell", + "platinum": 39, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:37Z", + "updatedAt": "2025-04-16T18:32:37Z", + "itemId": "582b0f860af25410b099f7fa", + "user": { + "id": "5ffb638b4dd614011f9a9b11", + "ingameName": "spiritzual", + "slug": "spiritzual", + "avatar": "user/avatar/5ffb638b4dd614011f9a9b11.png?61c06417c343e0fcaf689498fcf094d6", + "reputation": 12, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:22Z" + }, + "lastSeen": "2025-04-16T18:30:22Z" + } + }, + { + "id": "67fff7c4fb9ffe000883f7a5", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:36Z", + "updatedAt": "2025-04-16T18:32:36Z", + "itemId": "5814b1f2ca550948410af0ae", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff7c36c6de200556c4991", + "type": "sell", + "platinum": 10, + "quantity": 2, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:32:35Z", + "updatedAt": "2025-04-16T18:32:35Z", + "itemId": "5dbe9b127ea27b0ffe3ca285", + "user": { + "id": "67f8680cf5ba0a0008674003", + "ingameName": "Tobito_Prime", + "slug": "tobito_prime", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:22Z" + }, + "lastSeen": "2025-04-16T18:30:22Z" + } + }, + { + "id": "67fff7c26c6de200556c4990", + "type": "sell", + "platinum": 9, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:34Z", + "updatedAt": "2025-04-16T18:32:34Z", + "itemId": "58358a062c2ada0047b386f7", + "user": { + "id": "67eaee9722797f0009a10d17", + "ingameName": "Ludacrz187", + "slug": "ludacrz187", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:56Z" + }, + "lastSeen": "2025-04-16T18:32:56Z" + } + }, + { + "id": "67fff7c2fde1ef011f23ad4a", + "type": "sell", + "platinum": 70, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:34Z", + "updatedAt": "2025-04-16T18:32:34Z", + "itemId": "6467860a7ec1900db1ca9cc6", + "user": { + "id": "61a5aab8de776d0884a3a6a0", + "ingameName": "sanker723", + "slug": "sanker723", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:19:37Z" + }, + "lastSeen": "2025-04-16T18:19:37Z" + } + }, + { + "id": "67fff7c2fde1ef011f23ad49", + "type": "sell", + "platinum": 50, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:34Z", + "updatedAt": "2025-04-16T18:37:38Z", + "itemId": "626a197af40db600660a1d87", + "user": { + "id": "66bf63c96b17410b7783ed2f", + "ingameName": "Ethereal-Enigma", + "slug": "ethereal-enigma", + "avatar": "user/avatar/66bf63c96b17410b7783ed2f.png?0a74778eab107b920c93a3bf46dc8afb", + "reputation": 42, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:41Z" + }, + "lastSeen": "2025-04-16T18:28:41Z" + } + }, + { + "id": "67fff7c16c6de200556c498f", + "type": "sell", + "platinum": 60, + "quantity": 1, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:32:33Z", + "updatedAt": "2025-04-16T18:32:33Z", + "itemId": "54a74455e779892d5e5156b1", + "user": { + "id": "5e7d3c7cdcc198050e7c3231", + "ingameName": "MatySoto12", + "slug": "matysoto12", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:10Z" + }, + "lastSeen": "2025-04-16T17:49:10Z" + } + }, + { + "id": "67fff7bffde1ef0119f83732", + "type": "sell", + "platinum": 30, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:31Z", + "updatedAt": "2025-04-16T18:32:31Z", + "itemId": "57bc9a40e506eb45ea251453", + "user": { + "id": "595d10180f313943c41e6b73", + "ingameName": "spifi", + "slug": "spifi", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:55Z" + }, + "lastSeen": "2025-04-16T18:28:55Z" + } + }, + { + "id": "67fff7bffb9ffe000accfdaa", + "type": "buy", + "platinum": 80, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:31Z", + "updatedAt": "2025-04-16T18:32:31Z", + "itemId": "5ab1570db2b6a8044d5137c5", + "user": { + "id": "67dd07ea8afd120025529896", + "ingameName": "heynerpk", + "slug": "heynerpk", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:19:34Z" + }, + "lastSeen": "2025-04-16T18:19:34Z" + } + }, + { + "id": "67fff7be0067ad002511532a", + "type": "sell", + "platinum": 60, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:30Z", + "updatedAt": "2025-04-16T18:32:30Z", + "itemId": "62a2baebfbd62c00450b71d9", + "user": { + "id": "5ff9f1d2ddcf4c01081a7d04", + "ingameName": "DRReapy", + "slug": "drreapy", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:33:51Z" + }, + "lastSeen": "2025-04-16T18:33:51Z" + } + }, + { + "id": "67fff7be6c6de2005b961ba6", + "type": "buy", + "platinum": 50, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:30Z", + "updatedAt": "2025-04-16T18:32:30Z", + "itemId": "56783f24cbfa8f0432dd89ab", + "user": { + "id": "6794e82c5e3e4f00068fccab", + "ingameName": "Bxbuuu", + "slug": "bxbuuu", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "es", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:28:43Z" + }, + "lastSeen": "2025-04-16T18:28:43Z" + } + }, + { + "id": "67fff7b9fde1ef0125bc46e9", + "type": "sell", + "platinum": 58, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:25Z", + "updatedAt": "2025-04-16T18:32:25Z", + "itemId": "54a74454e779892d5e5155dd", + "user": { + "id": "56b008db0f31391941afc801", + "ingameName": "Galaktuss2015", + "slug": "galaktuss2015", + "avatar": "user/avatar/56b008db0f31391941afc801.png?ac6ca953ca6e8e78ea7688746ed6c937", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:57Z" + }, + "lastSeen": "2025-04-16T18:31:57Z" + } + }, + { + "id": "67fff7b96c6de2005b961ba4", + "type": "sell", + "platinum": 10, + "quantity": 2, + "visible": true, + "createdAt": "2025-04-16T18:32:25Z", + "updatedAt": "2025-04-16T18:32:25Z", + "itemId": "55158cd9e7798915ee6bd13f", + "user": { + "id": "60a79dee54b014008753a3c7", + "ingameName": "_JetWorld_", + "slug": "jetworld", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:26Z" + }, + "lastSeen": "2025-04-16T18:38:26Z" + } + }, + { + "id": "67fff7b7fde1ef0125bc46e8", + "type": "sell", + "platinum": 13, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:23Z", + "updatedAt": "2025-04-16T18:32:23Z", + "itemId": "6531692bf31453d36319c56e", + "user": { + "id": "640ae40f330ecc00679b3f5b", + "ingameName": "DiviZed", + "slug": "divized", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:54Z" + }, + "lastSeen": "2025-04-16T18:32:54Z" + } + }, + { + "id": "67fff7b6fde1ef0113605cff", + "type": "sell", + "platinum": 3, + "quantity": 3, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:22Z", + "updatedAt": "2025-04-16T18:32:22Z", + "itemId": "566759c8db7c7a568a8d45c4", + "user": { + "id": "5ad100a249ef0014584ceeb9", + "ingameName": "KawaiiAsashin", + "slug": "kawaiiasashin", + "reputation": 25, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:34:00Z" + }, + "lastSeen": "2025-04-16T18:34:00Z" + } + }, + { + "id": "67fff7b4fde1ef0125bc46e7", + "type": "sell", + "platinum": 13, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:20Z", + "updatedAt": "2025-04-16T18:32:20Z", + "itemId": "60e70f7a479445008f27257d", + "user": { + "id": "6585c65a5d2df02baa4f4428", + "ingameName": "victor_szabo", + "slug": "victor-szabo", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:38:42Z" + }, + "lastSeen": "2025-04-16T18:38:42Z" + } + }, + { + "id": "67fff7b4f5ba0a001f5e3d8e", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:20Z", + "updatedAt": "2025-04-16T18:32:20Z", + "itemId": "5788fad04fff472f131a135f", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff7b1fb9ffe000accfda9", + "type": "sell", + "platinum": 35, + "quantity": 1, + "rank": 5, + "visible": true, + "createdAt": "2025-04-16T18:32:17Z", + "updatedAt": "2025-04-16T18:32:17Z", + "itemId": "62af145d5d2dab005422903c", + "user": { + "id": "5c0011b01fd5cd060f42b4d7", + "ingameName": "Balance127", + "slug": "balance127", + "avatar": "user/avatar/5c0011b01fd5cd060f42b4d7.png?739b406a787888e18dbcc00e3e5f7a49", + "reputation": 117, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:31:23Z" + }, + "lastSeen": "2025-04-16T18:31:23Z" + } + }, + { + "id": "67fff7b06c6de2005b961ba3", + "type": "sell", + "platinum": 18, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:16Z", + "updatedAt": "2025-04-16T18:32:16Z", + "itemId": "6242037766a58f0108c3d492", + "user": { + "id": "5fcc19f6afb13a0049aac4fe", + "ingameName": "MOONETSU", + "slug": "moonetsu", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:29:09Z" + }, + "lastSeen": "2025-04-16T18:29:09Z" + } + }, + { + "id": "67fff7affde1ef0113605cfd", + "type": "sell", + "platinum": 12, + "quantity": 3, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:15Z", + "updatedAt": "2025-04-16T18:32:15Z", + "itemId": "5d8765df7ea27b08950c13cc", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + }, + { + "id": "67fff7aeff90160008d97ea1", + "type": "buy", + "platinum": 80, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:14Z", + "updatedAt": "2025-04-16T18:32:14Z", + "itemId": "56783f24cbfa8f0432dd89a1", + "user": { + "id": "67dd07ea8afd120025529896", + "ingameName": "heynerpk", + "slug": "heynerpk", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:19:34Z" + }, + "lastSeen": "2025-04-16T18:19:34Z" + } + }, + { + "id": "67fff7aefde1ef0119f8372f", + "type": "sell", + "platinum": 35, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:14Z", + "updatedAt": "2025-04-16T18:36:56Z", + "itemId": "57dbdc525e334907aa8edb57", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff7ac6c6de2004f9c9b09", + "type": "buy", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:12Z", + "updatedAt": "2025-04-16T18:36:55Z", + "itemId": "57dbdc525e334907aa8edb57", + "user": { + "id": "650e52fdb840f8074d6e8cfd", + "ingameName": "Senva_", + "slug": "senva", + "avatar": "user/avatar/650e52fdb840f8074d6e8cfd.png?1e761e8c2578ecfdda698db1f7aa0db3", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:49:37Z" + }, + "lastSeen": "2025-04-16T17:49:37Z" + } + }, + { + "id": "67fff7aa353ea10008f1f0ee", + "type": "sell", + "platinum": 10, + "quantity": 3, + "rank": 3, + "visible": true, + "createdAt": "2025-04-16T18:32:10Z", + "updatedAt": "2025-04-16T18:32:10Z", + "itemId": "5dbe9b127ea27b0ffe3ca282", + "user": { + "id": "67f8680cf5ba0a0008674003", + "ingameName": "Tobito_Prime", + "slug": "tobito_prime", + "reputation": 3, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:30:22Z" + }, + "lastSeen": "2025-04-16T18:30:22Z" + } + }, + { + "id": "67fff7a9f5ba0a0031754071", + "type": "sell", + "platinum": 150, + "quantity": 1, + "rank": 10, + "visible": true, + "createdAt": "2025-04-16T18:32:09Z", + "updatedAt": "2025-04-16T18:32:09Z", + "itemId": "55c153b7e779895d77556bb1", + "user": { + "id": "66bfca77c405f62971dc933b", + "ingameName": "Cheep_Absolut", + "slug": "cheep-absolut", + "avatar": "user/avatar/66bfca77c405f62971dc933b.png?b4fa7809b2eba973fb76837411352acf", + "reputation": 8, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:59:02Z" + }, + "lastSeen": "2025-04-16T17:59:02Z" + } + }, + { + "id": "67fff7a9353ea10009cf7522", + "type": "sell", + "platinum": 45, + "quantity": 4, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:09Z", + "updatedAt": "2025-04-16T18:32:09Z", + "itemId": "67eff367cedcd0be6d13595e", + "user": { + "id": "5ec92dc909b33e06781f73e2", + "ingameName": "mmmmaaarrc", + "slug": "mmmmaaarrc", + "reputation": 28, + "platform": "pc", + "crossplay": true, + "locale": "de", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:35:22Z" + }, + "lastSeen": "2025-04-16T18:35:22Z" + } + }, + { + "id": "67fff7a78e487d003c26ac90", + "type": "sell", + "platinum": 15, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:07Z", + "updatedAt": "2025-04-16T18:32:07Z", + "itemId": "673516aadb3ac2cfade14a71", + "user": { + "id": "6313b1acb8a9cc04597759de", + "ingameName": "Dexsus29", + "slug": "dexsus29", + "reputation": 1, + "platform": "pc", + "crossplay": true, + "locale": "ru", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:32:17Z" + }, + "lastSeen": "2025-04-16T18:32:17Z" + } + }, + { + "id": "67fff7a6fb9ffe000883f7a3", + "type": "sell", + "platinum": 37, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:06Z", + "updatedAt": "2025-04-16T18:32:06Z", + "itemId": "64c2aa1466456704eba6ba35", + "user": { + "id": "67a25a97c152390617cd216c", + "ingameName": "Lucky_Step", + "slug": "lucky_step", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:24Z" + }, + "lastSeen": "2025-04-16T18:11:24Z" + } + }, + { + "id": "67fff7a50067ad002b5d8c8d", + "type": "sell", + "platinum": 3, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:32:05Z", + "updatedAt": "2025-04-16T18:32:05Z", + "itemId": "5788fad84fff472f131a1361", + "user": { + "id": "67ffecaf6c6de2005b961a72", + "ingameName": "Bloodrasta", + "slug": "bloodrasta", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:11:34Z" + }, + "lastSeen": "2025-04-16T18:11:34Z" + } + }, + { + "id": "67fff7a30067ad001faf8631", + "type": "sell", + "platinum": 35, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-16T18:32:03Z", + "updatedAt": "2025-04-16T18:32:03Z", + "itemId": "56783f24cbfa8f0432dd89ac", + "user": { + "id": "5c8e0fcbcaeeae0abb1a93a7", + "ingameName": "QWQ54250", + "slug": "qwq54250", + "reputation": 0, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:16:03Z" + }, + "lastSeen": "2025-04-16T18:16:03Z" + } + }, + { + "id": "67fff7a28e487d003c26ac8f", + "type": "sell", + "platinum": 60, + "quantity": 8, + "visible": true, + "createdAt": "2025-04-16T18:32:02Z", + "updatedAt": "2025-04-16T18:32:02Z", + "itemId": "61bb64fc3132ff00482b5fbb", + "user": { + "id": "60410e938390ca018494d442", + "ingameName": "M.Petrosel", + "slug": "m-petrosel", + "avatar": "user/avatar/60410e938390ca018494d442.png?4329c6416ea028930a9acb2cea2cf536", + "reputation": 18, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T18:25:47Z" + }, + "lastSeen": "2025-04-16T18:25:47Z" + } + }, + { + "id": "67fff79ff5ba0a002bc30d5d", + "type": "sell", + "platinum": 10, + "quantity": 1, + "rank": 0, + "visible": true, + "createdAt": "2025-04-16T18:31:59Z", + "updatedAt": "2025-04-16T18:31:59Z", + "itemId": "56463c24b66f8358acce4451", + "user": { + "id": "6489b61920b9c518b53151a8", + "ingameName": "Melosh101", + "slug": "melosh101", + "reputation": 4, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-16T17:39:16Z" + }, + "lastSeen": "2025-04-16T17:39:16Z" + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/riven.json b/src/market/models/fixtures/riven.json new file mode 100644 index 0000000..a63862d --- /dev/null +++ b/src/market/models/fixtures/riven.json @@ -0,0 +1,6438 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "5c5ca81696e8d2003834fdcc", + "slug": "kulstar", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrnTorpedoPistol/GrnTorpedoPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.3, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Kulstar", + "icon": "items/images/en/kulstar.92736ca911a3b84f99bc9e50f24369f0.png", + "thumb": "items/images/en/thumbs/kulstar.92736ca911a3b84f99bc9e50f24369f0.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe1d", + "slug": "heliocor", + "gameRef": "/Lotus/Weapons/Cephalon/Melee/Hammer/CephHammerWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Heliocor", + "icon": "items/images/en/heliocor.49fc1b3f6c4e4a550a15ad7c96885195.png", + "thumb": "items/images/en/thumbs/heliocor.49fc1b3f6c4e4a550a15ad7c96885195.128x128.png" + } + } + }, + { + "id": "5cf5724d9597e1019b1678c5", + "slug": "nagantaka", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/GarudaCrossbow/GarudaCrossbow", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Nagantaka", + "icon": "items/images/en/nagantaka.4ee86a7c5a800796a22e94e584577628.png", + "thumb": "items/images/en/thumbs/nagantaka.4ee86a7c5a800796a22e94e584577628.128x128.png" + } + } + }, + { + "id": "5cf5724e9597e1019b1678c6", + "slug": "ocucor", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpSentExperimentPistol/CrpSentExperimentPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Ocucor", + "icon": "items/images/en/ocucor.c3f776ad9924de2782e8c0d36be4e5b4.png", + "thumb": "items/images/en/thumbs/ocucor.c3f776ad9924de2782e8c0d36be4e5b4.128x128.png" + } + } + }, + { + "id": "5cf5724f9597e1019b1678c7", + "slug": "falcor", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Glaive/CrpGlaive/CrpGlaive", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Falcor", + "icon": "items/images/en/falcor.83897b2d4fbcbd312c70be4e25ea3b92.png", + "thumb": "items/images/en/thumbs/falcor.83897b2d4fbcbd312c70be4e25ea3b92.128x128.png" + } + } + }, + { + "id": "5cf572509597e1019b1678c8", + "slug": "paracesis", + "gameRef": "/Lotus/Weapons/Orokin/BallasSword/BallasSwordWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.6, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Paracesis", + "icon": "items/images/en/paracesis.bdc3b22813168a460ed1b82fc33c3139.png", + "thumb": "items/images/en/thumbs/paracesis.bdc3b22813168a460ed1b82fc33c3139.128x128.png" + } + } + }, + { + "id": "5cf572529597e1019b1678ca", + "slug": "exergis", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpShapeBlast/CrpShapeBlastShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.1, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Exergis", + "icon": "items/images/en/exergis.c9432d140c7138d21b9c275ba54eeecc.png", + "thumb": "items/images/en/thumbs/exergis.c9432d140c7138d21b9c275ba54eeecc.128x128.png" + } + } + }, + { + "id": "5cf572549597e1019b1678cf", + "slug": "battacor", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpSentExperimentRifle/CrpSentExperimentRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Battacor", + "icon": "items/images/en/battacor.141ff25ce24ea93a83a523dda7e94011.png", + "thumb": "items/images/en/thumbs/battacor.141ff25ce24ea93a83a523dda7e94011.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc3", + "slug": "euphona_prime", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/AllNew1hSG/AllNew1hSG", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 0.95, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Euphona Prime", + "icon": "riven_item/images/euphona_prime.6a18cc50c57ac13c3203e872baf85a8d.png", + "thumb": "riven_item/images/thumbs/euphona_prime.6a18cc50c57ac13c3203e872baf85a8d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc5", + "slug": "fusilai", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/GlassKunai/GlassKunaiWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Fusilai", + "icon": "items/images/en/fusilai.dfe658fc2b5297fc495fd28be23ffd70.png", + "thumb": "items/images/en/thumbs/fusilai.dfe658fc2b5297fc495fd28be23ffd70.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdce", + "slug": "lato", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/Pistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.4, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Lato", + "icon": "items/images/en/lato.75f74069daf8fed3d9397afe96a976a0.png", + "thumb": "items/images/en/thumbs/lato.75f74069daf8fed3d9397afe96a976a0.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd0", + "slug": "magnus", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/Magnum/Magnum", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.53, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Magnus", + "icon": "items/images/en/magnus.25f6050dc34973f444d1c6ea54487d5e.png", + "thumb": "items/images/en/thumbs/magnus.25f6050dc34973f444d1c6ea54487d5e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde9", + "slug": "ack_and_brunt", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerTylAxeAndBoar/RegorAxeShield", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Ack & Brunt", + "icon": "riven_item/images/ack_and_brunt.f5852c315691d80106e0ba42fb82f668.png", + "thumb": "riven_item/images/thumbs/ack_and_brunt.f5852c315691d80106e0ba42fb82f668.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdea", + "slug": "amphis", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Staff/GrnStaff", + "group": "melee", + "rivenType": "melee", + "disposition": 1.5, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Amphis", + "icon": "items/images/en/amphis.6ba40d253046114ead767591eb74d88b.png", + "thumb": "items/images/en/thumbs/amphis.6ba40d253046114ead767591eb74d88b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdeb", + "slug": "anku", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Scythe/ParisScythe/ParisScythe", + "group": "melee", + "rivenType": "melee", + "disposition": 1.46, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Anku", + "icon": "items/images/en/anku.a7e5df1e6b599334e2fe014f14062cf0.png", + "thumb": "items/images/en/thumbs/anku.a7e5df1e6b599334e2fe014f14062cf0.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fded", + "slug": "arca_titron", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Hammer/CorpusHammerWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Arca Titron", + "icon": "riven_item/images/arca_titron.bd711749b9917222c85fea4b60376d45.png", + "thumb": "riven_item/images/thumbs/arca_titron.bd711749b9917222c85fea4b60376d45.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdef", + "slug": "balla", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee01/Tip/TipOne", + "group": "zaw", + "rivenType": "zaw", + "disposition": 0.8, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Balla", + "icon": "riven_item/images/balla.9e49720865f76d3a6b591ad2712a3afb.png", + "thumb": "riven_item/images/thumbs/balla.9e49720865f76d3a6b591ad2712a3afb.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf1", + "slug": "boltace", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Tonfa/Boltonfa/Boltonfa", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Boltace", + "icon": "items/images/en/boltace.79a692a1f7d1f9b1251de0719403ab1f.png", + "thumb": "items/images/en/thumbs/boltace.79a692a1f7d1f9b1251de0719403ab1f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf3", + "slug": "broken_war", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoSmallSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.15, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Broken War", + "icon": "items/images/en/broken_war.79aea5cde8a32f0cdb77bc19b5d1e9a5.png", + "thumb": "items/images/en/thumbs/broken_war.79aea5cde8a32f0cdb77bc19b5d1e9a5.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf5", + "slug": "caustacyst", + "gameRef": "/Lotus/Weapons/Infested/Melee/InfEmbolistScythe/InfestedScythe", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Caustacyst", + "icon": "items/images/en/caustacyst.1fb1dcd615381cbf7823f0471311c1fe.png", + "thumb": "items/images/en/thumbs/caustacyst.1fb1dcd615381cbf7823f0471311c1fe.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf7", + "slug": "cerata", + "gameRef": "/Lotus/Weapons/Infested/Melee/Glaives/PunctureGlaive/PunctureGlaiveWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Cerata", + "icon": "riven_item/images/cerata.a844799b207aaddaa4d4542bbffaee71.png", + "thumb": "riven_item/images/thumbs/cerata.a844799b207aaddaa4d4542bbffaee71.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe1a", + "slug": "hate", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Scythe/StalkerScytheWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Hate", + "icon": "items/images/en/hate.1e4354f5dbd630a1809478ea19ca740d.png", + "thumb": "items/images/en/thumbs/hate.1e4354f5dbd630a1809478ea19ca740d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd95", + "slug": "soma", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/TennoAR", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Soma", + "icon": "items/images/en/soma.cdaf834f3db92d51d4452ce8f9aee19c.png", + "thumb": "items/images/en/thumbs/soma.cdaf834f3db92d51d4452ce8f9aee19c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd9a", + "slug": "synapse", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/InfestedRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.31, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Synapse", + "icon": "items/images/en/synapse.8f3428d652e080644e9a3028081f4acd.png", + "thumb": "items/images/en/thumbs/synapse.8f3428d652e080644e9a3028081f4acd.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd9e", + "slug": "tigris", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/DoubleBarrelShotgun/TennoDoubleBarrelShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.1, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Tigris", + "icon": "riven_item/images/tigris.7ce83c14bb12c7baee7429c095e54374.png", + "thumb": "riven_item/images/thumbs/tigris.7ce83c14bb12c7baee7429c095e54374.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd9f", + "slug": "tonkor", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnGrenadeLauncher/GrnGrenadeLauncher", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Tonkor", + "icon": "items/images/en/tonkor.18f437094ffdd53edc96e46d72eb7b59.png", + "thumb": "items/images/en/thumbs/tonkor.18f437094ffdd53edc96e46d72eb7b59.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda0", + "slug": "torid", + "gameRef": "/Lotus/Weapons/ClanTech/Bio/BioWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Torid", + "icon": "items/images/en/torid.44456f26160f4ece65656c524c4692fe.png", + "thumb": "items/images/en/thumbs/torid.44456f26160f4ece65656c524c4692fe.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda1", + "slug": "vectis", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/TennoSniperRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Vectis", + "icon": "items/images/en/vectis.439c24184ddd098ca33ba897be1b3fa9.png", + "thumb": "items/images/en/thumbs/vectis.439c24184ddd098ca33ba897be1b3fa9.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda2", + "slug": "veldt", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnRevolverRifle/TnRevolverRifleGun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Veldt", + "icon": "items/images/en/veldt.1b5734a7f3f0935019d296accad86136.png", + "thumb": "items/images/en/thumbs/veldt.1b5734a7f3f0935019d296accad86136.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda3", + "slug": "vulkar", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerSniperRifle/GrnSniperRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.45, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Vulkar", + "icon": "items/images/en/vulkar.cd244ebd97bf1ef69ed49b756d07665f.png", + "thumb": "items/images/en/thumbs/vulkar.cd244ebd97bf1ef69ed49b756d07665f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda4", + "slug": "zarr", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnCannon/GrnCannonWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Zarr", + "icon": "items/images/en/zarr.ab172f2a4dac5c140772ba2ac675b614.png", + "thumb": "items/images/en/thumbs/zarr.ab172f2a4dac5c140772ba2ac675b614.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda5", + "slug": "zenith", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/LoginPrimary/SundialRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Zenith", + "icon": "items/images/en/zenith.031d3559d3575fa5f23d17f1fd2cacb9.png", + "thumb": "items/images/en/thumbs/zenith.031d3559d3575fa5f23d17f1fd2cacb9.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda6", + "slug": "zhuge", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/RepeatingCrossbow/RepeatingCrossbow", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.2, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Zhuge", + "icon": "items/images/en/zhuge.69a6b4bcee465c6b3332ddb4d6d29e19.png", + "thumb": "items/images/en/thumbs/zhuge.69a6b4bcee465c6b3332ddb4d6d29e19.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda7", + "slug": "acrid", + "gameRef": "/Lotus/Weapons/ClanTech/Bio/AcidDartPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.33, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Acrid", + "icon": "items/images/en/acrid.def858b7d99e216a123d8af9a4f3663c.png", + "thumb": "items/images/en/thumbs/acrid.def858b7d99e216a123d8af9a4f3663c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda8", + "slug": "afuris", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/AkimboAutoPistols", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.45, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Afuris", + "icon": "riven_item/images/afuris.836b9b7a1ea7cceeacf42f929d33ad3f.png", + "thumb": "riven_item/images/thumbs/afuris.836b9b7a1ea7cceeacf42f929d33ad3f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fda9", + "slug": "akbolto", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/AkimboBolto", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.3, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Akbolto", + "icon": "items/images/en/akbolto.ba66cf8e6481671a1a69057b78ed74e8.png", + "thumb": "items/images/en/thumbs/akbolto.ba66cf8e6481671a1a69057b78ed74e8.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdaa", + "slug": "akbronco", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/AkimboShotGun", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 1.35, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Akbronco", + "icon": "items/images/en/akbronco.cc3f95412fa414ddd87a90c63240928f.png", + "thumb": "items/images/en/thumbs/akbronco.cc3f95412fa414ddd87a90c63240928f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdab", + "slug": "akjagara", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TigrisRedeemerSetPistol/TnoBladedPistols", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.1, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Akjagara", + "icon": "items/images/en/akjagara.8d4087f177bb51d5b4fd5d3ac89ea78e.png", + "thumb": "items/images/en/thumbs/akjagara.8d4087f177bb51d5b4fd5d3ac89ea78e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdac", + "slug": "aklato", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/AkimboPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.52, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Aklato", + "icon": "items/images/en/aklato.fb4fd2557ee8190c747b8a21fc130f86.png", + "thumb": "items/images/en/thumbs/aklato.fb4fd2557ee8190c747b8a21fc130f86.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb4", + "slug": "arca_scisco", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/SniperPistol/CrpScopeGun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Arca Scisco", + "icon": "riven_item/images/arca_scisco.8f53fed9eb4af8089fd98846bc365ca4.png", + "thumb": "riven_item/images/thumbs/arca_scisco.8f53fed9eb4af8089fd98846bc365ca4.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdbd", + "slug": "cycron", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpChargeGun/CrpChargeGun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Cycron", + "icon": "items/images/en/cycron.8c415cf09d5a258677c3f42d9477c0ee.png", + "thumb": "items/images/en/thumbs/cycron.8c415cf09d5a258677c3f42d9477c0ee.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdbf", + "slug": "detron", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CorpusHandShotgun/CorpusHandCannon", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 1.15, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Detron", + "icon": "items/images/en/detron.0d820dd8bfa6d4a9369456594232e0b6.png", + "thumb": "items/images/en/thumbs/detron.0d820dd8bfa6d4a9369456594232e0b6.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc2", + "slug": "embolist", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfestedPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.4, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Embolist", + "icon": "items/images/en/embolist.19e333826e9f646df007efc7778a373e.png", + "thumb": "items/images/en/thumbs/embolist.19e333826e9f646df007efc7778a373e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe07", + "slug": "dual_kamas", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualKamas/DualKamas", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Dual Kamas", + "icon": "riven_item/images/dual_kamas.3a49f1ae023c1988d14200425aff3057.png", + "thumb": "riven_item/images/thumbs/dual_kamas.3a49f1ae023c1988d14200425aff3057.128x128.png" + } + } + }, + { + "id": "5dbe9b057ea27b0ffe3ca264", + "slug": "kuva_shildeg", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnKuvaLichScythe/GrnKuvaLichScytheWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.8, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Shildeg", + "icon": "riven_item/images/kuva_shildeg.833d9ac75906e6ed810f87d16fc3bf23.png", + "thumb": "riven_item/images/thumbs/kuva_shildeg.833d9ac75906e6ed810f87d16fc3bf23.128x128.png" + } + } + }, + { + "id": "5dbe9b057ea27b0ffe3ca266", + "slug": "kuva_ayanga", + "gameRef": "/Lotus/Weapons/Grineer/HeavyWeapons/GrnHeavyGrenadeLauncher", + "group": "archgun", + "rivenType": "rifle", + "disposition": 0.95, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Ayanga", + "icon": "riven_item/images/kuva_ayanga.4312560b94c47f98b046d81344504e0d.png", + "thumb": "riven_item/images/thumbs/kuva_ayanga.4312560b94c47f98b046d81344504e0d.128x128.png" + } + } + }, + { + "id": "5fbd7b6fc34da301176015bc", + "slug": "vermisplicer", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfKitGun/Barrels/InfBarrelBeam/InfModularBarrelBeamPart", + "group": "kitgun", + "rivenType": "kitgun", + "disposition": 1.1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Vermisplicer", + "icon": "items/images/en/vermisplicer.9ef6b79c4c2c728c57627c2f1be95dd8.png", + "thumb": "items/images/en/thumbs/vermisplicer.9ef6b79c4c2c728c57627c2f1be95dd8.128x128.png" + } + } + }, + { + "id": "5fbd7b6fc34da301176015bd", + "slug": "sporelacer", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfKitGun/Barrels/InfBarrelEgg/InfModularBarrelEggPart", + "group": "kitgun", + "rivenType": "kitgun", + "disposition": 0.55, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Sporelacer", + "icon": "items/images/en/sporelacer.f1a595d7d13231a0d1b24fc694f5fb78.png", + "thumb": "items/images/en/thumbs/sporelacer.f1a595d7d13231a0d1b24fc694f5fb78.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd62", + "slug": "argonak", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/LaserAimRifle/LaserAimRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.25, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Argonak", + "icon": "items/images/en/argonak.39fc2b8728117c8c7cc81370cd216ba2.png", + "thumb": "items/images/en/thumbs/argonak.39fc2b8728117c8c7cc81370cd216ba2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdbb", + "slug": "castanas", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/StickyBomb/StickyBombs", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.4, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Castanas", + "icon": "items/images/en/castanas.5cc83e4f12ce19559e2bfe6e0f0f1935.png", + "thumb": "items/images/en/thumbs/castanas.5cc83e4f12ce19559e2bfe6e0f0f1935.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdbc", + "slug": "cestra", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CorpusMinigun/CorpusMinigun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.52, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Cestra", + "icon": "items/images/en/cestra.d37e157c149f8aa72194797d5175677d.png", + "thumb": "items/images/en/thumbs/cestra.d37e157c149f8aa72194797d5175677d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc1", + "slug": "dual_toxocyst", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfVomitGun/InfVomitGunWep", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Dual Toxocyst", + "icon": "riven_item/images/dual_toxocyst.c983c3cbfd781dec1226c09e5157ef13.png", + "thumb": "riven_item/images/thumbs/dual_toxocyst.c983c3cbfd781dec1226c09e5157ef13.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc8", + "slug": "hystrix", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/QuillDartgun/QuillDartGunWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Hystrix", + "icon": "items/images/en/hystrix.c4771631ef9eb250562012fbf407d439.png", + "thumb": "items/images/en/thumbs/hystrix.c4771631ef9eb250562012fbf407d439.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe11", + "slug": "fragor", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Hammer/HammerWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.2, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Fragor", + "icon": "items/images/en/fragor.6b5c0c6d32b7f2d3a0576e7a0c28accb.png", + "thumb": "items/images/en/thumbs/fragor.6b5c0c6d32b7f2d3a0576e7a0c28accb.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe13", + "slug": "galatine", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/GreatSword/TennoGreatSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Galatine", + "icon": "items/images/en/galatine.46969364e23ff22f2463e4479ef38b24.png", + "thumb": "items/images/en/thumbs/galatine.46969364e23ff22f2463e4479ef38b24.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe14", + "slug": "gazal_machete", + "gameRef": "/Lotus/Weapons/Tenno/Melee/PersianMachete/DjinnMachete", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Gazal Machete", + "icon": "riven_item/images/gazal_machete.a9fc381acf6ba7519b812cf9f4e8954b.png", + "thumb": "riven_item/images/thumbs/gazal_machete.a9fc381acf6ba7519b812cf9f4e8954b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe16", + "slug": "gram", + "gameRef": "/Lotus/Weapons/Tenno/Melee/GreatSword/GreatSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.44, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Gram", + "icon": "items/images/en/gram.ab64eb4736d2acb63202cb34a320183e.png", + "thumb": "items/images/en/thumbs/gram.ab64eb4736d2acb63202cb34a320183e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe17", + "slug": "guandao", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/TnGuandaoPolearm/TnGuandaoPolearmWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Guandao", + "icon": "items/images/en/guandao.68b20f3b44eb7bf103ed74b7a6219966.png", + "thumb": "items/images/en/thumbs/guandao.68b20f3b44eb7bf103ed74b7a6219966.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe18", + "slug": "gunsen", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Warfan/WarfanWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Gunsen", + "icon": "items/images/en/gunsen.381adede029c793f0dfd7c90963089a5.png", + "thumb": "items/images/en/thumbs/gunsen.381adede029c793f0dfd7c90963089a5.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe0a", + "slug": "dual_skana", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualShortSword/DualShortSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.48, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Dual Skana", + "icon": "riven_item/images/dual_skana.26ab111b35fe5cf8c76f1c484fae1fa2.png", + "thumb": "riven_item/images/thumbs/dual_skana.26ab111b35fe5cf8c76f1c484fae1fa2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe21", + "slug": "jaw_sword", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/JawSword/JawLongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Jaw Sword", + "icon": "riven_item/images/jaw_sword.949c3646fad591912dc12df78f946c3f.png", + "thumb": "riven_item/images/thumbs/jaw_sword.949c3646fad591912dc12df78f946c3f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe24", + "slug": "kesheg", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerHalberd/GrnHalberd", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Kesheg", + "icon": "items/images/en/kesheg.fd223dc1c378610f8b550900bb2545c2.png", + "thumb": "items/images/en/thumbs/kesheg.fd223dc1c378610f8b550900bb2545c2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe25", + "slug": "kestrel", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Glaives/Boomerang/BoomerangWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.45, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Kestrel", + "icon": "items/images/en/kestrel.6486807517934177d97c300326ff0c10.png", + "thumb": "items/images/en/thumbs/kestrel.6486807517934177d97c300326ff0c10.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe29", + "slug": "kronsh", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee01/Tip/TipSix", + "group": "zaw", + "rivenType": "zaw", + "disposition": 1.3, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Kronsh", + "icon": "items/images/en/kronsh.affe607fb84379769f756a2409cbf0b6.png", + "thumb": "items/images/en/thumbs/kronsh.affe607fb84379769f756a2409cbf0b6.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb7", + "slug": "ballistica", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/AutomaticHandCrossbow/AutoCrossBow", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Ballistica", + "icon": "items/images/en/ballistica.178b8ec4820bbc01daa7ed321ef0890f.png", + "thumb": "items/images/en/thumbs/ballistica.178b8ec4820bbc01daa7ed321ef0890f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe1b", + "slug": "heat_dagger", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Dagger/Dagger", + "group": "melee", + "rivenType": "melee", + "disposition": 1.44, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Heat Dagger", + "icon": "items/images/en/heat_dagger.1284a42f3ca7d49b6e1dc11a96559bc8.png", + "thumb": "items/images/en/thumbs/heat_dagger.1284a42f3ca7d49b6e1dc11a96559bc8.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe1f", + "slug": "jat_kittag", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerJetPoweredPolearm/GrineerJetPolearm", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Jat Kittag", + "icon": "items/images/en/jat_kittag.37688018eac638eff7502f4389055926.png", + "thumb": "items/images/en/thumbs/jat_kittag.37688018eac638eff7502f4389055926.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd8", + "slug": "sonicor", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpAirPistol/CrpAirPistolArray", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.15, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Sonicor", + "icon": "items/images/en/sonicor.c2e7aba399d4ba904c4a4f83a75e9bd7.png", + "thumb": "items/images/en/thumbs/sonicor.c2e7aba399d4ba904c4a4f83a75e9bd7.128x128.png" + } + } + }, + { + "id": "5ced51e0cd3f0b0098a3862e", + "slug": "tombfinger", + "gameRef": "/Lotus/Weapons/SolarisUnited/Secondary/SUModularSecondarySet1/Barrel/SUModularSecondaryBarrelBPart", + "group": "kitgun", + "rivenType": "kitgun", + "disposition": 0.7, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Tombfinger", + "icon": "items/images/en/tombfinger.41a16c13af6ffc11463bbbc1668a1d38.png", + "thumb": "items/images/en/thumbs/tombfinger.41a16c13af6ffc11463bbbc1668a1d38.128x128.png" + } + } + }, + { + "id": "5ced51e2cd3f0b0098a3862f", + "slug": "gaze", + "gameRef": "/Lotus/Weapons/SolarisUnited/Secondary/SUModularSecondarySet1/Barrel/SUModularSecondaryBarrelDPart", + "group": "kitgun", + "rivenType": "kitgun", + "disposition": 0.9, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Gaze", + "icon": "items/images/en/gaze.94b19cdca4569789b6c1d51a1da91cdc.png", + "thumb": "items/images/en/thumbs/gaze.94b19cdca4569789b6c1d51a1da91cdc.128x128.png" + } + } + }, + { + "id": "5cf572509597e1019b1678c9", + "slug": "pupacyst", + "gameRef": "/Lotus/Weapons/Infested/Melee/Staff/InfStaff/InfStaff", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Pupacyst", + "icon": "items/images/en/pupacyst.e81790fba493f2bfbe96184c7cc7064d.png", + "thumb": "items/images/en/thumbs/pupacyst.e81790fba493f2bfbe96184c7cc7064d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd61", + "slug": "arca_plasmor", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpShotgun/CrpShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 0.95, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Arca Plasmor", + "icon": "riven_item/images/arca_plasmor.d992b822673f559b9b678ba1a7343002.png", + "thumb": "riven_item/images/thumbs/arca_plasmor.d992b822673f559b9b678ba1a7343002.128x128.png" + } + } + }, + { + "id": "5cf572579597e1019b1678d4", + "slug": "galvacord", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Whips/CrpShockGrip/CrpShockGripWhipWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Galvacord", + "icon": "items/images/en/galvacord.2140990c96c2fdd29ffeaec8279094f1.png", + "thumb": "items/images/en/thumbs/galvacord.2140990c96c2fdd29ffeaec8279094f1.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdba", + "slug": "bronco", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/HandShotGun", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 1.45, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Bronco", + "icon": "items/images/en/bronco.c0b39eda7929fefbe5cf7e377c603c3f.png", + "thumb": "items/images/en/thumbs/bronco.c0b39eda7929fefbe5cf7e377c603c3f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc0", + "slug": "dual_cestra", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CorpusMinigun/DualCorpusMinigun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Dual Cestra", + "icon": "riven_item/images/dual_cestra.c55565d7154d20796cbea06fc66a928f.png", + "thumb": "riven_item/images/thumbs/dual_cestra.c55565d7154d20796cbea06fc66a928f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc4", + "slug": "furis", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/AutoPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Furis", + "icon": "riven_item/images/furis.f2d9baed7db3eb0b5c9659ecee5cebe2.png", + "thumb": "riven_item/images/thumbs/furis.f2d9baed7db3eb0b5c9659ecee5cebe2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdec", + "slug": "ankyros", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Gauntlet/Gauntlet", + "group": "melee", + "rivenType": "melee", + "disposition": 1.5, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Ankyros", + "icon": "items/images/en/ankyros.56404bf846a2eeea24245932f1897a30.png", + "thumb": "items/images/en/thumbs/ankyros.56404bf846a2eeea24245932f1897a30.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdee", + "slug": "atterax", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerWhip/GrineerWhip", + "group": "melee", + "rivenType": "melee", + "disposition": 1.15, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Atterax", + "icon": "items/images/en/atterax.79855f62aaa825e425eed6f36b687aa5.png", + "thumb": "items/images/en/thumbs/atterax.79855f62aaa825e425eed6f36b687aa5.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf0", + "slug": "bo", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Staff/Staff", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Bo", + "icon": "items/images/en/bo.52ac556f0b623ced5cc7e489a7c6d060.png", + "thumb": "items/images/en/thumbs/bo.52ac556f0b623ced5cc7e489a7c6d060.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf4", + "slug": "cassowar", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/TnHalberdPolearm/TnHalberdPolearmWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Cassowar", + "icon": "items/images/en/cassowar.978e20cb98bf63a3d059c5883a99c3e6.png", + "thumb": "items/images/en/thumbs/cassowar.978e20cb98bf63a3d059c5883a99c3e6.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf6", + "slug": "ceramic_dagger", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Dagger/CeramicDagger", + "group": "melee", + "rivenType": "melee", + "disposition": 1.43, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Ceramic Dagger", + "icon": "items/images/en/ceramic_dagger.f32d32062b09723f6481fa1d8e79f5c2.png", + "thumb": "items/images/en/thumbs/ceramic_dagger.f32d32062b09723f6481fa1d8e79f5c2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe19", + "slug": "halikar", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnBoomerang/GrnBoomerang", + "group": "melee", + "rivenType": "melee", + "disposition": 1.44, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Halikar", + "icon": "items/images/en/halikar.2836e85660670e0b7faf4ee5e31ed435.png", + "thumb": "items/images/en/thumbs/halikar.2836e85660670e0b7faf4ee5e31ed435.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe1e", + "slug": "hirudo", + "gameRef": "/Lotus/Weapons/Infested/Melee/InfWFAccompanyingSparring/InfestedKogake", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Hirudo", + "icon": "items/images/en/hirudo.a056a643f7582517371f13a8cf0243ed.png", + "thumb": "items/images/en/thumbs/hirudo.a056a643f7582517371f13a8cf0243ed.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe31", + "slug": "mire", + "gameRef": "/Lotus/Weapons/Infested/Melee/Swords/Mire/MireSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Mire", + "icon": "items/images/en/mire.4bc449120b1046c370d6fbca3b3c5f2a.png", + "thumb": "items/images/en/thumbs/mire.4bc449120b1046c370d6fbca3b3c5f2a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe56", + "slug": "twin_krohkur", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnEgyptSwd/DualGrnEgyptSwdWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.2, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Twin Krohkur", + "icon": "items/images/en/twin_krohkur.15144cd22c339ffc5f0226c260f95a91.png", + "thumb": "items/images/en/thumbs/twin_krohkur.15144cd22c339ffc5f0226c260f95a91.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd81", + "slug": "latron", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/SemiAutoRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.4, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Latron", + "icon": "items/images/en/latron.80c8dcc71e135db8e2fb398c0204d1be.png", + "thumb": "items/images/en/thumbs/latron.80c8dcc71e135db8e2fb398c0204d1be.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd82", + "slug": "lenz", + "gameRef": "/Lotus/Weapons/Corpus/Bow/Longbow/CrpBow", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.05, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Lenz", + "icon": "items/images/en/lenz.c503188d5decb7208a86975a77881152.png", + "thumb": "items/images/en/thumbs/lenz.c503188d5decb7208a86975a77881152.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd83", + "slug": "miter", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerSawbladeGun/SawBladeGun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.5, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Miter", + "icon": "items/images/en/miter.6685ee070afd0ae6e10eff755ba6898b.png", + "thumb": "items/images/en/thumbs/miter.6685ee070afd0ae6e10eff755ba6898b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd84", + "slug": "mutalist_cernos", + "gameRef": "/Lotus/Weapons/Infested/Bow/InfCernosBow/InfCernos", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.35, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Mutalist Cernos", + "icon": "riven_item/images/mutalist_cernos.de5bd437b72e9c95f7cbc845769fbdfe.png", + "thumb": "riven_item/images/thumbs/mutalist_cernos.de5bd437b72e9c95f7cbc845769fbdfe.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd85", + "slug": "mutalist_quanta", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/InfCrpShockSwarm/InfCrpShockSwarmRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.5, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Mutalist Quanta", + "icon": "riven_item/images/mutalist_quanta.1bf95233f395adc4a44c46a23ed08c68.png", + "thumb": "riven_item/images/thumbs/mutalist_quanta.1bf95233f395adc4a44c46a23ed08c68.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd87", + "slug": "opticor", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpBFG/CrpBFG", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Opticor", + "icon": "items/images/en/opticor.5add59f5ba98aa6384eea9d7052943bf.png", + "thumb": "items/images/en/thumbs/opticor.5add59f5ba98aa6384eea9d7052943bf.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd88", + "slug": "panthera", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/Miter/TnoMiter", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.4, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Panthera", + "icon": "items/images/en/panthera.ee862561bf473b65df9fa58fbeaaa795.png", + "thumb": "items/images/en/thumbs/panthera.ee862561bf473b65df9fa58fbeaaa795.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd8b", + "slug": "penta", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/GrenadeLauncher/GrenadeLauncher", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.35, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Penta", + "icon": "items/images/en/penta.2d713f1bdcad43f90dd5691a8bb775e7.png", + "thumb": "items/images/en/thumbs/penta.2d713f1bdcad43f90dd5691a8bb775e7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd8c", + "slug": "phage", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/Tentacluster/InfestedShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.46, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Phage", + "icon": "items/images/en/phage.b0f3d7bd8b8f38805a316b46f00eb8fb.png", + "thumb": "items/images/en/thumbs/phage.b0f3d7bd8b8f38805a316b46f00eb8fb.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd8d", + "slug": "phantasma", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/RevenantShotgun/RevenantShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.05, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Phantasma", + "icon": "items/images/en/phantasma.f98d17ed4134d5528ed7f21429ef6006.png", + "thumb": "items/images/en/thumbs/phantasma.f98d17ed4134d5528ed7f21429ef6006.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd8e", + "slug": "quanta", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpShockRifle/CrpShockRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.4, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Quanta", + "icon": "items/images/en/quanta.a1b49d5f5d5c3c46b7f0cd130369559a.png", + "thumb": "items/images/en/thumbs/quanta.a1b49d5f5d5c3c46b7f0cd130369559a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd90", + "slug": "rubico", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/FiveShotSniper/FiveShotSniper", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.95, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Rubico", + "icon": "items/images/en/rubico.19654c8831d70f150f84be3f69b35a15.png", + "thumb": "items/images/en/thumbs/rubico.19654c8831d70f150f84be3f69b35a15.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd92", + "slug": "simulor", + "gameRef": "/Lotus/Weapons/Cephalon/Primary/CephPrimary/CephPrimary", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.25, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Simulor", + "icon": "items/images/en/simulor.b04c9a58fcb0b4802d67f39c5fc52732.png", + "thumb": "items/images/en/thumbs/simulor.b04c9a58fcb0b4802d67f39c5fc52732.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd93", + "slug": "snipetron", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/SniperRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Snipetron", + "icon": "items/images/en/snipetron.fc41509b5224da3e9fd0dd1b149133cf.png", + "thumb": "items/images/en/thumbs/snipetron.fc41509b5224da3e9fd0dd1b149133cf.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd94", + "slug": "sobek", + "gameRef": "/Lotus/Weapons/Tenno/Shotgun/DoubleBarrelShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.33, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Sobek", + "icon": "items/images/en/sobek.9835bb100ba5988d4aeb812230ab767a.png", + "thumb": "items/images/en/thumbs/sobek.9835bb100ba5988d4aeb812230ab767a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd96", + "slug": "stradavar", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TennoTommyGun/TennoTommyGunRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Stradavar", + "icon": "items/images/en/stradavar.e69dd79f2dc691327e6f5475c032e09c.png", + "thumb": "items/images/en/thumbs/stradavar.e69dd79f2dc691327e6f5475c032e09c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd97", + "slug": "strun", + "gameRef": "/Lotus/Weapons/Tenno/Shotgun/Shotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.4, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Strun", + "icon": "items/images/en/strun.e8cc2909f474436bb2573b8ba7ff43b7.png", + "thumb": "items/images/en/thumbs/strun.e8cc2909f474436bb2573b8ba7ff43b7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd99", + "slug": "sybaris", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnoLeverAction/TnoLeverActionRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Sybaris", + "icon": "riven_item/images/sybaris.5216e20cbf612b67bbe22a6c7c6b107e.png", + "thumb": "riven_item/images/thumbs/sybaris.5216e20cbf612b67bbe22a6c7c6b107e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd9c", + "slug": "tetra", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CorpusUMP/CorpusUMP", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.5, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Tetra", + "icon": "items/images/en/tetra.f86faf40614dc3d227cdd7766b27fddc.png", + "thumb": "items/images/en/thumbs/tetra.f86faf40614dc3d227cdd7766b27fddc.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc6", + "slug": "gammacor", + "gameRef": "/Lotus/Weapons/Syndicates/CephalonSuda/Pistols/CSDroidArray", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.15, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Gammacor", + "icon": "items/images/en/gammacor.6d4b35b6390c9dcf97ac45c7082f4999.png", + "thumb": "items/images/en/thumbs/gammacor.6d4b35b6390c9dcf97ac45c7082f4999.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd2", + "slug": "nukor", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrineerMicrowavegun/GrnMicrowavePistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.45, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Nukor", + "icon": "items/images/en/nukor.d4bffded3de6af3f2d6e420bd9e6a948.png", + "thumb": "items/images/en/thumbs/nukor.d4bffded3de6af3f2d6e420bd9e6a948.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd3", + "slug": "pandero", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnBardPistol/TnBardPistolGun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Pandero", + "icon": "items/images/en/pandero.e21b74806853bf80e2b3ca9fc4bdc635.png", + "thumb": "items/images/en/thumbs/pandero.e21b74806853bf80e2b3ca9fc4bdc635.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd4", + "slug": "pox", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfProximityStars/InfProximityStars", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Pox", + "icon": "items/images/en/pox.7ee16999c33c310ac4c87c8a31f6c551.png", + "thumb": "items/images/en/thumbs/pox.7ee16999c33c310ac4c87c8a31f6c551.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd5", + "slug": "pyrana", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/SawnOffShotgun/TennoHandShotgun", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 0.95, + "reqMasteryRank": 12, + "i18n": { + "en": { + "name": "Pyrana", + "icon": "items/images/en/pyrana.76c730b1909750965e34b2ca2e12da81.png", + "thumb": "items/images/en/thumbs/pyrana.76c730b1909750965e34b2ca2e12da81.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd7", + "slug": "sicarus", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/BurstPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Sicarus", + "icon": "items/images/en/sicarus.630099456411a4fc42c99708f1208200.png", + "thumb": "items/images/en/thumbs/sicarus.630099456411a4fc42c99708f1208200.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdda", + "slug": "spira", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/LiDagger/LiDagger", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Spira", + "icon": "riven_item/images/spira.ba156097272dd7bf205ff6cc49015c43.png", + "thumb": "riven_item/images/thumbs/spira.ba156097272dd7bf205ff6cc49015c43.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdfe", + "slug": "dehtat", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee01/Tip/TipFive", + "group": "zaw", + "rivenType": "zaw", + "disposition": 1.2, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Dehtat", + "icon": "items/images/en/dehtat.9a28bb6c6f0a1608301aea395a8e87c8.png", + "thumb": "items/images/en/thumbs/dehtat.9a28bb6c6f0a1608301aea395a8e87c8.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdff", + "slug": "destreza", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/TnoRapier/TnoRapier", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Destreza", + "icon": "items/images/en/destreza.4d34c03000e5462ae2a21c4306a731e0.png", + "thumb": "items/images/en/thumbs/destreza.4d34c03000e5462ae2a21c4306a731e0.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe00", + "slug": "dex_dakra", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/DexTheSecond/DexTheSecond", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Dex Dakra", + "icon": "riven_item/images/dex_dakra.bfa2fbc9398fd0db61a295f4bcff715d.png", + "thumb": "riven_item/images/thumbs/dex_dakra.bfa2fbc9398fd0db61a295f4bcff715d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe01", + "slug": "dokrahm", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee02/Tip/TipEleven", + "group": "zaw", + "rivenType": "zaw", + "disposition": 0.75, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Dokrahm", + "icon": "items/images/en/dokrahm.57b0f7d49c3389c9760481a8043e9e9f.png", + "thumb": "items/images/en/thumbs/dokrahm.57b0f7d49c3389c9760481a8043e9e9f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe02", + "slug": "dragon_nikana", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/KatanaAndWakizashi/LowKatana", + "group": "melee", + "rivenType": "melee", + "disposition": 1.15, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Dragon Nikana", + "icon": "riven_item/images/dragon_nikana.3525eba6c48fb62195e846bc8030b492.png", + "thumb": "riven_item/images/thumbs/dragon_nikana.3525eba6c48fb62195e846bc8030b492.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe03", + "slug": "dual_cleavers", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/DualCleaverWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.2, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Dual Cleavers", + "icon": "riven_item/images/dual_cleavers.376cee4cc5b1c3cc62e460710ceff5fc.png", + "thumb": "riven_item/images/thumbs/dual_cleavers.376cee4cc5b1c3cc62e460710ceff5fc.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe04", + "slug": "dual_ether", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualShortSword/DualEtherSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.45, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Dual Ether", + "icon": "riven_item/images/dual_ether.4b8f0d2adee9f4a36ba5efa60f176f5a.png", + "thumb": "riven_item/images/thumbs/dual_ether.4b8f0d2adee9f4a36ba5efa60f176f5a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe05", + "slug": "dual_heat_swords", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualShortSword/DualHeatSwords", + "group": "melee", + "rivenType": "melee", + "disposition": 1.44, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Dual Heat Swords", + "icon": "riven_item/images/dual_heat_swords.db32e731d487a5c4218f71108290cc06.png", + "thumb": "riven_item/images/thumbs/dual_heat_swords.db32e731d487a5c4218f71108290cc06.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe06", + "slug": "dual_ichor", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Axe/DualInfestedAxesWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Dual Ichor", + "icon": "riven_item/images/dual_ichor.e18da7cac99ec9154bc6ad895fc39185.png", + "thumb": "riven_item/images/thumbs/dual_ichor.e18da7cac99ec9154bc6ad895fc39185.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe08", + "slug": "dual_keres", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/QuillSword/QuillDualSwords", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Dual Keres", + "icon": "riven_item/images/dual_keres.0a93b2e4eab73c24e0fb4675f59f2781.png", + "thumb": "riven_item/images/thumbs/dual_keres.0a93b2e4eab73c24e0fb4675f59f2781.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe22", + "slug": "kama", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualKamas/SingleKama", + "group": "melee", + "rivenType": "melee", + "disposition": 1.47, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Kama", + "icon": "items/images/en/kama.4e5a6ecdb5d523f9684d104714655b9e.png", + "thumb": "items/images/en/thumbs/kama.4e5a6ecdb5d523f9684d104714655b9e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe26", + "slug": "kogake", + "gameRef": "/Lotus/Weapons/Tenno/Melee/BrassKnuckles/BrassKnuckles", + "group": "melee", + "rivenType": "melee", + "disposition": 1.46, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Kogake", + "icon": "items/images/en/kogake.f09fa04d9a65d621c0505649274db68a.png", + "thumb": "items/images/en/thumbs/kogake.f09fa04d9a65d621c0505649274db68a.128x128.png" + } + } + }, + { + "id": "5d70ebe17ea27b064d455074", + "slug": "multron", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetComponents/HextraWeapon", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Multron", + "icon": "items/images/en/multron.f4545cda5161c2db5d9168b71ff22114.png", + "thumb": "items/images/en/thumbs/multron.f4545cda5161c2db5d9168b71ff22114.128x128.png" + } + } + }, + { + "id": "5d70ebe17ea27b064d455075", + "slug": "vulcax", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetComponents/ThermocorMoaWeapon", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Vulcax", + "icon": "items/images/en/vulcax.3a56d04e6c430c9a8a1e6ad219a9a790.png", + "thumb": "items/images/en/thumbs/vulcax.3a56d04e6c430c9a8a1e6ad219a9a790.128x128.png" + } + } + }, + { + "id": "5dbe9b047ea27b0ffe3ca262", + "slug": "masseter", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/TnChiselKanabo/TnChiselKanabo", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Masseter", + "icon": "items/images/en/masseter.e61dbb2678e344be701b9d376c1bf3fc.png", + "thumb": "items/images/en/thumbs/masseter.e61dbb2678e344be701b9d376c1bf3fc.128x128.png" + } + } + }, + { + "id": "5dbe9b057ea27b0ffe3ca263", + "slug": "pathocyst", + "gameRef": "/Lotus/Weapons/Infested/Melee/InfBoomerang/InfBoomerangWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Pathocyst", + "icon": "items/images/en/pathocyst.f423b7a6a78d2e4780c1007f0f0fb464.png", + "thumb": "items/images/en/thumbs/pathocyst.f423b7a6a78d2e4780c1007f0f0fb464.128x128.png" + } + } + }, + { + "id": "5dbe9b057ea27b0ffe3ca265", + "slug": "kuva_chakkhurr", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnKuvaLichRifle/GrnKuvaLichRifleWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.9, + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Chakkhurr", + "icon": "riven_item/images/kuva_chakkhurr.c8ae46ec1358d74e80e1cad8c74fe62b.png", + "thumb": "riven_item/images/thumbs/kuva_chakkhurr.c8ae46ec1358d74e80e1cad8c74fe62b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe2b", + "slug": "lecta", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Whip/CorpusWhipWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Lecta", + "icon": "items/images/en/lecta.d6de28d017ed55fc6f5ee90db6e2c621.png", + "thumb": "items/images/en/thumbs/lecta.d6de28d017ed55fc6f5ee90db6e2c621.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe2d", + "slug": "machete", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/Machete", + "group": "melee", + "rivenType": "melee", + "disposition": 1.45, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Machete", + "icon": "items/images/en/machete.b871c145d37c3fdde5715fe80524101f.png", + "thumb": "items/images/en/thumbs/machete.b871c145d37c3fdde5715fe80524101f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe2e", + "slug": "magistar", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Maces/PaladinMace/PaladinMaceWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Magistar", + "icon": "items/images/en/magistar.3e7a9bed8a7c19ca24351b7a291ff6e7.png", + "thumb": "items/images/en/thumbs/magistar.3e7a9bed8a7c19ca24351b7a291ff6e7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe2f", + "slug": "mewan", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee01/Tip/TipThree", + "group": "zaw", + "rivenType": "zaw", + "disposition": 1.1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Mewan", + "icon": "items/images/en/mewan.96388512f768a99763561d0a410f62c5.png", + "thumb": "items/images/en/thumbs/mewan.96388512f768a99763561d0a410f62c5.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe30", + "slug": "mios", + "gameRef": "/Lotus/Weapons/Infested/Melee/Swords/Mios/Mios", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Mios", + "icon": "items/images/en/mios.da75e577f209d8954d9b44c80994f32e.png", + "thumb": "items/images/en/thumbs/mios.da75e577f209d8954d9b44c80994f32e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe41", + "slug": "rabvee", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee02/Tip/TipTen", + "group": "zaw", + "rivenType": "zaw", + "disposition": 1.3, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Rabvee", + "icon": "items/images/en/rabvee.a99b8ff88268ccd1a827bcacdd48fecf.png", + "thumb": "items/images/en/thumbs/rabvee.a99b8ff88268ccd1a827bcacdd48fecf.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe59", + "slug": "war", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoGreatSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "War", + "icon": "items/images/en/war.7273eef3bc28b2a6455ab57cbfb46006.png", + "thumb": "items/images/en/thumbs/war.7273eef3bc28b2a6455ab57cbfb46006.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe5b", + "slug": "artax", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/Gremlin", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Artax", + "icon": "items/images/en/artax.8a047393bd65e561eab11d568aa46c13.png", + "thumb": "items/images/en/thumbs/artax.8a047393bd65e561eab11d568aa46c13.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe5c", + "slug": "burst_laser", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/BurstLaserPistol", + "group": "sentinel", + "rivenType": "pistol", + "disposition": 1.45, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Burst Laser", + "icon": "items/images/en/burst_laser.a8d766d42aed74e71e246da778345604.png", + "thumb": "items/images/en/thumbs/burst_laser.a8d766d42aed74e71e246da778345604.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe5e", + "slug": "deth_machine_rifle", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/DethMachineRifle", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1.46, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Deth Machine Rifle", + "icon": "riven_item/images/deth_machine_rifle.996e6635b08ca2b916b00c3004c904b4.png", + "thumb": "riven_item/images/thumbs/deth_machine_rifle.996e6635b08ca2b916b00c3004c904b4.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe5f", + "slug": "laser_rifle", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/LaserRifle", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1.21, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Laser Rifle", + "icon": "items/images/en/laser_rifle.1be6c8b6ae0b5d7067871992fac7cfdd.png", + "thumb": "items/images/en/thumbs/laser_rifle.1be6c8b6ae0b5d7067871992fac7cfdd.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd63", + "slug": "astilla", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnGlassShotgun/TnGlassShotgunGun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.25, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Astilla", + "icon": "items/images/en/astilla.a172d60ec9a6cfe760c408f6a66fbbd4.png", + "thumb": "items/images/en/thumbs/astilla.a172d60ec9a6cfe760c408f6a66fbbd4.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd65", + "slug": "baza", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnSMG/TnSMGWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.05, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Baza", + "icon": "items/images/en/baza.e6765564311125de7ff2d24fa1c5f6cc.png", + "thumb": "items/images/en/thumbs/baza.e6765564311125de7ff2d24fa1c5f6cc.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd66", + "slug": "boar", + "gameRef": "/Lotus/Weapons/Tenno/Shotgun/FullAutoShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.45, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Boar", + "icon": "items/images/en/boar.9b6d1ef6c217e48180e3702ab0d4e6c8.png", + "thumb": "items/images/en/thumbs/boar.9b6d1ef6c217e48180e3702ab0d4e6c8.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd73", + "slug": "flux_rifle", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/CrpLaserRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.55, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Flux Rifle", + "icon": "riven_item/images/flux_rifle.715baa0ac2fcaa3d16a41c7622ad86ac.png", + "thumb": "riven_item/images/thumbs/flux_rifle.715baa0ac2fcaa3d16a41c7622ad86ac.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf8", + "slug": "cronus", + "gameRef": "/Lotus/Weapons/Tenno/Melee/CronusSword/CronusLongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.48, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Cronus", + "icon": "items/images/en/cronus.f32d32062b09723f6481fa1d8e79f5c2.png", + "thumb": "items/images/en/thumbs/cronus.f32d32062b09723f6481fa1d8e79f5c2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe0c", + "slug": "endura", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/ThreeLeaf/ThreeLeaf", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Endura", + "icon": "items/images/en/endura.7c0cbf05f44774e720900848d2333767.png", + "thumb": "items/images/en/thumbs/endura.7c0cbf05f44774e720900848d2333767.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe15", + "slug": "glaive", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Glaives/LightGlaive/LightGlaiveWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Glaive", + "icon": "items/images/en/glaive.7b1c251b4f1fcc0afe64ce5233a39891.png", + "thumb": "items/images/en/thumbs/glaive.7b1c251b4f1fcc0afe64ce5233a39891.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe1c", + "slug": "heat_sword", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/HeatSword/HeatLongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.48, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Heat Sword", + "icon": "items/images/en/heat_sword.37ec8d825dc0fbc83d951149ff3ba8b6.png", + "thumb": "items/images/en/thumbs/heat_sword.37ec8d825dc0fbc83d951149ff3ba8b6.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe20", + "slug": "jat_kusar", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnKusarigama/GrnKusarigamaWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.2, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Jat Kusar", + "icon": "items/images/en/jat_kusar.1b8964cd6faa0ed9a27c39eb5e5d795f.png", + "thumb": "items/images/en/thumbs/jat_kusar.1b8964cd6faa0ed9a27c39eb5e5d795f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe32", + "slug": "nami_skyla", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/CutlassAndPoignard/CutlassPoignardSwords", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Nami Skyla", + "icon": "riven_item/images/nami_skyla.29176d53b6ce46afda32cdc292b391ad.png", + "thumb": "riven_item/images/thumbs/nami_skyla.29176d53b6ce46afda32cdc292b391ad.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe33", + "slug": "nami_solo", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/CutlassAndPoignard/TennoCutlass", + "group": "melee", + "rivenType": "melee", + "disposition": 1.43, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Nami Solo", + "icon": "riven_item/images/nami_solo.daf0c2684b5d12b9e8ca2ff0958b405d.png", + "thumb": "riven_item/images/thumbs/nami_solo.daf0c2684b5d12b9e8ca2ff0958b405d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe34", + "slug": "nikana", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/KatanaAndWakizashi/Katana", + "group": "melee", + "rivenType": "melee", + "disposition": 0.95, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Nikana", + "icon": "items/images/en/nikana.ded47e934d4f2051d9a89bcf017cdfca.png", + "thumb": "items/images/en/thumbs/nikana.ded47e934d4f2051d9a89bcf017cdfca.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe35", + "slug": "ninkondi", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Nunchaku/Nunchaku/Nunchaku", + "group": "melee", + "rivenType": "melee", + "disposition": 1.41, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Ninkondi", + "icon": "items/images/en/ninkondi.390943b9c551749e19d348e2e8950ae1.png", + "thumb": "items/images/en/thumbs/ninkondi.390943b9c551749e19d348e2e8950ae1.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe36", + "slug": "obex", + "gameRef": "/Lotus/Weapons/Corpus/Melee/KickAndPunch/KickPunchWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Obex", + "icon": "items/images/en/obex.40b015303d936acebc71e5430dd85367.png", + "thumb": "items/images/en/thumbs/obex.40b015303d936acebc71e5430dd85367.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe37", + "slug": "ohma", + "gameRef": "/Lotus/Weapons/Corpus/Melee/CrpTonfa/CrpTonfa", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Ohma", + "icon": "items/images/en/ohma.44487796f209ddbbc355edcf60619800.png", + "thumb": "items/images/en/thumbs/ohma.44487796f209ddbbc355edcf60619800.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe38", + "slug": "okina", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/TennoSai/TennoSais", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Okina", + "icon": "items/images/en/okina.46be8af0b880aa60168c0988ad64ea19.png", + "thumb": "items/images/en/thumbs/okina.46be8af0b880aa60168c0988ad64ea19.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe39", + "slug": "ooltha", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee01/Tip/TipTwo", + "group": "zaw", + "rivenType": "zaw", + "disposition": 1.25, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Ooltha", + "icon": "items/images/en/ooltha.e13df69ef5130d9335f2bd364599ae86.png", + "thumb": "items/images/en/thumbs/ooltha.e13df69ef5130d9335f2bd364599ae86.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe3a", + "slug": "orthos", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/PolearmWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Orthos", + "icon": "items/images/en/orthos.7e3529cd44b8e270233180b907f72a1d.png", + "thumb": "items/images/en/thumbs/orthos.7e3529cd44b8e270233180b907f72a1d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe3b", + "slug": "orvius", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Glaives/TeshinGlaive/TnTeshinGlaiveWep", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Orvius", + "icon": "items/images/en/orvius.dfeabc5bbe31c5c3f253d8a20f2a40b2.png", + "thumb": "items/images/en/thumbs/orvius.dfeabc5bbe31c5c3f253d8a20f2a40b2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe3c", + "slug": "pangolin_sword", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PangolinSword/PangolinLongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.47, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Pangolin Sword", + "icon": "riven_item/images/pangolin_sword.f47fec884e189d952e37d6b184901eb9.png", + "thumb": "riven_item/images/thumbs/pangolin_sword.f47fec884e189d952e37d6b184901eb9.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe3d", + "slug": "plague_keewar", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMeleeInfested/Tips/PvPVariantInfestedTipTwo", + "group": "zaw", + "rivenType": "zaw", + "disposition": 0.75, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Plague Keewar", + "icon": "riven_item/images/plague_keewar.b5e3ceedb8d0ff5ed2defa788e484805.png", + "thumb": "riven_item/images/thumbs/plague_keewar.b5e3ceedb8d0ff5ed2defa788e484805.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe3e", + "slug": "plague_kripath", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMeleeInfested/Tips/PvPVariantInfestedTipOne", + "group": "zaw", + "rivenType": "zaw", + "disposition": 0.6, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Plague Kripath", + "icon": "riven_item/images/plague_kripath.00191263224f5e5d1ed7957631073fa6.png", + "thumb": "riven_item/images/thumbs/plague_kripath.00191263224f5e5d1ed7957631073fa6.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe3f", + "slug": "plasma_sword", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/PlasmaSword/PlasmaLongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.48, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Plasma Sword", + "icon": "items/images/en/plasma_sword.89dee5321cc774df8fbbd818b844e193.png", + "thumb": "items/images/en/thumbs/plasma_sword.89dee5321cc774df8fbbd818b844e193.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe40", + "slug": "prova", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/ElectroProd", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Prova", + "icon": "items/images/en/prova.81054da7c6c20e79abd36521923fa925.png", + "thumb": "items/images/en/thumbs/prova.81054da7c6c20e79abd36521923fa925.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe43", + "slug": "redeemer", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Gunblade/TnoGunblade", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Redeemer", + "icon": "items/images/en/redeemer.b39a80a47d3b0df5056bd07b5e277af8.png", + "thumb": "items/images/en/thumbs/redeemer.b39a80a47d3b0df5056bd07b5e277af8.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe4f", + "slug": "skana", + "gameRef": "/Lotus/Weapons/Tenno/Melee/LongSword/LongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Skana", + "icon": "items/images/en/skana.5b98dcf4cb92f1d6fab21a56d365fcc0.png", + "thumb": "items/images/en/thumbs/skana.5b98dcf4cb92f1d6fab21a56d365fcc0.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd78", + "slug": "harpak", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnHarpoonGun/GrnHarpoonGun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.55, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Harpak", + "icon": "items/images/en/harpak.948d1817c05097ff14a16639dbcd5bb2.png", + "thumb": "items/images/en/thumbs/harpak.948d1817c05097ff14a16639dbcd5bb2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd7a", + "slug": "hema", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/InfWFAccompanyingPri/InfestedBurstRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Hema", + "icon": "items/images/en/hema.4cc3a2ff4a815c7dfdb07a514a883b82.png", + "thumb": "items/images/en/thumbs/hema.4cc3a2ff4a815c7dfdb07a514a883b82.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd7b", + "slug": "hind", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/BurstRifle/GrnBurstRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.42, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Hind", + "icon": "items/images/en/hind.c12777c936ceac97a065a03a655a750e.png", + "thumb": "items/images/en/thumbs/hind.c12777c936ceac97a065a03a655a750e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd7c", + "slug": "ignis", + "gameRef": "/Lotus/Weapons/ClanTech/Chemical/FlameThrower", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.6, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Ignis", + "icon": "items/images/en/ignis.5b4369035d619c37fed2ecbdafb7594a.png", + "thumb": "items/images/en/thumbs/ignis.5b4369035d619c37fed2ecbdafb7594a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd7d", + "slug": "javlok", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnFlameSpear/GrnFlameSpear", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Javlok", + "icon": "items/images/en/javlok.c389afeba8aac67aadb738377bdb4ec8.png", + "thumb": "items/images/en/thumbs/javlok.c389afeba8aac67aadb738377bdb4ec8.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd7e", + "slug": "karak", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerM16Homage/GrineerM16Rifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.35, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Karak", + "icon": "items/images/en/karak.bbe0d895125d9c2b3b612c34a5e611f3.png", + "thumb": "items/images/en/thumbs/karak.bbe0d895125d9c2b3b612c34a5e611f3.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd7f", + "slug": "kohm", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnSpark/GrnSparkRifle", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.3, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Kohm", + "icon": "items/images/en/kohm.361a454b487f45e05ef7c884a6a0dad2.png", + "thumb": "items/images/en/thumbs/kohm.361a454b487f45e05ef7c884a6a0dad2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd80", + "slug": "lanka", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/Railgun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.05, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Lanka", + "icon": "items/images/en/lanka.fc41509b5224da3e9fd0dd1b149133cf.png", + "thumb": "items/images/en/thumbs/lanka.fc41509b5224da3e9fd0dd1b149133cf.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd8a", + "slug": "paris", + "gameRef": "/Lotus/Weapons/Tenno/Bows/HuntingBow", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.4, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Paris", + "icon": "items/images/en/paris.644a8cdf6a49b88e7df042cbac294e15.png", + "thumb": "items/images/en/thumbs/paris.644a8cdf6a49b88e7df042cbac294e15.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd8f", + "slug": "quartakk", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnFourBarrelRifle/GrnFourBarrelRifleWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.25, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Quartakk", + "icon": "items/images/en/quartakk.3c94922cd929ce60e3a6acbb6a47bea9.png", + "thumb": "items/images/en/thumbs/quartakk.3c94922cd929ce60e3a6acbb6a47bea9.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd91", + "slug": "scourge", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnPriestSpear/TnPriestSpearGun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.2, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Scourge", + "icon": "items/images/en/scourge.055569ef8aba07d2c53fc3f82390c482.png", + "thumb": "items/images/en/thumbs/scourge.055569ef8aba07d2c53fc3f82390c482.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd9", + "slug": "spectra", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/CrpLaserPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.49, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Spectra", + "icon": "items/images/en/spectra.2d58d17ca4cad3d43d7e373294a6c7ce.png", + "thumb": "items/images/en/thumbs/spectra.2d58d17ca4cad3d43d7e373294a6c7ce.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fddb", + "slug": "staticor", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpElectroMag/CrpElectroMag", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.9, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Staticor", + "icon": "items/images/en/staticor.7f88069ac20fd028ff8c5d3bc8cd8057.png", + "thumb": "items/images/en/thumbs/staticor.7f88069ac20fd028ff8c5d3bc8cd8057.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fddc", + "slug": "stubba", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrnUzi/GrnUziWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Stubba", + "icon": "items/images/en/stubba.6d4ac00860e711de12a9c746113fe987.png", + "thumb": "items/images/en/thumbs/stubba.6d4ac00860e711de12a9c746113fe987.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fddd", + "slug": "stug", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrineerCrossbow/GrineerGooGun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.48, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Stug", + "icon": "items/images/en/stug.dc2ff3e23d19a9c4657316879ed40033.png", + "thumb": "items/images/en/thumbs/stug.dc2ff3e23d19a9c4657316879ed40033.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdde", + "slug": "talons", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/U18ThrowingKnives/U18throwingknives", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.44, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Talons", + "icon": "items/images/en/talons.a4e7d6091b69a8e27d9bb572c58df3ff.png", + "thumb": "items/images/en/thumbs/talons.a4e7d6091b69a8e27d9bb572c58df3ff.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fddf", + "slug": "twin_grakatas", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/TwinGrakatas", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Twin Grakatas", + "icon": "items/images/en/twin_grakatas.02ca4e72db844e9787bb834dffaba710.png", + "thumb": "items/images/en/thumbs/twin_grakatas.02ca4e72db844e9787bb834dffaba710.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde0", + "slug": "twin_gremlins", + "gameRef": "/Lotus/Weapons/Grineer/GrineerPistol/GrineerAkimboPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Twin Gremlins", + "icon": "items/images/en/twin_gremlins.36127609f284a9c973fcedd340d45187.png", + "thumb": "items/images/en/thumbs/twin_gremlins.36127609f284a9c973fcedd340d45187.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde1", + "slug": "twin_kohmak", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrnDWUniques/GrnTwinKohmaks", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 1.25, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Twin Kohmak", + "icon": "items/images/en/twin_kohmak.358010434239192a9d8adfa3c3a85333.png", + "thumb": "items/images/en/thumbs/twin_kohmak.358010434239192a9d8adfa3c3a85333.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde2", + "slug": "twin_rogga", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrnQueenGuardDualPistol/GrnQueenGuardDualPistols", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 1.3, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Twin Rogga", + "icon": "items/images/en/twin_rogga.0b8d505d6436e04c8a99c1ccf99ac3da.png", + "thumb": "items/images/en/thumbs/twin_rogga.0b8d505d6436e04c8a99c1ccf99ac3da.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde3", + "slug": "twin_vipers", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/AkimboViperPistols", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.45, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Twin Vipers", + "icon": "items/images/en/twin_vipers.1c0e4335bf0f64303f2e469cfa10022b.png", + "thumb": "items/images/en/thumbs/twin_vipers.1c0e4335bf0f64303f2e469cfa10022b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde4", + "slug": "tysis", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfestedDartPistol/InfestedDartPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.45, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Tysis", + "icon": "items/images/en/tysis.9d80f73358c18d058b92787dd54d704d.png", + "thumb": "items/images/en/thumbs/tysis.9d80f73358c18d058b92787dd54d704d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde5", + "slug": "vasto", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/RevolverPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.4, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Vasto", + "icon": "items/images/en/vasto.cab25e30e10e1a8d9fbe3a487bd7b9f2.png", + "thumb": "items/images/en/thumbs/vasto.cab25e30e10e1a8d9fbe3a487bd7b9f2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde6", + "slug": "viper", + "gameRef": "/Lotus/Weapons/Grineer/GrineerPistol/GrineerLightPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.45, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Viper", + "icon": "items/images/en/viper.9da1c64daaf6ee8ab90d81cfb7f5598d.png", + "thumb": "items/images/en/thumbs/viper.9da1c64daaf6ee8ab90d81cfb7f5598d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde8", + "slug": "zylok", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/ConclaveLeverPistol/ConclaveLeverPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Zylok", + "icon": "items/images/en/zylok.fa578a9c8fa46de167ff200523b6276c.png", + "thumb": "items/images/en/thumbs/zylok.fa578a9c8fa46de167ff200523b6276c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdfa", + "slug": "dakra_prime", + "gameRef": "/Lotus/Weapons/Tenno/Melee/CronusSword/PrimeCronusLongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Dakra Prime", + "icon": "riven_item/images/dakra_prime.34da279951b92713480d09bdbf7104b7.png", + "thumb": "riven_item/images/thumbs/dakra_prime.34da279951b92713480d09bdbf7104b7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdfb", + "slug": "dark_dagger", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Dagger/DarkDagger", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Dark Dagger", + "icon": "items/images/en/dark_dagger.bbd0865d2a2bb1c399b80c6170f37c2d.png", + "thumb": "items/images/en/thumbs/dark_dagger.bbd0865d2a2bb1c399b80c6170f37c2d.128x128.png" + } + } + }, + { + "id": "5dc2d8bbff08fd007d021a44", + "slug": "kuva_twin_stubbas", + "gameRef": "/Lotus/Weapons/Grineer/KuvaLich/Secondaries/Stubba/KuvaStubba", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.85, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Kuva Twin Stubbas", + "icon": "riven_item/images/kuva_twin_stubbas.dc0f04384096b1b10ffd15a4a65bf2fb.png", + "thumb": "riven_item/images/thumbs/kuva_twin_stubbas.dc0f04384096b1b10ffd15a4a65bf2fb.128x128.png" + } + } + }, + { + "id": "5e02154d14569703bf43e548", + "slug": "pennant", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/TnRailjackGreatKatana/TnRailJackGreatKatanaWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.9, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Pennant", + "icon": "items/images/en/pennant.c466162ce14d3ae4acbf5ccae316026c.png", + "thumb": "items/images/en/thumbs/pennant.c466162ce14d3ae4acbf5ccae316026c.128x128.png" + } + } + }, + { + "id": "5e41458f7b0275011bc5b7cc", + "slug": "kuva_bramma", + "gameRef": "/Lotus/Weapons/Grineer/Bows/GrnBow/GrnBowWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.65, + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Kuva Bramma", + "icon": "riven_item/images/kuva_bramma.11b49af045d8c2594e41fffd4490c73f.png", + "thumb": "riven_item/images/thumbs/kuva_bramma.11b49af045d8c2594e41fffd4490c73f.128x128.png" + } + } + }, + { + "id": "5ee7dea904d55c0b2614f571", + "slug": "stropha", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Gunblade/CrpGunBlade/CrpGunbladeWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.6, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Stropha", + "icon": "items/images/en/stropha.08c23ce01edf041f6204aa470f8f12c9.png", + "thumb": "items/images/en/thumbs/stropha.08c23ce01edf041f6204aa470f8f12c9.128x128.png" + } + } + }, + { + "id": "5fb847a0c34da30068f912bd", + "slug": "morgha", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechGrenadeLaunch/ThanoTechGrenadeLauncher", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Morgha", + "icon": "items/images/en/morgha.afc1c19230048e45ab0813aa68a996d1.png", + "thumb": "items/images/en/thumbs/morgha.afc1c19230048e45ab0813aa68a996d1.128x128.png" + } + } + }, + { + "id": "5fb847a0c34da30068f912be", + "slug": "catabolyst", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfBeamPistol/InfBeamPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Catabolyst", + "icon": "riven_item/images/catabolyst.176976251f7674bbe864356f3ebbe1fd.png", + "thumb": "riven_item/images/thumbs/catabolyst.176976251f7674bbe864356f3ebbe1fd.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc7", + "slug": "hikou", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/TennoStars", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.3, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Hikou", + "icon": "items/images/en/hikou.193c15fbaf82f2391dc78cc7d64cf16f.png", + "thumb": "items/images/en/thumbs/hikou.193c15fbaf82f2391dc78cc7d64cf16f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdc9", + "slug": "knell", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnPriestPistolScope/TnPriestPistolWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Knell", + "icon": "items/images/en/knell.9a97c9771a12c761b115a2db54c82481.png", + "thumb": "items/images/en/thumbs/knell.9a97c9771a12c761b115a2db54c82481.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdca", + "slug": "kohmak", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrnKohmPistol/GrnKohmPistol", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 1.35, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Kohmak", + "icon": "items/images/en/kohmak.eb021126188f25d7e5d136e10a35f6b5.png", + "thumb": "items/images/en/thumbs/kohmak.eb021126188f25d7e5d136e10a35f6b5.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdcb", + "slug": "kraken", + "gameRef": "/Lotus/Weapons/Grineer/GrineerPistol/GrnHeavyPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.53, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Kraken", + "icon": "items/images/en/kraken.8a24a27094e9102e359200fdffe3fab7.png", + "thumb": "items/images/en/thumbs/kraken.8a24a27094e9102e359200fdffe3fab7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdcd", + "slug": "kunai", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/Kunai", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.51, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Kunai", + "icon": "items/images/en/kunai.4ebd6a5b7383356584c275fbdf34c9e3.png", + "thumb": "items/images/en/thumbs/kunai.4ebd6a5b7383356584c275fbdf34c9e3.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdcf", + "slug": "lex", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/HeavyPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Lex", + "icon": "items/images/en/lex.7f92c6b8ee87ab528af27c1821fdbb9f.png", + "thumb": "items/images/en/thumbs/lex.7f92c6b8ee87ab528af27c1821fdbb9f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd1", + "slug": "marelok", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrineerLeverActionPistol/GLAPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Marelok", + "icon": "items/images/en/marelok.71aee4b391af97aa2376fe28d24fdf26.png", + "thumb": "items/images/en/thumbs/marelok.71aee4b391af97aa2376fe28d24fdf26.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf2", + "slug": "broken_scepter", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnQueenSceptre/GrnQueenSceptreWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Broken Scepter", + "icon": "items/images/en/broken_scepter.9412cd26613aca64d75a63330b444d31.png", + "thumb": "items/images/en/thumbs/broken_scepter.9412cd26613aca64d75a63330b444d31.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe0b", + "slug": "dual_zoren", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Axe/DualAxeWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.44, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Dual Zoren", + "icon": "riven_item/images/dual_zoren.200bb76dd57b17d1c9da6c21645fd42c.png", + "thumb": "riven_item/images/thumbs/dual_zoren.200bb76dd57b17d1c9da6c21645fd42c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe0d", + "slug": "ether_daggers", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualDagger/DualEtherDagger", + "group": "melee", + "rivenType": "melee", + "disposition": 1.49, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Ether Daggers", + "icon": "riven_item/images/ether_daggers.10073a53eadf3eef92bdbbe55b19bace.png", + "thumb": "riven_item/images/thumbs/ether_daggers.10073a53eadf3eef92bdbbe55b19bace.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe0e", + "slug": "ether_reaper", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Scythe/EtherScytheWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.45, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Ether Reaper", + "icon": "riven_item/images/ether_reaper.3eca2ba4f605744704c3c6b1b8a8cf8b.png", + "thumb": "riven_item/images/thumbs/ether_reaper.3eca2ba4f605744704c3c6b1b8a8cf8b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe0f", + "slug": "ether_sword", + "gameRef": "/Lotus/Weapons/Tenno/Melee/LongSword/EtherSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.44, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Ether Sword", + "icon": "riven_item/images/ether_sword.d12cfe31514386723ebda1e804ca33c9.png", + "thumb": "riven_item/images/thumbs/ether_sword.d12cfe31514386723ebda1e804ca33c9.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe10", + "slug": "fang", + "gameRef": "/Lotus/Weapons/Tenno/Melee/DualDagger/DualDagger", + "group": "melee", + "rivenType": "melee", + "disposition": 1.36, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Fang", + "icon": "items/images/en/fang.e9cd7e9f9a5c2ffb3b2a84485d9a34af.png", + "thumb": "items/images/en/thumbs/fang.e9cd7e9f9a5c2ffb3b2a84485d9a34af.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe12", + "slug": "furax", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Fist/Fist", + "group": "melee", + "rivenType": "melee", + "disposition": 1.38, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Furax", + "icon": "items/images/en/furax.3192073e79805e28de48aded8faf2f2c.png", + "thumb": "items/images/en/thumbs/furax.3192073e79805e28de48aded8faf2f2c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe23", + "slug": "karyst", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/KrisDagger/KrisDagger", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Karyst", + "icon": "items/images/en/karyst.6c88b8b1ffdd6dbd5e71d1443ddd8bb2.png", + "thumb": "items/images/en/thumbs/karyst.6c88b8b1ffdd6dbd5e71d1443ddd8bb2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe60", + "slug": "stinger", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/SentBioWeapon", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1.32, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Stinger", + "icon": "items/images/en/stinger.c06e66fa90e9b3ae8949992459763beb.png", + "thumb": "items/images/en/thumbs/stinger.c06e66fa90e9b3ae8949992459763beb.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe62", + "slug": "vulklok", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/SentElecRailgun", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1.25, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Vulklok", + "icon": "items/images/en/vulklok.afb2dead96611511849d92327fc00996.png", + "thumb": "items/images/en/thumbs/vulklok.afb2dead96611511849d92327fc00996.128x128.png" + } + } + }, + { + "id": "5ced51decd3f0b0098a3862c", + "slug": "catchmoon", + "gameRef": "/Lotus/Weapons/SolarisUnited/Secondary/SUModularSecondarySet1/Barrel/SUModularSecondaryBarrelAPart", + "group": "kitgun", + "rivenType": "kitgun", + "disposition": 0.65, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Catchmoon", + "icon": "riven_item/images/catchmoon.971ee1945ce27bc5bb644d1937581191.png", + "thumb": "riven_item/images/thumbs/catchmoon.971ee1945ce27bc5bb644d1937581191.128x128.png" + } + } + }, + { + "id": "5cf572529597e1019b1678cb", + "slug": "plinx", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpSonificBlastor/CrpBlastorWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Plinx", + "icon": "items/images/en/plinx.cf7698c478e44f83968e66f21a1558ae.png", + "thumb": "items/images/en/thumbs/plinx.cf7698c478e44f83968e66f21a1558ae.128x128.png" + } + } + }, + { + "id": "5cf572529597e1019b1678cc", + "slug": "korrudo", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnSparring/GrnSpiderSparring/GrnSpiderSparring", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Korrudo", + "icon": "items/images/en/korrudo.2f569c1c1ba03172278a5f3e88358aed.png", + "thumb": "items/images/en/thumbs/korrudo.2f569c1c1ba03172278a5f3e88358aed.128x128.png" + } + } + }, + { + "id": "5cf572539597e1019b1678cd", + "slug": "fulmin", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnWispRifle/TnWispRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.9, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Fulmin", + "icon": "items/images/en/fulmin.f2e4fae730960f6c0617577ea0f496ad.png", + "thumb": "items/images/en/thumbs/fulmin.f2e4fae730960f6c0617577ea0f496ad.128x128.png" + } + } + }, + { + "id": "5cf572549597e1019b1678ce", + "slug": "cobra_and_crane", + "gameRef": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/PacifistShieldAndSword/PacifistShieldSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Cobra & Crane", + "icon": "riven_item/images/cobra_and_crane.41a0914a2e6890b42e7ab2175a8d9c1c.png", + "thumb": "riven_item/images/thumbs/cobra_and_crane.41a0914a2e6890b42e7ab2175a8d9c1c.128x128.png" + } + } + }, + { + "id": "5cf572549597e1019b1678d0", + "slug": "komorex", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpSentAmlgSniper/CrpSentAmlgSniper", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Komorex", + "icon": "items/images/en/komorex.a6b6018eca915e11179a2bf29b55d3ea.png", + "thumb": "items/images/en/thumbs/komorex.a6b6018eca915e11179a2bf29b55d3ea.128x128.png" + } + } + }, + { + "id": "5cf572559597e1019b1678d2", + "slug": "cyanex", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpSentAmalgPistol/CrpSentAmalgPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Cyanex", + "icon": "items/images/en/cyanex.286f84f86986ce93a3a47f5fee6ee18d.png", + "thumb": "items/images/en/thumbs/cyanex.286f84f86986ce93a3a47f5fee6ee18d.128x128.png" + } + } + }, + { + "id": "5cf572579597e1019b1678d5", + "slug": "tatsu", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/TnTwoHandedKatana/TnTwoHandedKatana", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Tatsu", + "icon": "riven_item/images/tatsu.7c620e4ccaf9d3c7ee56d8156c77d09f.png", + "thumb": "riven_item/images/thumbs/tatsu.7c620e4ccaf9d3c7ee56d8156c77d09f.128x128.png" + } + } + }, + { + "id": "5cfe91738be64500e4430cdc", + "slug": "cyngas", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchBurstGun/ArchBurstGun", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Cyngas", + "icon": "items/images/en/cyngas.06e5a46f3d3b985ce51c8154c0325088.png", + "thumb": "items/images/en/thumbs/cyngas.06e5a46f3d3b985ce51c8154c0325088.128x128.png" + } + } + }, + { + "id": "5cfe91748be64500e4430cdd", + "slug": "larkspur", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/TnShieldframeArchGun/TnShieldFrameArchGun", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.05, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Larkspur", + "icon": "items/images/en/larkspur.dd276ff94db2ebbc9cc778ee03db8d71.png", + "thumb": "items/images/en/thumbs/larkspur.dd276ff94db2ebbc9cc778ee03db8d71.128x128.png" + } + } + }, + { + "id": "5cfe91768be64500e4430cde", + "slug": "imperator", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/FoldingMachineGun/ArchMachineGun", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Imperator", + "icon": "items/images/en/imperator.ca5c50909c6e4d40fc93fa5e9a525897.png", + "thumb": "items/images/en/thumbs/imperator.ca5c50909c6e4d40fc93fa5e9a525897.128x128.png" + } + } + }, + { + "id": "5cfe91788be64500e4430cdf", + "slug": "corvas", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/LaunchGrenade/ArchCannon", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.2, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Corvas", + "icon": "items/images/en/corvas.2eb50d3296c78f3875e5e95f45fac275.png", + "thumb": "items/images/en/thumbs/corvas.2eb50d3296c78f3875e5e95f45fac275.128x128.png" + } + } + }, + { + "id": "5cfe91798be64500e4430ce1", + "slug": "phaedra", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchLongRifle/ArchLongRifle", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.25, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Phaedra", + "icon": "items/images/en/phaedra.990089ecdb2751f628e24bfe0493059e.png", + "thumb": "items/images/en/thumbs/phaedra.990089ecdb2751f628e24bfe0493059e.128x128.png" + } + } + }, + { + "id": "5cfe917a8be64500e4430ce2", + "slug": "grattler", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/RepurposedGrineerAntiAircraftGun/ArchGRNAAGun", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Grattler", + "icon": "items/images/en/grattler.1332aad0c83155f87a1caeac7bb93fc4.png", + "thumb": "items/images/en/thumbs/grattler.1332aad0c83155f87a1caeac7bb93fc4.128x128.png" + } + } + }, + { + "id": "5cfe917d8be64500e4430ce4", + "slug": "dual_decurion", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchwingHeavyPistols/ArchHeavyPistols", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 1, + "i18n": { + "en": { + "name": "Dual Decurion", + "icon": "riven_item/images/dual_decurion.c38ff4f5a6e811f42c54fd0d15144942.png", + "thumb": "riven_item/images/thumbs/dual_decurion.c38ff4f5a6e811f42c54fd0d15144942.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd64", + "slug": "attica", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnoPrmryXbow/TnoPrmryXbowWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.42, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Attica", + "icon": "items/images/en/attica.d75ddb584fa9ea3cd44f20c09e121cda.png", + "thumb": "items/images/en/thumbs/attica.d75ddb584fa9ea3cd44f20c09e121cda.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd67", + "slug": "boltor", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/BoltoRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Boltor", + "icon": "items/images/en/boltor.b00dd8933257acaab1936c88e345edfc.png", + "thumb": "items/images/en/thumbs/boltor.b00dd8933257acaab1936c88e345edfc.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd68", + "slug": "braton", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/Rifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.35, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Braton", + "icon": "items/images/en/braton.139748d7e02e1d7370a0641ec81f4e2a.png", + "thumb": "items/images/en/thumbs/braton.139748d7e02e1d7370a0641ec81f4e2a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd6d", + "slug": "corinth", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnHeavyShotgun/TnHeavyShotgunGun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.15, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Corinth", + "icon": "items/images/en/corinth.1c30d611482746b4c0a4ef2d83be750c.png", + "thumb": "items/images/en/thumbs/corinth.1c30d611482746b4c0a4ef2d83be750c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd72", + "slug": "ferrox", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/Spears/Railgun/CorpusRailgun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.25, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Ferrox", + "icon": "items/images/en/ferrox.5a29b2afc0382ce4f85d78dc9d086c2c.png", + "thumb": "items/images/en/thumbs/ferrox.5a29b2afc0382ce4f85d78dc9d086c2c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd79", + "slug": "hek", + "gameRef": "/Lotus/Weapons/Tenno/Shotgun/QuadShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.2, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Hek", + "icon": "items/images/en/hek.01deb97da07d4680bf7db7111d6fb533.png", + "thumb": "items/images/en/thumbs/hek.01deb97da07d4680bf7db7111d6fb533.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd86", + "slug": "ogris", + "gameRef": "/Lotus/Weapons/ClanTech/Chemical/RocketLauncher", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Ogris", + "icon": "items/images/en/ogris.9155e81ec783c0afd68646499883b17c.png", + "thumb": "items/images/en/thumbs/ogris.9155e81ec783c0afd68646499883b17c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd89", + "slug": "paracyst", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/QuantaFullyInfested/InfQuantaRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.31, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Paracyst", + "icon": "items/images/en/paracyst.c81528e565a7651b7a7d809e9a8f2974.png", + "thumb": "items/images/en/thumbs/paracyst.c81528e565a7651b7a7d809e9a8f2974.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd98", + "slug": "supra", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/CrpHeavyRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 12, + "i18n": { + "en": { + "name": "Supra", + "icon": "items/images/en/supra.f1e9cbaf71eff60771de3aa57a9596f4.png", + "thumb": "items/images/en/thumbs/supra.f1e9cbaf71eff60771de3aa57a9596f4.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd9b", + "slug": "tenora", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnBardRifle/TnBardRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Tenora", + "icon": "items/images/en/tenora.19b00a342112d86c188adc35be697eda.png", + "thumb": "items/images/en/thumbs/tenora.19b00a342112d86c188adc35be697eda.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd9d", + "slug": "tiberon", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/DrakeRifle/DrakeRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Tiberon", + "icon": "items/images/en/tiberon.d3bd3db70fcc6bd97713419f1ac222e3.png", + "thumb": "items/images/en/thumbs/tiberon.d3bd3db70fcc6bd97713419f1ac222e3.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdad", + "slug": "aklex", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/AkLexPistols", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.05, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Aklex", + "icon": "riven_item/images/aklex.800394d7e0f24986229130ea22dfa4e7.png", + "thumb": "riven_item/images/thumbs/aklex.800394d7e0f24986229130ea22dfa4e7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdae", + "slug": "akmagnus", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/DualMagnus", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 12, + "i18n": { + "en": { + "name": "Akmagnus", + "icon": "items/images/en/akmagnus.71b5c604b03e3afd601d3d1ec5d116a3.png", + "thumb": "items/images/en/thumbs/akmagnus.71b5c604b03e3afd601d3d1ec5d116a3.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdaf", + "slug": "aksomati", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/SomaSidearm/AkimboSomaPistols", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Aksomati", + "icon": "items/images/en/aksomati.7f420cc90ae6ef6d8130c9475dc50274.png", + "thumb": "items/images/en/thumbs/aksomati.7f420cc90ae6ef6d8130c9475dc50274.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb0", + "slug": "akstiletto", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TennoUzi/TennoUzi", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.95, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Akstiletto", + "icon": "items/images/en/akstiletto.2532b4ad6207e99496ac4a84021a9ad3.png", + "thumb": "items/images/en/thumbs/akstiletto.2532b4ad6207e99496ac4a84021a9ad3.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb1", + "slug": "akvasto", + "gameRef": "/Lotus/Weapons/Tenno/Akimbo/DualVastos", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Akvasto", + "icon": "items/images/en/akvasto.efa0bb0ef386af5bbb36fedc9a9e77eb.png", + "thumb": "items/images/en/thumbs/akvasto.efa0bb0ef386af5bbb36fedc9a9e77eb.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb2", + "slug": "akzani", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/HarlequinGun/HarlequinPistols", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.52, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Akzani", + "icon": "items/images/en/akzani.cdef36c1271e3298d65d24b43646f1cf.png", + "thumb": "items/images/en/thumbs/akzani.cdef36c1271e3298d65d24b43646f1cf.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb3", + "slug": "angstrum", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpHandRL/CorpusHandRocketLauncher", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.35, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Angstrum", + "icon": "items/images/en/angstrum.8a8e60fea990e087f5075a5ad0027d1f.png", + "thumb": "items/images/en/thumbs/angstrum.8a8e60fea990e087f5075a5ad0027d1f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb5", + "slug": "atomos", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/HeatGun/GrnHeatGun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.95, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Atomos", + "icon": "items/images/en/atomos.2f3af350060d4b7ff4adae2b12f97b0a.png", + "thumb": "items/images/en/thumbs/atomos.2f3af350060d4b7ff4adae2b12f97b0a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb6", + "slug": "azima", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/SundialGun/SundialPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Azima", + "icon": "items/images/en/azima.8bb80c4b17a8fcbde5ef298c463d84e2.png", + "thumb": "items/images/en/thumbs/azima.8bb80c4b17a8fcbde5ef298c463d84e2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb8", + "slug": "bolto", + "gameRef": "/Lotus/Weapons/Tenno/Pistol/CrossBow", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.51, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Bolto", + "icon": "items/images/en/bolto.b5acc3cca68e54f8b45cb68288a63000.png", + "thumb": "items/images/en/thumbs/bolto.b5acc3cca68e54f8b45cb68288a63000.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdb9", + "slug": "brakk", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrineerHandShotgun/GrineerHandCannon", + "group": "secondary", + "rivenType": "shotgun", + "disposition": 1.25, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Brakk", + "icon": "items/images/en/brakk.db24dd1bc4fe5bba11129bbbfc9de5b7.png", + "thumb": "items/images/en/thumbs/brakk.db24dd1bc4fe5bba11129bbbfc9de5b7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdbe", + "slug": "despair", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/StalkerKunai", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.3, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Despair", + "icon": "items/images/en/despair.dcdb6297c9579cb1457bd0b8d46dc52e.png", + "thumb": "items/images/en/thumbs/despair.dcdb6297c9579cb1457bd0b8d46dc52e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe09", + "slug": "dual_raza", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Soma/SomaDualKamas", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Dual Raza", + "icon": "riven_item/images/dual_raza.36dfb4b0a9c567d3cb8505501381b62b.png", + "thumb": "riven_item/images/thumbs/dual_raza.36dfb4b0a9c567d3cb8505501381b62b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe42", + "slug": "reaper_prime", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Scythe/ReaperWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.7, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Reaper Prime", + "icon": "riven_item/images/reaper_prime.128b035513016fffe8424704af103bb0.png", + "thumb": "riven_item/images/thumbs/reaper_prime.128b035513016fffe8424704af103bb0.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe44", + "slug": "ripkas", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerClaws/GrnClaws", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Ripkas", + "icon": "riven_item/images/ripkas.71a1f4cadb1fd39eee36642ca8189ef9.png", + "thumb": "riven_item/images/thumbs/ripkas.71a1f4cadb1fd39eee36642ca8189ef9.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdfd", + "slug": "dark_sword", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/DarkSword/DarkLongSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.48, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Dark Sword", + "icon": "items/images/en/dark_sword.0d15d2fbdd2129494ab98d626798f39f.png", + "thumb": "items/images/en/thumbs/dark_sword.0d15d2fbdd2129494ab98d626798f39f.128x128.png" + } + } + }, + { + "id": "5cf572559597e1019b1678d1", + "slug": "kreska", + "gameRef": "/Lotus/Weapons/Corpus/Melee/CrpVenusHatchet/CrpVenusHatchet", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Kreska", + "icon": "items/images/en/kreska.b30c46cce9ef8e70c448a1c2479a0faf.png", + "thumb": "items/images/en/thumbs/kreska.b30c46cce9ef8e70c448a1c2479a0faf.128x128.png" + } + } + }, + { + "id": "5cfe91798be64500e4430ce0", + "slug": "velocitus", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/Railgun/ArchRailgun", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Velocitus", + "icon": "items/images/en/velocitus.cbd04bd264e30012bc32de60f2976d6e.png", + "thumb": "items/images/en/thumbs/velocitus.cbd04bd264e30012bc32de60f2976d6e.128x128.png" + } + } + }, + { + "id": "5cfe917a8be64500e4430ce3", + "slug": "fluctus", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/RocketArtillery/ArchRocketCrossbow", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1.05, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Fluctus", + "icon": "items/images/en/fluctus.1260f4c62a54ae230993e30f66453712.png", + "thumb": "items/images/en/thumbs/fluctus.1260f4c62a54ae230993e30f66453712.128x128.png" + } + } + }, + { + "id": "5d322d0e74bdad027da4d06a", + "slug": "quatz", + "gameRef": "/Lotus/Weapons/Grineer/Pistols/GrnAmphisPistol/GrnAmphisPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Quatz", + "icon": "items/images/en/quatz.f53f42abcec3d6827af56f37657a348e.png", + "thumb": "items/images/en/thumbs/quatz.f53f42abcec3d6827af56f37657a348e.128x128.png" + } + } + }, + { + "id": "5d6e947e7ea27b048cbea8cc", + "slug": "acceltra", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/SapientPrimary/SapientPrimaryWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.65, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Acceltra", + "icon": "items/images/en/acceltra.2d57d4573999b2e19bedb218d9e9846c.png", + "thumb": "items/images/en/thumbs/acceltra.2d57d4573999b2e19bedb218d9e9846c.128x128.png" + } + } + }, + { + "id": "5d6e947e7ea27b048cbea8cd", + "slug": "akarius", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/SapientPistol/SapientPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.05, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Akarius", + "icon": "items/images/en/akarius.e347dca439dcc09e7e5e7f45d961787a.png", + "thumb": "items/images/en/thumbs/akarius.e347dca439dcc09e7e5e7f45d961787a.128x128.png" + } + } + }, + { + "id": "5d70ebe07ea27b064d455072", + "slug": "tazicor", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetComponents/TazronWeapon", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Tazicor", + "icon": "items/images/en/tazicor.21da9f14f8da3fece55ea43bd598bb58.png", + "thumb": "items/images/en/thumbs/tazicor.21da9f14f8da3fece55ea43bd598bb58.128x128.png" + } + } + }, + { + "id": "5d70ebe17ea27b064d455073", + "slug": "cryotra", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetComponents/CryoxionWeapon", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Cryotra", + "icon": "items/images/en/cryotra.fe7350c85bb0b9aca1264f214cc88842.png", + "thumb": "items/images/en/thumbs/cryotra.fe7350c85bb0b9aca1264f214cc88842.128x128.png" + } + } + }, + { + "id": "5e02154d14569703bf43e547", + "slug": "shedu", + "gameRef": "/Lotus/Weapons/Sentients/Shedu/SheduHeavyWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.75, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Shedu", + "icon": "items/images/en/shedu.765c016812e915e1e06ceb5e3820ae48.png", + "thumb": "items/images/en/thumbs/shedu.765c016812e915e1e06ceb5e3820ae48.128x128.png" + } + } + }, + { + "id": "5f498a389426ed005af5ecb2", + "slug": "cortege", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechArchGun/ThanoTechArchGun", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Cortege", + "icon": "items/images/en/cortege.9ea6df8e184b821217af6bdf94abb310.png", + "thumb": "items/images/en/thumbs/cortege.9ea6df8e184b821217af6bdf94abb310.128x128.png" + } + } + }, + { + "id": "5f9963079dbdce02e693ec7b", + "slug": "vitrica", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/NWIIIOrokinSword/NWOrokinSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Vitrica", + "icon": "items/images/en/vitrica.6c9d26f8d4f7989e4361c015a64ec269.png", + "thumb": "items/images/en/thumbs/vitrica.6c9d26f8d4f7989e4361c015a64ec269.128x128.png" + } + } + }, + { + "id": "5fb847a0c34da30068f912b8", + "slug": "pulmonars", + "gameRef": "/Lotus/Weapons/Infested/Melee/Nunchaku/InfNunchuck/InfNunchuck", + "group": "melee", + "rivenType": "melee", + "disposition": 1.2, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Pulmonars", + "icon": "items/images/en/pulmonars.919705abecc4facb4bc774d80c635cd3.png", + "thumb": "items/images/en/thumbs/pulmonars.919705abecc4facb4bc774d80c635cd3.128x128.png" + } + } + }, + { + "id": "5fb847a0c34da30068f912b9", + "slug": "bubonico", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/InfArmCannon/InfArmCannon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.75, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Bubonico", + "icon": "items/images/en/bubonico.b930df0a79fb66c92fdf28e76bfa1b2e.png", + "thumb": "items/images/en/thumbs/bubonico.b930df0a79fb66c92fdf28e76bfa1b2e.128x128.png" + } + } + }, + { + "id": "5fb847a0c34da30068f912ba", + "slug": "proboscis_cernos", + "gameRef": "/Lotus/Weapons/Tenno/Bows/PrimeDerelictCernos/DerelictCernos", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.85, + "reqMasteryRank": 15, + "i18n": { + "en": { + "name": "Proboscis Cernos", + "icon": "riven_item/images/proboscis_cernos.5cac06026e1a51bfedec69ddf0af7cf9.png", + "thumb": "riven_item/images/thumbs/proboscis_cernos.5cac06026e1a51bfedec69ddf0af7cf9.128x128.png" + } + } + }, + { + "id": "5fb847a0c34da30068f912bb", + "slug": "sporothrix", + "gameRef": "/Lotus/Weapons/Infested/LongGuns/InfSniperRifle/InfSniperRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Sporothrix", + "icon": "items/images/en/sporothrix.6f9948b1f4636d57a1bd613468ddc2b3.png", + "thumb": "items/images/en/thumbs/sporothrix.6f9948b1f4636d57a1bd613468ddc2b3.128x128.png" + } + } + }, + { + "id": "5fb847a0c34da30068f912bc", + "slug": "arum_spinosa", + "gameRef": "/Lotus/Weapons/Infested/Melee/InfWarfan/InfWarfanWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Arum Spinosa", + "icon": "items/images/en/arum_spinosa.a676e9febc397c744ba0f3d4f13b891f.png", + "thumb": "items/images/en/thumbs/arum_spinosa.a676e9febc397c744ba0f3d4f13b891f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe45", + "slug": "sarpa", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Gunblade/GunbladeAutomatic/TnoGunbladeAutomatic", + "group": "melee", + "rivenType": "melee", + "disposition": 1.2, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Sarpa", + "icon": "items/images/en/sarpa.12468314201edd826d524da9116695de.png", + "thumb": "items/images/en/thumbs/sarpa.12468314201edd826d524da9116695de.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe46", + "slug": "scindo", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Axe/AxeWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Scindo", + "icon": "items/images/en/scindo.2a8908be0b93b22e469de09c17a97d66.png", + "thumb": "items/images/en/thumbs/scindo.2a8908be0b93b22e469de09c17a97d66.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe47", + "slug": "scoliac", + "gameRef": "/Lotus/Weapons/Infested/Melee/Whip/InfestedWhip/InfestedWhipWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Scoliac", + "icon": "items/images/en/scoliac.6703c0d6787801aa4e743570e345e268.png", + "thumb": "items/images/en/thumbs/scoliac.6703c0d6787801aa4e743570e345e268.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe48", + "slug": "sepfahn", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee02/Tip/TipNine", + "group": "zaw", + "rivenType": "zaw", + "disposition": 0.7, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Sepfahn", + "icon": "items/images/en/sepfahn.c445d087b86e821d11ee009a627429e6.png", + "thumb": "items/images/en/thumbs/sepfahn.c445d087b86e821d11ee009a627429e6.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe49", + "slug": "serro", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Polearm/CorpusPolearm01/CorpusPolearmWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.38, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Serro", + "icon": "items/images/en/serro.acb5f8ff71e74cd25d277e1a1dbefcb5.png", + "thumb": "items/images/en/thumbs/serro.acb5f8ff71e74cd25d277e1a1dbefcb5.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe4a", + "slug": "shaku", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Nunchaku/TnoNunchaku/TnoNunchaku", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Shaku", + "icon": "items/images/en/shaku.dc15c1d78e22da3fede6f6ab3c5bef47.png", + "thumb": "items/images/en/thumbs/shaku.dc15c1d78e22da3fede6f6ab3c5bef47.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe4b", + "slug": "sheev", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrineerCombatKnife/GrineerCombatKnife", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Sheev", + "icon": "items/images/en/sheev.e083af0166692228641af774856fd04b.png", + "thumb": "items/images/en/thumbs/sheev.e083af0166692228641af774856fd04b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe4c", + "slug": "sibear", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Hammer/IceHammer/IceHammer", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Sibear", + "icon": "items/images/en/sibear.316a35a05e38b1826e5cf5056b4cb946.png", + "thumb": "items/images/en/thumbs/sibear.316a35a05e38b1826e5cf5056b4cb946.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe4d", + "slug": "sigma_and_octantis", + "gameRef": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/SundialSwordBoard/SundialBoardSword", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Sigma & Octantis", + "icon": "items/images/en/sigma_and_octantis.ba55ee8f63accecc063aa87c0d04ad17.png", + "thumb": "items/images/en/thumbs/sigma_and_octantis.ba55ee8f63accecc063aa87c0d04ad17.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe4e", + "slug": "silva_and_aegis", + "gameRef": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/MeleeContestWinnerOne/TennoSwordShield", + "group": "melee", + "rivenType": "melee", + "disposition": 1.15, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Silva & Aegis", + "icon": "items/images/en/silva_and_aegis.67594c1a2048db8a396756c0e4b63054.png", + "thumb": "items/images/en/thumbs/silva_and_aegis.67594c1a2048db8a396756c0e4b63054.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe50", + "slug": "skiajati", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/UmbraKatana/UmbraKatana", + "group": "melee", + "rivenType": "melee", + "disposition": 0.9, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Skiajati", + "icon": "riven_item/images/skiajati.545f2b491838bd12a8dc2d4fa9d8f1e9.png", + "thumb": "riven_item/images/thumbs/skiajati.545f2b491838bd12a8dc2d4fa9d8f1e9.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe51", + "slug": "sydon", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnTrident/GrnTridentWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Sydon", + "icon": "items/images/en/sydon.85d4c0918503f427164dbc69d27d9443.png", + "thumb": "items/images/en/thumbs/sydon.85d4c0918503f427164dbc69d27d9443.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe52", + "slug": "tekko", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Gauntlet/BrawlerKnuckles/BrawlerKnuckles", + "group": "melee", + "rivenType": "melee", + "disposition": 1.4, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Tekko", + "icon": "items/images/en/tekko.8c0daa853f7d5cbfdceef3fe3d8ecb01.png", + "thumb": "items/images/en/thumbs/tekko.8c0daa853f7d5cbfdceef3fe3d8ecb01.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe53", + "slug": "tipedo", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Staff/MonkSpade/TnoMonkStaff", + "group": "melee", + "rivenType": "melee", + "disposition": 1.31, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Tipedo", + "icon": "items/images/en/tipedo.3231886049a74dae17e5fa0e2992c54f.png", + "thumb": "items/images/en/thumbs/tipedo.3231886049a74dae17e5fa0e2992c54f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe54", + "slug": "tonbo", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/FlowerPowerPolearm/FlowerPowerPolearmWep", + "group": "melee", + "rivenType": "melee", + "disposition": 1.38, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Tonbo", + "icon": "items/images/en/tonbo.4a9b061a66674a4ccdf65c794c0df0eb.png", + "thumb": "items/images/en/thumbs/tonbo.4a9b061a66674a4ccdf65c794c0df0eb.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe55", + "slug": "twin_basolk", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnDualFireAxe/GrnDualFireAxe", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Twin Basolk", + "icon": "items/images/en/twin_basolk.a6e398dafc2dcf1e2b4e2516ae08af06.png", + "thumb": "items/images/en/thumbs/twin_basolk.a6e398dafc2dcf1e2b4e2516ae08af06.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd60", + "slug": "amprex", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/ChainLightningGun/ChainLightningRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.85, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Amprex", + "icon": "items/images/en/amprex.96d41f4e6b7c4f8483f90c44683ba2bf.png", + "thumb": "items/images/en/thumbs/amprex.96d41f4e6b7c4f8483f90c44683ba2bf.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd69", + "slug": "burston", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/BurstRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.45, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Burston", + "icon": "items/images/en/burston.2aa5358640a76f5a43f11b4254560311.png", + "thumb": "items/images/en/thumbs/burston.2aa5358640a76f5a43f11b4254560311.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd6a", + "slug": "buzlok", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnGorgSniperRifle/GrnGorgSniperRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.45, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Buzlok", + "icon": "items/images/en/buzlok.505769cecc7314d13d236e6227be8c26.png", + "thumb": "items/images/en/thumbs/buzlok.505769cecc7314d13d236e6227be8c26.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd6b", + "slug": "cernos", + "gameRef": "/Lotus/Weapons/Tenno/Bows/AntlerBow/AntlerBow", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Cernos", + "icon": "items/images/en/cernos.6ea49e65e339e10cc84409e7dcb02cef.png", + "thumb": "items/images/en/thumbs/cernos.6ea49e65e339e10cc84409e7dcb02cef.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd6c", + "slug": "convectrix", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpSplitLaser/CrpSplitLaser", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.46, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Convectrix", + "icon": "items/images/en/convectrix.5b6ad3c7b9c59e7de5130bac9588315c.png", + "thumb": "items/images/en/thumbs/convectrix.5b6ad3c7b9c59e7de5130bac9588315c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd6e", + "slug": "daikyu", + "gameRef": "/Lotus/Weapons/Tenno/Bows/AsymetricalBow/AsymetricalBow", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.25, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Daikyu", + "icon": "riven_item/images/daikyu.8ae5a0a469eadd60b5a755d76a317dff.png", + "thumb": "riven_item/images/thumbs/daikyu.8ae5a0a469eadd60b5a755d76a317dff.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd6f", + "slug": "dera", + "gameRef": "/Lotus/Weapons/ClanTech/Energy/EnergyRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.4, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Dera", + "icon": "items/images/en/dera.d2e71b091f5b5a62a6a11a6846dc924e.png", + "thumb": "items/images/en/thumbs/dera.d2e71b091f5b5a62a6a11a6846dc924e.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd70", + "slug": "drakgoon", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerFlakCannon/FlakCannon", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.4, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Drakgoon", + "icon": "items/images/en/drakgoon.6b8dfef7ac875fa49f3418254b9a0d2b.png", + "thumb": "items/images/en/thumbs/drakgoon.6b8dfef7ac875fa49f3418254b9a0d2b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd71", + "slug": "dread", + "gameRef": "/Lotus/Weapons/Tenno/Bows/StalkerBow", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Dread", + "icon": "items/images/en/dread.c1bc8cbd36a8ff069e4388607a9d1ee6.png", + "thumb": "items/images/en/thumbs/dread.c1bc8cbd36a8ff069e4388607a9d1ee6.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd74", + "slug": "glaxion", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpFreezeRay/CrpFreezeRayRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Glaxion", + "icon": "items/images/en/glaxion.ef97d7dd12728d34ea7ed50100c197b0.png", + "thumb": "items/images/en/thumbs/glaxion.ef97d7dd12728d34ea7ed50100c197b0.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd75", + "slug": "gorgon", + "gameRef": "/Lotus/Weapons/Tenno/Rifle/HeavyRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.4, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Gorgon", + "icon": "items/images/en/gorgon.322fd818e70763de4ba6bf3334c498fd.png", + "thumb": "items/images/en/thumbs/gorgon.322fd818e70763de4ba6bf3334c498fd.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd76", + "slug": "grakata", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/GrnAssaultRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.35, + "reqMasteryRank": 5, + "i18n": { + "en": { + "name": "Grakata", + "icon": "items/images/en/grakata.cc349001047e5445675581a53cf4a30f.png", + "thumb": "items/images/en/thumbs/grakata.cc349001047e5445675581a53cf4a30f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fd77", + "slug": "grinlok", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrineerLeverActionRifle/GLARifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Grinlok", + "icon": "items/images/en/grinlok.d4946bece8cf876693fb748649e1e72b.png", + "thumb": "items/images/en/thumbs/grinlok.d4946bece8cf876693fb748649e1e72b.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdd6", + "slug": "seer", + "gameRef": "/Lotus/Weapons/Grineer/GrineerPistol/GrnScopedPistolPlayer", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.5, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Seer", + "icon": "items/images/en/seer.d6955128cc55ac9fce8eda2b8674712a.png", + "thumb": "items/images/en/thumbs/seer.d6955128cc55ac9fce8eda2b8674712a.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fde7", + "slug": "zakti", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnGuandoPistol/TnGuandoPistolGun", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Zakti", + "icon": "items/images/en/zakti.41680477b8d0d79382d677e328336031.png", + "thumb": "items/images/en/thumbs/zakti.41680477b8d0d79382d677e328336031.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdf9", + "slug": "cyath", + "gameRef": "/Lotus/Weapons/Ostron/Melee/ModularMelee01/Tip/TipFour", + "group": "zaw", + "rivenType": "zaw", + "disposition": 0.95, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Cyath", + "icon": "items/images/en/cyath.9be1cfd6ca29427512ee0efe203aba4d.png", + "thumb": "items/images/en/thumbs/cyath.9be1cfd6ca29427512ee0efe203aba4d.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fdfc", + "slug": "dark_split_sword_(dual_swords)", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/DarkSword/DarkSwordDaggerHybridWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Dark Split-Sword", + "icon": "riven_item/images/dark_split_sword_(dual_swords).a0e5f62b68b83216be729ed300be65f7.png", + "thumb": "riven_item/images/thumbs/dark_split_sword_(dual_swords).a0e5f62b68b83216be729ed300be65f7.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe27", + "slug": "krohkur", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnEgyptSwd/GrnEgyptSwdWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Krohkur", + "icon": "items/images/en/krohkur.032f3fcc8aa332fb4ce3bd00ab8b0133.png", + "thumb": "items/images/en/thumbs/krohkur.032f3fcc8aa332fb4ce3bd00ab8b0133.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe28", + "slug": "kronen", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Tonfa/TonfaContestWinner/TennoTonfa", + "group": "melee", + "rivenType": "melee", + "disposition": 1.43, + "reqMasteryRank": 3, + "i18n": { + "en": { + "name": "Kronen", + "icon": "items/images/en/kronen.f5271e71b923e6ba302a31bda9b3287f.png", + "thumb": "items/images/en/thumbs/kronen.f5271e71b923e6ba302a31bda9b3287f.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe2a", + "slug": "lacera", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerMios/StalkerMios", + "group": "melee", + "rivenType": "melee", + "disposition": 1.31, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Lacera", + "icon": "items/images/en/lacera.d609ef53d33cadf5c618c93ed238d6d2.png", + "thumb": "items/images/en/thumbs/lacera.d609ef53d33cadf5c618c93ed238d6d2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe2c", + "slug": "lesion", + "gameRef": "/Lotus/Weapons/Infested/Melee/TipedoStaff/InfTipedoStaff", + "group": "melee", + "rivenType": "melee", + "disposition": 0.8, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Lesion", + "icon": "items/images/en/lesion.5e02a91a3896e5303279c0c929b8d5ec.png", + "thumb": "items/images/en/thumbs/lesion.5e02a91a3896e5303279c0c929b8d5ec.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe57", + "slug": "venka", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Claws/TennoClaws", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Venka", + "icon": "items/images/en/venka.e1ecfa02e0c61e38048695a98868fc3c.png", + "thumb": "items/images/en/thumbs/venka.e1ecfa02e0c61e38048695a98868fc3c.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe58", + "slug": "volnus", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Hammer/GlassHammer/GlassHammer", + "group": "melee", + "rivenType": "melee", + "disposition": 1.35, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Volnus", + "icon": "items/images/en/volnus.2353fb37d6c473b12f28bfef8c8a95dd.png", + "thumb": "items/images/en/thumbs/volnus.2353fb37d6c473b12f28bfef8c8a95dd.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe5a", + "slug": "zenistar", + "gameRef": "/Lotus/Weapons/Tenno/Melee/SunDialAxe/SundialAxeWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.15, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Zenistar", + "icon": "items/images/en/zenistar.d99a217f3dde3380a9ea5145e9effa67.png", + "thumb": "items/images/en/thumbs/zenistar.d99a217f3dde3380a9ea5145e9effa67.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe5d", + "slug": "deconstructor", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/SentGlaiveWeapon", + "group": "sentinel", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Deconstructor", + "icon": "items/images/en/deconstructor.2bc000648cdc4a157808ac70ccc937c2.png", + "thumb": "items/images/en/thumbs/deconstructor.2bc000648cdc4a157808ac70ccc937c2.128x128.png" + } + } + }, + { + "id": "5c5ca81696e8d2003834fe61", + "slug": "sweeper", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/SentShotgun", + "group": "sentinel", + "rivenType": "shotgun", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Sweeper", + "icon": "items/images/en/sweeper.75089120a61fac27357466d9dee19d8f.png", + "thumb": "items/images/en/thumbs/sweeper.75089120a61fac27357466d9dee19d8f.128x128.png" + } + } + }, + { + "id": "5ced51e0cd3f0b0098a3862d", + "slug": "rattleguts", + "gameRef": "/Lotus/Weapons/SolarisUnited/Secondary/SUModularSecondarySet1/Barrel/SUModularSecondaryBarrelCPart", + "group": "kitgun", + "rivenType": "kitgun", + "disposition": 0.85, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Rattleguts", + "icon": "items/images/en/rattleguts.51473ced4b8099a9fbb25dfad75e8b45.png", + "thumb": "items/images/en/thumbs/rattleguts.51473ced4b8099a9fbb25dfad75e8b45.128x128.png" + } + } + }, + { + "id": "5cf572569597e1019b1678d3", + "slug": "wolf_sledge", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Hammer/ThrowingHammer", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Wolf Sledge", + "icon": "items/images/en/wolf_sledge.65accab6b5b94753be5db7d124f3b086.png", + "thumb": "items/images/en/thumbs/wolf_sledge.65accab6b5b94753be5db7d124f3b086.128x128.png" + } + } + }, + { + "id": "5e02154d14569703bf43e549", + "slug": "quellor", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnRailjackRifle/RailjackRifleGun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 12, + "i18n": { + "en": { + "name": "Quellor", + "icon": "items/images/en/quellor.4a72101e1ef7e50287d619e68a44d97e.png", + "thumb": "items/images/en/thumbs/quellor.4a72101e1ef7e50287d619e68a44d97e.128x128.png" + } + } + }, + { + "id": "5e7ca96f267539062bcc4179", + "slug": "basmu", + "gameRef": "/Lotus/Weapons/Sentients/SentRifleNewWar/SentRifleNewWarGun", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.2, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Basmu", + "icon": "items/images/en/basmu.d7260ea6d078f34f6ebd751cdc8d7bcb.png", + "thumb": "items/images/en/thumbs/basmu.d7260ea6d078f34f6ebd751cdc8d7bcb.128x128.png" + } + } + }, + { + "id": "5ee7dea904d55c0b2614f572", + "slug": "stahlta", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpRubanRifle/CrpRubanRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Stahlta", + "icon": "items/images/en/stahlta.30d7537c3158976f86998e5b9fa05f96.png", + "thumb": "items/images/en/thumbs/stahlta.30d7537c3158976f86998e5b9fa05f96.128x128.png" + } + } + }, + { + "id": "5ee7dea904d55c0b2614f573", + "slug": "velox", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnOdaliskSmg/TnOdaliskSmgPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.25, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Velox", + "icon": "items/images/en/velox.8d807d2b4f5eddf0d1b17e52adc717ac.png", + "thumb": "items/images/en/thumbs/velox.8d807d2b4f5eddf0d1b17e52adc717ac.128x128.png" + } + } + }, + { + "id": "5f07214b9f527b017c17a95b", + "slug": "helstrum", + "gameRef": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetComponents/SwarmerWeapon", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Helstrum", + "icon": "items/images/en/helstrum.4bbc6d2784cacae7d2c1974d188a1839.png", + "thumb": "items/images/en/thumbs/helstrum.4bbc6d2784cacae7d2c1974d188a1839.128x128.png" + } + } + }, + { + "id": "5f07214b9f527b017c17a95c", + "slug": "xoris", + "gameRef": "/Lotus/Weapons/Corpus/Melee/Glaive/CrpGhostCatcherGlaive/CrpGhostCatcherGlaive", + "group": "melee", + "rivenType": "melee", + "disposition": 0.65, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Xoris", + "icon": "items/images/en/xoris.97a7c35070f3d75257662ad38798c9a1.png", + "thumb": "items/images/en/thumbs/xoris.97a7c35070f3d75257662ad38798c9a1.128x128.png" + } + } + }, + { + "id": "5f2af41aad961e006bd6a95f", + "slug": "athodai", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnJetTurbine/TnJetTurbinePistolWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.05, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Athodai", + "icon": "items/images/en/athodai.a43f1e1a103b2fd440e7b940652ed8eb.png", + "thumb": "items/images/en/thumbs/athodai.a43f1e1a103b2fd440e7b940652ed8eb.128x128.png" + } + } + }, + { + "id": "5f498a379426ed005af5ecac", + "slug": "sepulcrum", + "gameRef": "/Lotus/Weapons/Thanotech/ThanoPistol/ThanotechPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.05, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Sepulcrum", + "icon": "items/images/en/sepulcrum.e092d60c4da946e3d7c273cdbcd2759f.png", + "thumb": "items/images/en/thumbs/sepulcrum.e092d60c4da946e3d7c273cdbcd2759f.128x128.png" + } + } + }, + { + "id": "5f498a379426ed005af5ecad", + "slug": "quassus", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Warfan/TnBrokenFrameWarfan/TnBrokenFrameWarfanWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Quassus", + "icon": "items/images/en/quassus.6875bf8f51ad6a9851c7a0588b516420.png", + "thumb": "items/images/en/thumbs/quassus.6875bf8f51ad6a9851c7a0588b516420.128x128.png" + } + } + }, + { + "id": "5f498a379426ed005af5ecae", + "slug": "trumna", + "gameRef": "/Lotus/Weapons/Thanotech/ThanoRifle/ThanotechRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.85, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Trumna", + "icon": "items/images/en/trumna.58fe7a2d48680a998ff55f77ff4b2b7d.png", + "thumb": "items/images/en/thumbs/trumna.58fe7a2d48680a998ff55f77ff4b2b7d.128x128.png" + } + } + }, + { + "id": "5f498a379426ed005af5ecaf", + "slug": "zymos", + "gameRef": "/Lotus/Weapons/Infested/Pistols/InfUzi/InfUziWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.2, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Zymos", + "icon": "items/images/en/zymos.d358a221a7683eb20bd8af1b02e9d0da.png", + "thumb": "items/images/en/thumbs/zymos.d358a221a7683eb20bd8af1b02e9d0da.128x128.png" + } + } + }, + { + "id": "5f498a379426ed005af5ecb0", + "slug": "keratinos", + "gameRef": "/Lotus/Weapons/Infested/Melee/InfTransformClaw/InfTransformClawsWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Keratinos", + "icon": "items/images/en/keratinos.48005cdde13b283b6bf2ecc70b8e866c.png", + "thumb": "items/images/en/thumbs/keratinos.48005cdde13b283b6bf2ecc70b8e866c.128x128.png" + } + } + }, + { + "id": "5f498a389426ed005af5ecb1", + "slug": "mausolon", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechArchLongGun/ThanoTechLongGun", + "group": "archgun", + "rivenType": "rifle", + "disposition": 0.5, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Mausolon", + "icon": "items/images/en/mausolon.e36603d05a4cf5721df96af425333d94.png", + "thumb": "items/images/en/thumbs/mausolon.e36603d05a4cf5721df96af425333d94.128x128.png" + } + } + }, + { + "id": "5fde10b76db57b017abc81a7", + "slug": "cedo", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnAlchemistShotgun/TnAlchemistShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 0.65, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Cedo", + "icon": "items/images/en/cedo.d7860fa9e134a2632283d0f83acfe61d.png", + "thumb": "items/images/en/thumbs/cedo.d7860fa9e134a2632283d0f83acfe61d.128x128.png" + } + } + }, + { + "id": "6070925384a7d7024f5f5772", + "slug": "verglas", + "gameRef": "/Lotus/Types/Sentinels/SentinelWeapons/SentinelFreezeRayRifle", + "group": "sentinel", + "rivenType": "rifle", + "disposition": 1.3, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Verglas", + "icon": "items/images/en/verglas.054675349b9adf5c081d8988dae4ff3e.png", + "thumb": "items/images/en/thumbs/verglas.054675349b9adf5c081d8988dae4ff3e.128x128.png" + } + } + }, + { + "id": "60783de384a7d703362ef000", + "slug": "epitaph", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnWraitheSidearm/TnWraitheSidearmWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.6, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Epitaph", + "icon": "items/images/en/epitaph.b3a75cdcef1c7ba2971d2c550f8390e3.png", + "thumb": "items/images/en/thumbs/epitaph.b3a75cdcef1c7ba2971d2c550f8390e3.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99962", + "slug": "tenet_envoy", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpBriefcaseLauncher/CrpBriefcaseLauncher", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.65, + "reqMasteryRank": 16, + "i18n": { + "en": { + "name": "Tenet Envoy", + "icon": "riven_item/images/tenet_envoy.a71da410bea25b5c129cf02e4432f482.png", + "thumb": "riven_item/images/thumbs/tenet_envoy.a71da410bea25b5c129cf02e4432f482.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99963", + "slug": "tenet_spirex", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpIgniterPistol/CrpIgniterPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.05, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Tenet Spirex", + "icon": "riven_item/images/tenet_spirex.83d8bd8063942b58eace31b5e2ad7ebc.png", + "thumb": "riven_item/images/thumbs/tenet_spirex.83d8bd8063942b58eace31b5e2ad7ebc.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99964", + "slug": "kompressa", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/TnYareliPistol/TnYareliPistolWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 1.15, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Kompressa", + "icon": "items/images/en/kompressa.818145317760f0094b03dbb57e622448.png", + "thumb": "items/images/en/thumbs/kompressa.818145317760f0094b03dbb57e622448.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99965", + "slug": "tenet_exec", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/CrpBigSlash/CrpBigSlash", + "group": "melee", + "rivenType": "melee", + "disposition": 0.8, + "reqMasteryRank": 16, + "i18n": { + "en": { + "name": "Tenet Exec", + "icon": "riven_item/images/tenet_exec.34824515181ac57467c400eadffbe575.png", + "thumb": "riven_item/images/thumbs/tenet_exec.34824515181ac57467c400eadffbe575.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99966", + "slug": "tenet_grigori", + "gameRef": "/Lotus/Weapons/Corpus/Melee/CrpBriefcaseScythe/CrpBriefcaseScythe", + "group": "melee", + "rivenType": "melee", + "disposition": 0.9, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Tenet Grigori", + "icon": "riven_item/images/tenet_grigori.bf041c1c790f3d6a1835281129543585.png", + "thumb": "riven_item/images/thumbs/tenet_grigori.bf041c1c790f3d6a1835281129543585.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99967", + "slug": "ambassador", + "gameRef": "/Lotus/Weapons/Corpus/LongGuns/CrpArSniper/CrpArSniperRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Ambassador", + "icon": "items/images/en/ambassador.7ccc0f5c1047f5a0cd9f02de8d40b06f.png", + "thumb": "items/images/en/thumbs/ambassador.7ccc0f5c1047f5a0cd9f02de8d40b06f.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99968", + "slug": "cadus", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Staff/SingleStaff", + "group": "melee", + "rivenType": "melee", + "disposition": 1.29, + "reqMasteryRank": 4, + "i18n": { + "en": { + "name": "Cadus", + "icon": "items/images/en/cadus.b26798533a21ebb73339ac124e24a1ec.png", + "thumb": "items/images/en/thumbs/cadus.b26798533a21ebb73339ac124e24a1ec.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e99969", + "slug": "tenet_livia", + "gameRef": "/Lotus/Weapons/Corpus/Melee/CrpBriefcase2HKatana/CrpBriefcase2HKatana", + "group": "melee", + "rivenType": "melee", + "disposition": 0.9, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Tenet Livia", + "icon": "riven_item/images/tenet_livia.c1f24b173e76f43393e095c560a89499.png", + "thumb": "riven_item/images/thumbs/tenet_livia.c1f24b173e76f43393e095c560a89499.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e9996a", + "slug": "tenet_diplos", + "gameRef": "/Lotus/Weapons/Corpus/Pistols/CrpBriefcaseAkimbo/CrpBriefcaseAkimboPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.75, + "reqMasteryRank": 16, + "i18n": { + "en": { + "name": "Tenet Diplos", + "icon": "riven_item/images/tenet_diplos.12c9784343dc222697dcf4dffe313198.png", + "thumb": "riven_item/images/thumbs/tenet_diplos.12c9784343dc222697dcf4dffe313198.128x128.png" + } + } + }, + { + "id": "60e5b9014794450053e9996b", + "slug": "tenet_agendus", + "gameRef": "/Lotus/Weapons/Corpus/Melee/ShieldAndSword/CrpHammerShield/CrpHammerShield", + "group": "melee", + "rivenType": "melee", + "disposition": 0.9, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Tenet Agendus", + "icon": "riven_item/images/tenet_agendus.7924a44df9935ad357f046212cc2a774.png", + "thumb": "riven_item/images/thumbs/tenet_agendus.7924a44df9935ad357f046212cc2a774.128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf5ff", + "slug": "lacerten", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponIS", + "group": "sentinel", + "rivenType": "melee", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Lacerten", + "icon": "items/images/en/lacerten.30515b31b75d43260a78b14fc04b3d6f.png", + "thumb": "items/images/en/thumbs/lacerten.30515b31b75d43260a78b14fc04b3d6f.128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf600", + "slug": "akaten", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponPS", + "group": "sentinel", + "rivenType": "melee", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Akaten", + "icon": "items/images/en/akaten.562efe7381e9c9a879f3c3d17f12fba0.png", + "thumb": "items/images/en/thumbs/akaten.562efe7381e9c9a879f3c3d17f12fba0.128x128.png" + } + } + }, + { + "id": "60f3feb1b64404003f0bf601", + "slug": "batoten", + "gameRef": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponIP", + "group": "sentinel", + "rivenType": "melee", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Batoten", + "icon": "items/images/en/batoten.1f1dad1c92a029fb04418e2ad9914b31.png", + "thumb": "items/images/en/thumbs/batoten.1f1dad1c92a029fb04418e2ad9914b31.128x128.png" + } + } + }, + { + "id": "60fec673e5d505003b1d38b5", + "slug": "vastilok", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GunBlade/GrnGunBlade/GrnGunblade", + "group": "melee", + "rivenType": "melee", + "disposition": 0.8, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Vastilok", + "icon": "items/images/en/vastilok.0d6a0cdb886e051eab8f6b4e26df3e99.png", + "thumb": "items/images/en/thumbs/vastilok.0d6a0cdb886e051eab8f6b4e26df3e99.128x128.png" + } + } + }, + { + "id": "61460dcde330e600455dcea6", + "slug": "ghoulsaw", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnGhoulSaw/GrnGhoulSawPlayer", + "group": "melee", + "rivenType": "melee", + "disposition": 1.25, + "reqMasteryRank": 7, + "i18n": { + "en": { + "name": "Ghoulsaw", + "icon": "riven_item/images/ghoulsaw.f9a355d3f35098841d346d536abd801c.png", + "thumb": "riven_item/images/thumbs/ghoulsaw.f9a355d3f35098841d346d536abd801c.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd8", + "slug": "verdilac", + "gameRef": "/Lotus/Weapons/Archon/Melee/Whip/ArchonWhipPlayerWep", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Verdilac", + "icon": "items/images/en/verdilac.31e782e181638b3877fc06bae4e616b9.png", + "thumb": "items/images/en/thumbs/verdilac.31e782e181638b3877fc06bae4e616b9.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fd9", + "slug": "nepheri", + "gameRef": "/Lotus/Weapons/Archon/Melee/DualDaggers/ArchonDualDaggersPlayerWep", + "group": "melee", + "rivenType": "melee", + "disposition": 1, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Nepheri", + "icon": "items/images/en/nepheri.ba1daf808d7a71e3c8658da0f5ffdcb4.png", + "thumb": "items/images/en/thumbs/nepheri.ba1daf808d7a71e3c8658da0f5ffdcb4.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fda", + "slug": "rumblejack", + "gameRef": "/Lotus/Weapons/Operator/Melee/DrifterTazer/DrifterTazerPlayerWep", + "group": "melee", + "rivenType": "melee", + "disposition": 1.2, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Rumblejack", + "icon": "items/images/en/rumblejack.93665a0884f96782697b3c133be0302b.png", + "thumb": "items/images/en/thumbs/rumblejack.93665a0884f96782697b3c133be0302b.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fdb", + "slug": "korumm", + "gameRef": "/Lotus/Weapons/Archon/Melee/Trident/ArchonTridentPlayerWep", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Korumm", + "icon": "riven_item/images/korumm.517f966498590e6d1ac513f8232040db.png", + "thumb": "riven_item/images/thumbs/korumm.517f966498590e6d1ac513f8232040db.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fdc", + "slug": "venato", + "gameRef": "/Lotus/Weapons/Sentients/SentJointedScythe/SentJointedScytheWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.3, + "reqMasteryRank": 9, + "i18n": { + "en": { + "name": "Venato", + "icon": "riven_item/images/venato.b9268f9545ab5bf0adcee8625647e309.png", + "thumb": "riven_item/images/thumbs/venato.b9268f9545ab5bf0adcee8625647e309.128x128.png" + } + } + }, + { + "id": "61bb64fe3132ff00482b5fdd", + "slug": "nataruk", + "gameRef": "/Lotus/Weapons/Tenno/Bows/Omicrus/OmicrusPlayerWep", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.65, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Nataruk", + "icon": "items/images/en/nataruk.d3fca407c70c6a55f9af6f33b243b767.png", + "thumb": "items/images/en/thumbs/nataruk.d3fca407c70c6a55f9af6f33b243b767.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d90", + "slug": "hespar", + "gameRef": "/Lotus/Weapons/Tenno/Melee/HeavyScythe/DuviriScythe/DuviriHeavyScytheWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.95, + "reqMasteryRank": 12, + "i18n": { + "en": { + "name": "Hespar", + "icon": "riven_item/images/hespar.58bd4fbd6ed4930402342b2662d68ac4.png", + "thumb": "riven_item/images/thumbs/hespar.58bd4fbd6ed4930402342b2662d68ac4.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d91", + "slug": "alternox", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/GyreRifle/GyreRifleWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Alternox", + "icon": "riven_item/images/alternox.b7f48c9f0ec9cc2b0045ccfa389f0d53.png", + "thumb": "riven_item/images/thumbs/alternox.b7f48c9f0ec9cc2b0045ccfa389f0d53.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d92", + "slug": "aeolak", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnRifleErsatz/TnRifleErsatzWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Aeolak", + "icon": "riven_item/images/aeolak.8e4abcb1b4e14723c68c30636d4da6ab.png", + "thumb": "riven_item/images/thumbs/aeolak.8e4abcb1b4e14723c68c30636d4da6ab.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d93", + "slug": "phenmor", + "gameRef": "/Lotus/Weapons/Tenno/Zariman/LongGuns/SemiAutoRifle/ZarimanSemiAutoRifle", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.6, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Phenmor", + "icon": "items/images/en/phenmor.4fa10f6dededc5af9b3515370302432a.png", + "thumb": "items/images/en/thumbs/phenmor.4fa10f6dededc5af9b3515370302432a.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d94", + "slug": "laetum", + "gameRef": "/Lotus/Weapons/Tenno/Zariman/Pistols/HeavyPistol/ZarimanHeavyPistol", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.5, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Laetum", + "icon": "items/images/en/laetum.7d096a802a809499e0ce83f41f712f78.png", + "thumb": "items/images/en/thumbs/laetum.7d096a802a809499e0ce83f41f712f78.128x128.png" + } + } + }, + { + "id": "626a197ef40db600660a1d95", + "slug": "praedos", + "gameRef": "/Lotus/Weapons/Tenno/Zariman/Melee/Tonfas/ZarimanTonfaWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.6, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Praedos", + "icon": "items/images/en/praedos.e1da5767a0e93a169cc678f1a8bff20f.png", + "thumb": "items/images/en/thumbs/praedos.e1da5767a0e93a169cc678f1a8bff20f.128x128.png" + } + } + }, + { + "id": "62a2baecfbd62c00450b71e0", + "slug": "innodem", + "gameRef": "/Lotus/Weapons/Tenno/Zariman/Melee/Dagger/ZarimanDaggerWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.65, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Innodem", + "icon": "riven_item/images/innodem.2a892f04f30e5f12bd5689a2fd467aeb.png", + "thumb": "riven_item/images/thumbs/innodem.2a892f04f30e5f12bd5689a2fd467aeb.128x128.png" + } + } + }, + { + "id": "62a2baecfbd62c00450b71e1", + "slug": "felarx", + "gameRef": "/Lotus/Weapons/Tenno/Zariman/LongGuns/PumpShotgun/ZarimanPumpShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 0.6, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Felarx", + "icon": "items/images/en/felarx.053e1cdbccea41a95d0e3db9964665ff.png", + "thumb": "items/images/en/thumbs/felarx.053e1cdbccea41a95d0e3db9964665ff.128x128.png" + } + } + }, + { + "id": "62d3078680f54c00b5ddf5d2", + "slug": "vericres", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Warfan/TnMoonWarfan/MoonWarfanWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.15, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Vericres", + "icon": "riven_item/images/vericres.78fa72dfb0e8a5060eba19ebdf2f3a5b.png", + "thumb": "riven_item/images/thumbs/vericres.78fa72dfb0e8a5060eba19ebdf2f3a5b.128x128.png" + } + } + }, + { + "id": "6319dc240cd37200bcb88275", + "slug": "slaytra", + "gameRef": "/Lotus/Weapons/Grineer/Melee/GrnSharbola/GrnSharbolaWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 13, + "i18n": { + "en": { + "name": "Slaytra", + "icon": "riven_item/images/slaytra.784c1ca862dfdd321a3f538348cdd4f1.png", + "thumb": "riven_item/images/thumbs/slaytra.784c1ca862dfdd321a3f538348cdd4f1.128x128.png" + } + } + }, + { + "id": "6319dc250cd37200bcb88276", + "slug": "aegrit", + "gameRef": "/Lotus/Weapons/Grineer/ThrowingWeapons/GrnVorStickyBomb/GrnVorStickyBomb", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.9, + "reqMasteryRank": 11, + "i18n": { + "en": { + "name": "Aegrit", + "icon": "riven_item/images/aegrit.3c6f1892e31ea35858cd3961b7618757.png", + "thumb": "riven_item/images/thumbs/aegrit.3c6f1892e31ea35858cd3961b7618757.128x128.png" + } + } + }, + { + "id": "6319dc250cd37200bcb88277", + "slug": "afentis", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnHopliteSpear/TnHopliteSpearGunWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.05, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Afentis", + "icon": "riven_item/images/afentis.9f064bb2a6d5d35db0cb527907c6fcf7.png", + "thumb": "riven_item/images/thumbs/afentis.9f064bb2a6d5d35db0cb527907c6fcf7.128x128.png" + } + } + }, + { + "id": "6388664ce7c98800a3b47115", + "slug": "sarofang", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Axe/WolfFrameAxeWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Sarofang", + "icon": "riven_item/images/sarofang.132b80ed3bbefa26846dbafa1bfe5f56.png", + "thumb": "riven_item/images/thumbs/sarofang.132b80ed3bbefa26846dbafa1bfe5f56.128x128.png" + } + } + }, + { + "id": "6388664ce7c98800a3b47116", + "slug": "perigale", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnQuadSniper/TnQuadSniper", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.15, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Perigale", + "icon": "riven_item/images/perigale.aa3026811b0bb347c6b723269ef8b61c.png", + "thumb": "riven_item/images/thumbs/perigale.aa3026811b0bb347c6b723269ef8b61c.128x128.png" + } + } + }, + { + "id": "63ee010110125411da49e700", + "slug": "corufell", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Melee/ExaltedArchScythe/ExaltedAWScytheWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.85, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Corufell", + "icon": "riven_item/images/corufell.1361201225387534bc5dd7896424974c.png", + "thumb": "riven_item/images/thumbs/corufell.1361201225387534bc5dd7896424974c.128x128.png" + } + } + }, + { + "id": "63ee010110125411da49e701", + "slug": "steflos", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnoLotusPodShotgun/TnoLotusPodShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 1.2, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Steflos", + "icon": "riven_item/images/steflos.031e151f5273ef800823a8052d5cacec.png", + "thumb": "riven_item/images/thumbs/steflos.031e151f5273ef800823a8052d5cacec.128x128.png" + } + } + }, + { + "id": "644b00257ec1900044b97738", + "slug": "sampotes", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Hammer/DaxDuviriHammer/DaxDuviriHammerWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Sampotes", + "icon": "riven_item/images/sampotes.f984db830e9df86e25cf2ca4b52f658d.png", + "thumb": "riven_item/images/thumbs/sampotes.f984db830e9df86e25cf2ca4b52f658d.128x128.png" + } + } + }, + { + "id": "644b00257ec1900044b97739", + "slug": "azothane", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/DaxDuviriTwoHandedKatana/DaxDuviriTwoHandedKatanaWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.9, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Azothane", + "icon": "riven_item/images/azothane.442cb620637448e4532ff3b257cca60d.png", + "thumb": "riven_item/images/thumbs/azothane.442cb620637448e4532ff3b257cca60d.128x128.png" + } + } + }, + { + "id": "644b00267ec1900044b9773a", + "slug": "syam", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/DaxDuviriKatana/DaxDuviriKatanaWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.75, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Syam", + "icon": "riven_item/images/syam.db59c65c841c1a5d3804bfb322cfa396.png", + "thumb": "riven_item/images/thumbs/syam.db59c65c841c1a5d3804bfb322cfa396.128x128.png" + } + } + }, + { + "id": "644b00267ec1900044b9773b", + "slug": "cinta", + "gameRef": "/Lotus/Weapons/Tenno/Bows/DaxDuviriAsymetricalBow/DaxDuviriAsymmetricalLongBowPlayerWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 1.2, + "reqMasteryRank": 6, + "i18n": { + "en": { + "name": "Cinta", + "icon": "riven_item/images/cinta.9362297c3ebd9acd6e874dd3b8a85e34.png", + "thumb": "riven_item/images/thumbs/cinta.9362297c3ebd9acd6e874dd3b8a85e34.128x128.png" + } + } + }, + { + "id": "644b00267ec1900044b9773c", + "slug": "sun_and_moon", + "gameRef": "/Lotus/Types/Friendly/PlayerControllable/Weapons/DuviriDualSwordsWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.8, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Sun & Moon", + "icon": "riven_item/images/sun_and_moon.7640cf4cca525818fca1bf6bc7845ac7.png", + "thumb": "riven_item/images/thumbs/sun_and_moon.7640cf4cca525818fca1bf6bc7845ac7.128x128.png" + } + } + }, + { + "id": "644b00267ec1900044b9773d", + "slug": "edun", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/DaxDuviriPolearm/DaxDuviriPolearmWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Edun", + "icon": "riven_item/images/edun.c8ee1908b2fcac4492d03eb28c8ecce1.png", + "thumb": "riven_item/images/thumbs/edun.c8ee1908b2fcac4492d03eb28c8ecce1.128x128.png" + } + } + }, + { + "id": "649325b17ec1902187d57141", + "slug": "rauta", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/PaxDuviricusShotgun/PaxDuviricusShotgun", + "group": "primary", + "rivenType": "shotgun", + "disposition": 0.95, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Rauta", + "icon": "riven_item/images/rauta.cbe84e8e7131f82a5af0e4964dbbde79.png", + "thumb": "riven_item/images/thumbs/rauta.cbe84e8e7131f82a5af0e4964dbbde79.128x128.png" + } + } + }, + { + "id": "64c2aa1766456704eba6ba4b", + "slug": "argo_and_vel", + "gameRef": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/DaxDuviriMaceShieldWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 1.05, + "reqMasteryRank": 0, + "i18n": { + "en": { + "name": "Argo & Vel", + "icon": "riven_item/images/argo_and_vel.d820a015d857e5bac51524013de5b7b1.png", + "thumb": "riven_item/images/thumbs/argo_and_vel.d820a015d857e5bac51524013de5b7b1.128x128.png" + } + } + }, + { + "id": "65084702b0b39003de5c6608", + "slug": "gotva_prime", + "gameRef": "/Lotus/Weapons/Grineer/LongGuns/GrnOrokinRifle/GrnOrokinRifleWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.7, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Gotva Prime", + "icon": "riven_item/images/gotva_prime.323e7113fa10a54ab363496770917b19.png", + "thumb": "riven_item/images/thumbs/gotva_prime.323e7113fa10a54ab363496770917b19.128x128.png" + } + } + }, + { + "id": "653168b5f31453d36319c56b", + "slug": "dorrclave", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/TnDagathBladeWhip/TnDagathBladeWhip", + "group": "melee", + "rivenType": "melee", + "disposition": 0.9, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Dorrclave", + "icon": "riven_item/unknown.png", + "thumb": "riven_item/unknown.thumb.png" + } + } + }, + { + "id": "657b07d2107314e45d820f3d", + "slug": "ekhein", + "gameRef": "/Lotus/Weapons/Thanotech/EntSphereHammer/EntSphereHammer", + "group": "melee", + "rivenType": "melee", + "disposition": 1.1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Ekhein", + "icon": "riven_item/images/ekhein.0406d6c15108ca2ebeebefb7836f6f6f.png", + "thumb": "riven_item/images/thumbs/ekhein.0406d6c15108ca2ebeebefb7836f6f6f.128x128.png" + } + } + }, + { + "id": "657b07d2107314e45d820f3e", + "slug": "mandonel", + "gameRef": "/Lotus/Weapons/Tenno/Archwing/Primary/TnConcreteArchgun/TnConcreteArchgunWeapon", + "group": "archgun", + "rivenType": "rifle", + "disposition": 1, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Mandonel", + "icon": "riven_item/images/mandonel.242783b92f4aeadf1270b7012dfa9079.png", + "thumb": "riven_item/images/thumbs/mandonel.242783b92f4aeadf1270b7012dfa9079.128x128.png" + } + } + }, + { + "id": "658324796a16d2e9b441c875", + "slug": "grimoire", + "gameRef": "/Lotus/Weapons/Tenno/Grimoire/TnGrimoire", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.6, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Grimoire", + "icon": "items/images/en/grimoire.395a51f57c90d8aed9e8236ffaaa3740.webp", + "thumb": "items/images/en/thumbs/grimoire.395a51f57c90d8aed9e8236ffaaa3740.128x128.webp" + } + } + }, + { + "id": "6605af996c556c21875eae30", + "slug": "onos", + "gameRef": "/Lotus/Weapons/Thanotech/EntratiWristGun/EntratiWristGunWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.7, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Onos", + "icon": "riven_item/images/onos.400bb4c474ed685e11189bc95ab5cee7.png", + "thumb": "riven_item/images/thumbs/onos.400bb4c474ed685e11189bc95ab5cee7.128x128.png" + } + } + }, + { + "id": "6605af9e6c556c21875eae32", + "slug": "ruvox", + "gameRef": "/Lotus/Weapons/Thanotech/EntFistIncarnon/EntFistIncarnon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.75, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Ruvox", + "icon": "riven_item/images/ruvox.a42a6dd3ac466fbab378a12de9f965e5.png", + "thumb": "riven_item/images/thumbs/ruvox.a42a6dd3ac466fbab378a12de9f965e5.128x128.png" + } + } + }, + { + "id": "663203e0e85cac3856c86cb9", + "slug": "dex_nikana", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Swords/KatanaAndWakizashi/Dex2023Nikana/Dex2023Nikana", + "group": "melee", + "rivenType": "melee", + "disposition": 0.8, + "reqMasteryRank": 8, + "i18n": { + "en": { + "name": "Dex Nikana", + "icon": "riven_item/images/dex_nikana.6416a6a21cd657661a87b3202c2916b5.png", + "thumb": "riven_item/images/thumbs/dex_nikana.6416a6a21cd657661a87b3202c2916b5.128x128.png" + } + } + }, + { + "id": "667239428ba7c81b70d02cc2", + "slug": "cantare", + "gameRef": "/Lotus/Weapons/Tenno/ThrowingWeapons/TnChoirframeKunai/TnChoirframeKunai", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.9, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Cantare", + "icon": "riven_item/images/cantare.f50d1de3eddc876c4a086345f3a4089a.webp", + "thumb": "riven_item/images/thumbs/cantare.f50d1de3eddc876c4a086345f3a4089a.128x128.webp" + } + } + }, + { + "id": "667239468ba7c81b70d02cc4", + "slug": "evensong", + "gameRef": "/Lotus/Weapons/Tenno/Bows/TnChoirBow/TnChoirBow", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.95, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Evensong", + "icon": "riven_item/images/evensong.dffed8e4c6de1f3987d8502ce694fcf6.webp", + "thumb": "riven_item/images/thumbs/evensong.dffed8e4c6de1f3987d8502ce694fcf6.128x128.webp" + } + } + }, + { + "id": "667239538ba7c81b70d02cc6", + "slug": "harmony", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Scythe/TnChoirScythe/TnChoirScythe", + "group": "melee", + "rivenType": "melee", + "disposition": 0.55, + "reqMasteryRank": 10, + "i18n": { + "en": { + "name": "Harmony", + "icon": "riven_item/images/harmony.cf0a729000e10b443b51726b73453970.webp", + "thumb": "riven_item/images/thumbs/harmony.cf0a729000e10b443b51726b73453970.128x128.webp" + } + } + }, + { + "id": "669c430a2bca759c7edfc9a4", + "slug": "ax_52", + "gameRef": "/Lotus/Weapons/Lasria/AK47/TC2024AK47Weapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.75, + "reqMasteryRank": 12, + "i18n": { + "en": { + "name": "AX-52", + "icon": "riven_item/images/ax_52.f210bd36459da3059d2b0491343eb232.webp", + "thumb": "riven_item/images/thumbs/ax_52.f210bd36459da3059d2b0491343eb232.128x128.webp" + } + } + }, + { + "id": "66fe9569755c14b58ddfa04b", + "slug": "higasa", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/Gunbrella/ShrineMaidenGunbrellaWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.8, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Higasa", + "icon": "riven_item/images/higasa.d10061fc5542784b36745d01e142db1f.webp", + "thumb": "riven_item/images/thumbs/higasa.d10061fc5542784b36745d01e142db1f.128x128.webp" + } + } + }, + { + "id": "66fe956d755c14b58ddfa04d", + "slug": "amanata", + "gameRef": "/Lotus/Weapons/Tenno/Melee/Polearms/Naginata/ShrineMaidenNaginataWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.7, + "reqMasteryRank": 2, + "i18n": { + "en": { + "name": "Amanata", + "icon": "riven_item/images/amanata.333572434025f3f95cdf883d417fa04f.webp", + "thumb": "riven_item/images/thumbs/amanata.333572434025f3f95cdf883d417fa04f.128x128.webp" + } + } + }, + { + "id": "675d11bd47952ab3ea1928fa", + "slug": "vesper_77", + "gameRef": "/Lotus/Weapons/Lasria/LasSilencedPistol/LasSilencedPistolWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.55, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Vesper 77", + "icon": "items/images/en/vesper_77.458ee810a1bd761977bb568fdc4f0328.webp", + "thumb": "items/images/en/thumbs/vesper_77.458ee810a1bd761977bb568fdc4f0328.128x128.webp" + } + } + }, + { + "id": "675d11c947952ab3ea1928fc", + "slug": "reconifex", + "gameRef": "/Lotus/Weapons/Tenno/LongGuns/TnBeltFedRifle/TnBeltFedRifleWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.6, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Reconifex", + "icon": "items/images/en/reconifex.9e42d364ade6de6aada425b4694486e4.webp", + "thumb": "items/images/en/thumbs/reconifex.9e42d364ade6de6aada425b4694486e4.128x128.webp" + } + } + }, + { + "id": "67db60f09cec3e52e62523f8", + "slug": "riot_848", + "gameRef": "/Lotus/Weapons/Tenno/Pistols/1999EntHybridPistolWeapon/1999EntHybridPistolWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.5, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Riot-848", + "icon": "items/images/en/riot_848.c674e6dc3c29b1f7d580edf2e2714ce1.webp", + "thumb": "items/images/en/thumbs/riot_848.c674e6dc3c29b1f7d580edf2e2714ce1.128x128.webp" + } + } + }, + { + "id": "67db60f19cec3e52e62523f9", + "slug": "purgator_1", + "gameRef": "/Lotus/Weapons/Lasria/LasGrenadeLauncher/LasrianNoxPlayerWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.5, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Purgator 1", + "icon": "items/images/en/purgator_1.cd59243fe2d8a6cc4e29cb9adec65cb9.webp", + "thumb": "items/images/en/thumbs/purgator_1.cd59243fe2d8a6cc4e29cb9adec65cb9.128x128.webp" + } + } + }, + { + "id": "67db60f29cec3e52e62523fa", + "slug": "dual_viciss", + "gameRef": "/Lotus/Weapons/Lasria/LasGooSickle/LasGooSicklePlayerWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.5, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "Dual Viciss", + "icon": "items/images/en/dual_viciss.c15a2204ca280b7b4db1bfe0d53a07cf.webp", + "thumb": "items/images/en/thumbs/dual_viciss.c15a2204ca280b7b4db1bfe0d53a07cf.128x128.webp" + } + } + }, + { + "id": "67db60f39cec3e52e62523fb", + "slug": "efv_8_mars", + "gameRef": "/Lotus/Weapons/Lasria/LasGooPistol/LasGooPistolPlayerWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.5, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "EFV-8 Mars", + "icon": "items/images/en/efv_8_mars.7ea6d23799085277f1942e054de9f6fd.webp", + "thumb": "items/images/en/thumbs/efv_8_mars.7ea6d23799085277f1942e054de9f6fd.128x128.webp" + } + } + }, + { + "id": "67db60f49cec3e52e62523fc", + "slug": "efv_5_jupiter", + "gameRef": "/Lotus/Weapons/Lasria/LasGooAK/LasGooAKPlayerWeapon", + "group": "primary", + "rivenType": "rifle", + "disposition": 0.5, + "reqMasteryRank": 14, + "i18n": { + "en": { + "name": "EFV-5 Jupiter", + "icon": "items/images/en/efv_5_jupiter.c69153cce49d7d087e5b2268b3d37ac3.webp", + "thumb": "items/images/en/thumbs/efv_5_jupiter.c69153cce49d7d087e5b2268b3d37ac3.128x128.webp" + } + } + }, + { + "id": "67db60f69cec3e52e62523fd", + "slug": "dual_coda_torxica", + "gameRef": "/Lotus/Weapons/Infested/InfestedLich/Pistols/1999InfSporePistol/1999InfSporePistolWeapon", + "group": "secondary", + "rivenType": "pistol", + "disposition": 0.5, + "reqMasteryRank": 17, + "i18n": { + "en": { + "name": "Dual Coda Torxica", + "icon": "items/images/en/dual_coda_torxica.2d513976357013881a1518e34fdc932b.webp", + "thumb": "items/images/en/thumbs/dual_coda_torxica.2d513976357013881a1518e34fdc932b.128x128.webp" + } + } + }, + { + "id": "67db60f79cec3e52e62523fe", + "slug": "coda_motovore", + "gameRef": "/Lotus/Weapons/Infested/InfestedLich/Melee/InfestedHammer/InfLichHammerWeapon", + "group": "melee", + "rivenType": "melee", + "disposition": 0.5, + "reqMasteryRank": 17, + "i18n": { + "en": { + "name": "Coda Motovore", + "icon": "items/images/en/coda_motovore.9a5e70eb18ccde9a01a4927414d6317b.webp", + "thumb": "items/images/en/thumbs/coda_motovore.9a5e70eb18ccde9a01a4927414d6317b.128x128.webp" + } + } + }, + { + "id": "67db60f89cec3e52e62523ff", + "slug": "coda_bassocyst", + "gameRef": "/Lotus/Weapons/Infested/InfestedLich/LongGuns/1999InfShotgun/1999InfShotgunWeapon", + "group": "primary", + "rivenType": "shotgun", + "disposition": 0.5, + "reqMasteryRank": 17, + "i18n": { + "en": { + "name": "Coda Bassocyst", + "icon": "items/images/en/coda_bassocyst.1180e893087145914848a49c3b31764c.webp", + "thumb": "items/images/en/thumbs/coda_bassocyst.1180e893087145914848a49c3b31764c.128x128.webp" + } + } + } + ], + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/riven_attribute.json b/src/market/models/fixtures/riven_attribute.json new file mode 100644 index 0000000..eda4e67 --- /dev/null +++ b/src/market/models/fixtures/riven_attribute.json @@ -0,0 +1,734 @@ +{ + "apiVersion": "0.13.0", + "data": [ + { + "id": "5c5ca81a96e8d2003834fe78", + "slug": "punch_through", + "gameRef": "WeaponPunctureDepthMod", + "group": "default", + "prefix": "Lexi", + "suffix": "Nok", + "i18n": { + "zh-hans": { + "name": "þ®┐ÚÇÅ", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Punch Through", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe7c", + "slug": "slash_damage", + "gameRef": "WeaponSlashDamageMod", + "group": "default", + "prefix": "Sci", + "suffix": "Sus", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "ÕêçÕë▓õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Slash", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe74", + "slug": "impact_damage", + "gameRef": "WeaponImpactDamageMod", + "group": "default", + "prefix": "Magna", + "suffix": "Ton", + "unit": "percent", + "i18n": { + "en": { + "name": "Impact", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "Õå▓Õç╗õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe77", + "slug": "toxin_damage", + "gameRef": "WeaponToxinDamageMod", + "group": "default", + "prefix": "Toxi", + "suffix": "Tox", + "unit": "percent", + "i18n": { + "en": { + "name": "Toxin", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "µ»Æþ┤áõ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe7e", + "slug": "status_duration", + "gameRef": "WeaponProcTimeMod", + "group": "default", + "prefix": "Deci", + "suffix": "Des", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "ÞºªÕÅæµùÂÚù┤", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Status Duration", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe63", + "slug": "ammo_maximum", + "gameRef": "WeaponAmmoMaxMod", + "group": "default", + "prefix": "Ampi", + "suffix": "Bin", + "exclusiveTo": [ + "shotgun", + "rifle", + "pistol", + "kitgun" + ], + "unit": "percent", + "i18n": { + "en": { + "name": "Ammo Maximum", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "Õ╝╣Þì»õ©èÚÖÉ", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe7f", + "slug": "recoil", + "gameRef": "WeaponRecoilReductionMod", + "group": "default", + "prefix": "Zeti", + "suffix": "Mag", + "exclusiveTo": [ + "shotgun", + "rifle", + "pistol", + "kitgun" + ], + "positiveIsNegative": true, + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "ÕÉÄÕØÉÕèø", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Weapon Recoil", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe80", + "slug": "zoom", + "gameRef": "WeaponZoomFovMod", + "group": "default", + "prefix": "Hera", + "suffix": "Lis", + "exclusiveTo": [ + "shotgun", + "rifle", + "pistol", + "kitgun" + ], + "unit": "percent", + "i18n": { + "en": { + "name": "Zoom", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "ÕÅÿþäª", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe68", + "slug": "channeling_damage", + "gameRef": "WeaponMeleeComboInitialBonusMod", + "group": "melee", + "prefix": "Para", + "suffix": "Um", + "exclusiveTo": [ + "melee", + "zaw" + ], + "i18n": { + "en": { + "name": "Initial combo", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "ÕêØÕºïÞ┐×Õç╗µò░", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe69", + "slug": "channeling_efficiency", + "gameRef": "WeaponMeleeComboEfficiencyMod", + "group": "melee", + "prefix": "Forti", + "suffix": "Us", + "exclusiveTo": [ + "melee", + "zaw" + ], + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "ÚçìÕç╗µòêþÄç", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Heavy Attack Efficiency", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe6b", + "slug": "critical_chance", + "gameRef": "WeaponCritChanceMod", + "group": "default", + "prefix": "Crita", + "suffix": "Cron", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "µÜ┤Õç╗þÄç", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Critical Chance", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe6d", + "slug": "critical_damage", + "gameRef": "WeaponCritDamageMod", + "group": "default", + "prefix": "Acri", + "suffix": "Tis", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "µÜ┤Õç╗õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Critical Damage", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe6e", + "slug": "base_damage_/_melee_damage", + "gameRef": "WeaponDamageAmountMod", + "group": "default", + "prefix": "Visi", + "suffix": "Ata", + "unit": "percent", + "i18n": { + "en": { + "name": "Damage", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "Õƒ║þíÇõ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe70", + "slug": "heat_damage", + "gameRef": "WeaponFireDamageMod", + "group": "default", + "prefix": "Igni", + "suffix": "Pha", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "þü½þä░õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Heat", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe76", + "slug": "multishot", + "gameRef": "WeaponFireIterationsMod", + "group": "default", + "prefix": "Sati", + "suffix": "Can", + "unit": "percent", + "i18n": { + "en": { + "name": "Multishot", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "ÕñÜÚçìÕ░äÕç╗", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe7a", + "slug": "reload_speed", + "gameRef": "WeaponReloadSpeedMod", + "group": "default", + "prefix": "Feva", + "suffix": "Tak", + "exclusiveTo": [ + "shotgun", + "rifle", + "pistol", + "kitgun" + ], + "unit": "percent", + "i18n": { + "en": { + "name": "Reload Speed", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "ÞúàÕí½ÚǃÕ║ª", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe7b", + "slug": "range", + "gameRef": "WeaponMeleeRangeIncMod", + "group": "melee", + "prefix": "Locti", + "suffix": "Tor", + "exclusiveTo": [ + "melee", + "zaw" + ], + "i18n": { + "en": { + "name": "Range", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "µö╗Õç╗ÞîâÕø┤", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe64", + "slug": "damage_vs_corpus", + "gameRef": "WeaponFactionDamageCorpus", + "group": "default", + "prefix": "Manti", + "suffix": "Tron", + "unit": "multiply", + "i18n": { + "zh-hans": { + "name": "Õ»╣Corpusõ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Damage to Corpus", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe65", + "slug": "damage_vs_grineer", + "gameRef": "WeaponFactionDamageGrineer", + "group": "default", + "prefix": "Argi", + "suffix": "Con", + "unit": "multiply", + "i18n": { + "en": { + "name": "Damage to Grineer", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "Õ»╣Grineerõ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe79", + "slug": "puncture_damage", + "gameRef": "WeaponArmorPiercingDamageMod", + "group": "default", + "prefix": "Insi", + "suffix": "Cak", + "unit": "percent", + "i18n": { + "en": { + "name": "Puncture", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "þ®┐Õê║õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe66", + "slug": "damage_vs_infested", + "gameRef": "WeaponFactionDamageInfested", + "group": "default", + "prefix": "Pura", + "suffix": "Ada", + "unit": "multiply", + "i18n": { + "zh-hans": { + "name": "Õ»╣Infestedõ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Damage to Infested", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe6f", + "slug": "electric_damage", + "gameRef": "WeaponElectricityDamageMod", + "group": "default", + "prefix": "Vexi", + "suffix": "Tio", + "unit": "percent", + "i18n": { + "en": { + "name": "Electricity", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "þöÁÕç╗õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe71", + "slug": "finisher_damage", + "gameRef": "WeaponMeleeFinisherDamageMod", + "group": "melee", + "prefix": "Exi", + "suffix": "Cta", + "exclusiveTo": [ + "melee", + "zaw" + ], + "unit": "percent", + "i18n": { + "en": { + "name": "Finisher Damage", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "ÕñäÕå│õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe72", + "slug": "fire_rate_/_attack_speed", + "gameRef": "WeaponFireRateMod", + "group": "default", + "prefix": "Croni", + "suffix": "Dra", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "Õ░äÚǃ/µö╗Õç╗ÚǃÕ║ª", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Fire Rate / Attack Speed", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe73", + "slug": "projectile_speed", + "gameRef": "WeaponProjectileSpeedMod", + "group": "default", + "prefix": "Conci", + "suffix": "Nak", + "unit": "percent", + "i18n": { + "en": { + "name": "Projectile speed", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "µèòÕ░äþë®Úú×ÞíîÚǃÕ║ª", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe75", + "slug": "magazine_capacity", + "gameRef": "WeaponClipMaxMod", + "group": "default", + "prefix": "Arma", + "suffix": "Tin", + "unit": "percent", + "i18n": { + "en": { + "name": "Magazine Capacity", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "Õ╝╣ÕîúÕ«╣ÚçÅ", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe7d", + "slug": "status_chance", + "gameRef": "WeaponStunChanceMod", + "group": "default", + "prefix": "Hexa", + "suffix": "Dex", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "ÞºªÕÅæÕçáþÄç", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Status Chance", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe67", + "slug": "cold_damage", + "gameRef": "WeaponFreezeDamageMod", + "group": "default", + "prefix": "Geli", + "suffix": "Do", + "unit": "percent", + "i18n": { + "zh-hans": { + "name": "Õå░Õå╗õ╝ñÕ«│", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Cold", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe6a", + "slug": "combo_duration", + "gameRef": "ComboDurationMod", + "group": "melee", + "prefix": "Tempi", + "suffix": "Nem", + "exclusiveTo": [ + "melee", + "zaw" + ], + "unit": "seconds", + "i18n": { + "zh-hans": { + "name": "Þ┐×Õç╗µîüþ╗¡µùÂÚù┤", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Combo Duration", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5c5ca81a96e8d2003834fe6c", + "slug": "critical_chance_on_slide_attack", + "gameRef": "SlideAttackCritChanceMod", + "group": "melee", + "prefix": "Pleci", + "suffix": "Nent", + "exclusiveTo": [ + "melee", + "zaw" + ], + "unit": "percent", + "i18n": { + "en": { + "name": "Critical Chance for Slide Attack", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "zh-hans": { + "name": "µ╗æÞíîµö╗Õç╗µÜ┤Õç╗þÄç", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "5dd001d3ff08fd0214d29be2", + "slug": "chance_to_gain_extra_combo_count", + "gameRef": "WeaponMeleeComboBonusOnHitMod", + "group": "melee", + "prefix": "Laci", + "suffix": "Nus", + "exclusiveTo": [ + "melee", + "zaw" + ], + "unit": "percent", + "positiveOnly": true, + "i18n": { + "zh-hans": { + "name": "ÚóØÕñûÞ┐×Õç╗µò░ÞÄÀÕÅû", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Additional Combo Count Chance", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + }, + { + "id": "602569349be2f26959a53d66", + "slug": "chance_to_gain_combo_count", + "gameRef": "WeaponMeleeComboPointsOnHitMod", + "group": "melee", + "prefix": "", + "suffix": "", + "exclusiveTo": [ + "melee", + "zaw" + ], + "unit": "percent", + "negativeOnly": true, + "i18n": { + "zh-hans": { + "name": "þÜäÕçáþÄçµØÑÞÄÀÕ¥ùÞ┐×Õç╗µò░", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + }, + "en": { + "name": "Chance to Gain Combo Count", + "icon": "riven_attribute/unknown.png", + "thumb": "riven_attribute/unknown.thumb.png" + } + } + } + ], + "error": null + } \ No newline at end of file diff --git a/src/market/models/fixtures/top_orders.json b/src/market/models/fixtures/top_orders.json new file mode 100644 index 0000000..2f8a989 --- /dev/null +++ b/src/market/models/fixtures/top_orders.json @@ -0,0 +1,274 @@ +{ + "apiVersion": "0.13.0", + "data": { + "sell": [ + { + "id": "68010dc4353ea10008fb19cf", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-17T14:18:44Z", + "updatedAt": "2025-04-17T14:18:44Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "64a9e80d3545812a1f41259f", + "ingameName": "VoyageZombie", + "slug": "voyagezombie", + "avatar": "user/avatar/64a9e80d3545812a1f41259f.png?21e949c678c3b642ddbc851843d14f66", + "reputation": 20, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T14:56:44Z" + }, + "lastSeen": "2025-04-17T14:56:44Z" + } + }, + { + "id": "6800dbc4f5ba0a00085df1df", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-17T10:45:24Z", + "updatedAt": "2025-04-17T10:45:24Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "59c7d7b30f3139070bfcb1b2", + "ingameName": "GreyMan-GoodMan", + "slug": "greyman-goodman", + "reputation": 5, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T14:11:55Z" + }, + "lastSeen": "2025-04-17T14:11:55Z" + } + }, + { + "id": "67efffdcff901600087fdcf7", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-04-04T15:50:52Z", + "updatedAt": "2025-04-04T15:50:52Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "65cf7b60f8d3be001f58cb99", + "ingameName": "JonasTerrible", + "slug": "jonasterrible", + "reputation": 11, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T14:00:15Z" + }, + "lastSeen": "2025-04-17T14:00:15Z" + } + }, + { + "id": "67bd8dbe63ca6a0007d6d299", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-02-25T09:30:38Z", + "updatedAt": "2025-03-04T10:08:02Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "67335843979d310009ff6bfe", + "ingameName": "ForestBreeze", + "slug": "forestbreeze", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T13:15:02Z" + }, + "lastSeen": "2025-04-17T13:15:02Z" + } + }, + { + "id": "678edabe3ba9d801b742acf6", + "type": "sell", + "platinum": 25, + "quantity": 1, + "visible": true, + "createdAt": "2025-01-20T23:22:38Z", + "updatedAt": "2025-02-27T15:34:28Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "678ec9c2822e0000a27b8182", + "ingameName": "musclelam10", + "slug": "musclelam10", + "reputation": 2, + "platform": "pc", + "crossplay": true, + "locale": "zh-hant", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T13:50:21Z" + }, + "lastSeen": "2025-04-17T13:50:21Z" + } + } + ], + "buy": [ + { + "id": "67f0a54dfb9ffe0008d92442", + "type": "buy", + "platinum": 21, + "quantity": 2992, + "visible": true, + "createdAt": "2025-04-05T03:36:45Z", + "updatedAt": "2025-04-15T18:08:27Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "636242fc71a5c50120760b7f", + "ingameName": "kukolook", + "slug": "kukolook", + "avatar": "user/avatar/636242fc71a5c50120760b7f.png?de43aa0ff5d151b165aa69e4b6ed7eaf", + "reputation": 38, + "platform": "pc", + "crossplay": true, + "locale": "zh-hans", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T14:47:24Z" + }, + "lastSeen": "2025-04-17T14:47:24Z" + } + }, + { + "id": "67fc1ef18e487d0009adcf76", + "type": "buy", + "platinum": 20, + "quantity": 8, + "visible": true, + "createdAt": "2025-04-13T20:30:41Z", + "updatedAt": "2025-04-13T20:30:41Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "607b60dfea937400b8a51973", + "ingameName": "Zdepka", + "slug": "zdepka", + "avatar": "user/avatar/607b60dfea937400b8a51973.png?6e1f5d04f5f588e800506871d39ed447", + "reputation": 410, + "platform": "pc", + "crossplay": true, + "locale": "pl", + "status": "online", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T14:40:54Z" + }, + "lastSeen": "2025-04-17T14:40:54Z" + } + }, + { + "id": "67d181ddd4600b00bb298597", + "type": "buy", + "platinum": 20, + "quantity": 90, + "visible": true, + "createdAt": "2025-03-12T12:45:17Z", + "updatedAt": "2025-04-02T09:53:45Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "66db7b2dadc83a2e826b5500", + "ingameName": "ToperaS2", + "slug": "toperas2", + "reputation": 34, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T14:34:06Z" + }, + "lastSeen": "2025-04-17T14:34:06Z" + } + }, + { + "id": "67af2e173ba9d80823bfd1fa", + "type": "buy", + "platinum": 17, + "quantity": 90, + "visible": true, + "createdAt": "2025-02-14T11:50:47Z", + "updatedAt": "2025-04-09T15:13:17Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "6430ab41abd2ae03a2f80a70", + "ingameName": "NEFFEXyyds", + "slug": "neffexyyds", + "avatar": "user/avatar/6430ab41abd2ae03a2f80a70.png?10513907b7d571679b6bc2e53840b2ce", + "reputation": 1605, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T12:16:46Z" + }, + "lastSeen": "2025-04-17T12:16:46Z" + } + }, + { + "id": "674a0ff4ba450c00072b2f74", + "type": "buy", + "platinum": 16, + "quantity": 1, + "visible": true, + "createdAt": "2024-11-29T19:03:16Z", + "updatedAt": "2025-02-05T22:08:53Z", + "itemId": "65a7fcc4ed5b0d2e3eb462ce", + "user": { + "id": "5a95f01ff629d70ad274854f", + "ingameName": "Vevorium", + "slug": "vevorium", + "reputation": 807, + "platform": "pc", + "crossplay": true, + "locale": "en", + "status": "ingame", + "activity": { + "type": "UNKNOWN", + "details": "unknown", + "startedAt": "2025-04-17T14:31:05Z" + }, + "lastSeen": "2025-04-17T14:31:05Z" + } + } + ] + }, + "error": null +} \ No newline at end of file diff --git a/src/market/models/fixtures/versions.json b/src/market/models/fixtures/versions.json new file mode 100644 index 0000000..8619214 --- /dev/null +++ b/src/market/models/fixtures/versions.json @@ -0,0 +1,23 @@ +{ + "apiVersion": "0.12.2", + "data": { + "id": "67dd61cecedcd0be6d135927", + "apps": { + "ios": "0.0.1", + "android": "0.0.1", + "minIos": "", + "minAndroid": "" + }, + "collections": { + "items": "MjAyNS0wMy0yMVQxMjo1NTo0Mg==", + "rivens": "MjAyNS0wMy0yMFQwMDo1ODo1OQ==", + "liches": "MjAyNC0xMS0yNVQyMDowODowMQ==", + "sisters": "MjAyNS0wMy0yMFQwMDoxODo0OQ==", + "missions": "MjAyNS0wMy0yMVQxMjo0OToyNw==", + "npcs": "MjAyNS0wMy0yMFQwMDoxNDowMg==", + "locations": "MjAyNS0wMy0yMVQxMjo1NTo0Mg==" + }, + "updatedAt": "2025-03-21T12:55:42Z" + }, + "error": null +} \ No newline at end of file diff --git a/src/market/models/i18n.rs b/src/market/models/i18n.rs new file mode 100644 index 0000000..59b7ac6 --- /dev/null +++ b/src/market/models/i18n.rs @@ -0,0 +1,40 @@ +use std::collections::HashMap; + +use derive_more::derive::{ + Display, + FromStr, +}; +use serde::Deserialize; + +#[derive( + Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash, FromStr, Display, Default, +)] +pub enum Language { + #[serde(rename = "ko")] + Ko, + #[serde(rename = "ru")] + Ru, + #[serde(rename = "de")] + De, + #[serde(rename = "fr")] + Fr, + #[serde(rename = "pt")] + Pt, + #[serde(rename = "zh-hans")] + ZhHans, + #[serde(rename = "zh-hant")] + ZhHant, + #[serde(rename = "es")] + Es, + #[serde(rename = "it")] + It, + #[serde(rename = "pl")] + Pl, + #[serde(rename = "uk")] + Uk, + #[serde(rename = "en")] + #[default] + En, +} + +pub type I18N = HashMap; diff --git a/src/market/models/item.rs b/src/market/models/item.rs index 1939593..c846bbf 100644 --- a/src/market/models/item.rs +++ b/src/market/models/item.rs @@ -1,48 +1,67 @@ -use serde::{ - Deserialize, - Serialize, -}; - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub(crate) struct ItemsPayload { - pub(crate) payload: Items, -} +use serde::Deserialize; -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub(crate) struct Items { - pub(crate) items: Vec, -} +use super::i18n::I18N; -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +#[allow(clippy::struct_excessive_bools)] pub struct Item { - /// thumb - pub thumb: String, + pub id: String, + pub tags: Vec, + pub slug: String, + pub game_ref: String, + pub tradable: bool, - /// item_name - pub item_name: String, + pub set_root: Option, + #[serde(default)] + pub set_parts: Vec, + pub quantity_in_set: Option, - /// url_name - pub url_name: String, + pub rarity: Option, + pub max_rank: Option, + pub max_charges: Option, + pub bulk_tradable: Option, + #[serde(default)] + pub subtypes: Vec, - /// id - pub id: String, + pub max_amber_stars: Option, + pub max_cyan_stars: Option, + pub base_endo: Option, + pub endo_multiplier: Option, - #[serde(default)] - /// vaulted - pub vaulted: bool, + pub ducats: Option, + pub req_mastery_rank: Option, + pub vaulted: Option, + pub trading_tax: Option, + + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Clone, Hash)] +#[serde(rename_all = "camelCase")] +pub struct ItemI18N { + pub name: String, + pub description: Option, + pub wiki_link: Option, + pub icon: String, + pub thumb: String, + pub sub_icon: Option, } #[cfg(test)] mod test { - use crate::market::{ - client::Client, - error::ApiError, - }; - - #[tokio::test] - async fn test_item() -> Result<(), ApiError> { - let client = Client::new(); - let _ = client.items().await?; + + use super::Item; + use crate::market::models::ResponseBase; + + #[rstest::rstest] + fn test_item( + #[files("src/market/models/fixtures/item.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::>(json)?; + Ok(()) } } diff --git a/src/market/models/item_info.rs b/src/market/models/item_info.rs deleted file mode 100644 index 8ff8898..0000000 --- a/src/market/models/item_info.rs +++ /dev/null @@ -1,86 +0,0 @@ -use serde::{ - Deserialize, - Serialize, -}; - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub(crate) struct ItemInfoPayload { - pub(crate) payload: Payload, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub(crate) struct Payload { - pub(crate) item: ItemInfo, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct ItemInfo { - pub id: String, - - pub items_in_set: Vec, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct ItemInSet { - pub thumb: String, - - pub trading_tax: i64, - - pub url_name: String, - - pub set_root: bool, - - pub ducats: i64, - - pub sub_icon: Option, - - pub tags: Vec, - - pub quantity_for_set: Option, - - pub icon: String, - - pub icon_format: String, - - pub mastery_level: i64, - - pub id: String, - - #[serde(rename = "en")] - pub info: LanguageItem, -} - -/// A Language Item -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct LanguageItem { - /// item_name - pub item_name: String, - - /// description - pub description: String, - - /// wiki_link - pub wiki_link: String, - - /// thumb - pub thumb: String, - - /// icon - pub icon: String, - // drop: Vec>, // seems to be empty all the time -} - -#[cfg(test)] -mod test { - use crate::market::{ - client::Client, - error::ApiError, - }; - - #[tokio::test] - async fn test_items() -> Result<(), ApiError> { - let client = Client::new(); - let _ = client.item_info("mirage_prime_set").await?; - Ok(()) - } -} diff --git a/src/market/models/item_short.rs b/src/market/models/item_short.rs new file mode 100644 index 0000000..20e5af6 --- /dev/null +++ b/src/market/models/item_short.rs @@ -0,0 +1,70 @@ +use serde::Deserialize; + +use super::i18n::I18N; + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct ItemShort { + /// Unique identifier of the item + pub id: String, + /// URL-friendly name of the item + pub slug: String, + /// Reference to the item in the game's database + pub game_ref: String, + /// Tags related to the item + pub tags: Vec, + + /// Localized text for the item in various languages + pub i18n: I18N, + + /// maximum rank the item can achieve + pub max_rank: Option, + /// maximum charges the item can achieve + pub max_charges: Option, + /// flag indicating if the item is vaulted + pub vaulted: Option, + /// flag indicating if the item is bulk tradable + pub bulk_tradable: Option, + /// Ducats value of the item + pub ducats: Option, + /// number of amber stars associated with the item + pub max_amber_stars: Option, + /// number of cyan stars associated with the item + pub max_cyan_stars: Option, + /// base endo value of the item + pub base_endo: Option, + /// multiplier for the endo value + pub endo_multiplier: Option, + /// subtype of the item + pub subtypes: Option>, +} + +#[derive(Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Clone, Hash)] +#[serde(rename_all = "camelCase")] +pub struct ItemShortI18N { + /// Localized name of the item + pub name: String, + /// Localized icon of the item + pub icon: String, + /// Localized thumbnail of the item + pub thumb: String, + /// Optional localized sub-icon of the item + pub sub_icon: Option, +} + +#[cfg(test)] +mod test { + use super::ItemShort; + use crate::market::models::ResponseBase; + + #[rstest::rstest] + fn test_item_short( + #[files("src/market/models/fixtures/items.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/lich_ephemera.rs b/src/market/models/lich_ephemera.rs new file mode 100644 index 0000000..123e375 --- /dev/null +++ b/src/market/models/lich_ephemera.rs @@ -0,0 +1,48 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(LichEphemera, Array, "/lich/ephemeras"); + +/// Represents the `/lich/ephemeras` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct LichEphemera { + pub id: String, + pub slug: String, + pub game_ref: String, + pub animation: String, + pub element: String, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct LichEphemeraI18N { + pub name: String, + pub icon: String, + pub thumb: String, +} + +#[cfg(test)] +mod test { + use super::LichEphemera; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn lich_ephemera( + #[files("src/market/models/fixtures/lich_ephemera.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/lich_quirk.rs b/src/market/models/lich_quirk.rs new file mode 100644 index 0000000..f2247fb --- /dev/null +++ b/src/market/models/lich_quirk.rs @@ -0,0 +1,47 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(LichQuirk, Array, "/lich/quirks"); + +/// Represents the `/lich/quirks` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct LichQuirk { + pub id: String, + pub slug: String, + pub group: Option, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct LichQuirkI18N { + pub name: String, + pub description: Option, + pub icon: Option, + pub thumb: Option, +} + +#[cfg(test)] +mod test { + use super::LichQuirk; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn lich_quirk( + #[files("src/market/models/fixtures/lich_quirk.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/lich_weapon.rs b/src/market/models/lich_weapon.rs new file mode 100644 index 0000000..1d91c63 --- /dev/null +++ b/src/market/models/lich_weapon.rs @@ -0,0 +1,48 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(LichWeapon, Array, "/lich/weapons"); + +/// Represents the `/lich/weapons` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct LichWeapon { + pub id: String, + pub slug: String, + pub game_ref: String, + pub req_mastery_rank: u8, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct LichWeaponI18N { + pub name: String, + pub wiki_link: Option, + pub icon: String, + pub thumb: String, +} + +#[cfg(test)] +mod test { + use super::LichWeapon; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn lich_weapon( + #[files("src/market/models/fixtures/lich_weapon.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/location.rs b/src/market/models/location.rs new file mode 100644 index 0000000..109ce69 --- /dev/null +++ b/src/market/models/location.rs @@ -0,0 +1,76 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(Location, Array, "/locations"); + +/// Represents the `/locations` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Location { + pub id: String, + pub slug: String, + pub game_ref: String, + #[serde(default)] + pub faction: Faction, + pub min_level: Option, + pub max_level: Option, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct LocationI18N { + pub node_name: String, + pub system_name: Option, + pub icon: String, + pub thumb: String, +} + +#[derive( + Debug, + Deserialize, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Hash, + derive_more::Display, + Default, +)] +#[serde(rename_all = "lowercase")] +pub enum Faction { + Infested, + Corpus, + Grineer, + Corrupted, + Ropalolyst, + Murmur, + #[default] + Unknown, +} + +#[cfg(test)] +mod test { + use super::Location; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn location( + #[files("src/market/models/fixtures/location.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/mission.rs b/src/market/models/mission.rs new file mode 100644 index 0000000..8072a5f --- /dev/null +++ b/src/market/models/mission.rs @@ -0,0 +1,46 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(Mission, Array, "/missions"); + +/// Represents the `/missions` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Mission { + pub id: String, + pub slug: String, + pub game_ref: String, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct MissionI18N { + pub name: String, + pub icon: Option, + pub thumb: Option, +} + +#[cfg(test)] +mod test { + use super::Mission; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn mission( + #[files("src/market/models/fixtures/mission.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/mod.rs b/src/market/models/mod.rs index 16fb348..748c9a1 100644 --- a/src/market/models/mod.rs +++ b/src/market/models/mod.rs @@ -1,9 +1,87 @@ -pub(crate) mod item; -pub(crate) mod item_info; -pub(crate) mod orders; -pub(crate) mod statistic_item; - -pub use item::*; -pub use item_info::*; -pub use orders::*; -pub use statistic_item::*; +pub mod activity; +pub mod i18n; +pub mod item; +pub mod item_short; +pub mod lich_ephemera; +pub mod lich_quirk; +pub mod lich_weapon; +pub mod location; +pub mod mission; +pub mod npc; +pub mod order; +pub mod order_with_user; +pub mod riven; +pub mod riven_attribute; +pub mod riven_group; +pub mod riven_type; +pub mod set_items; +pub mod sister_ephemera; +pub mod sister_quirk; +pub mod sister_weapon; +pub mod top_orders; +pub mod top_orders_query_params; +pub mod user_short; +pub mod versions; + +use std::fmt::Debug; + +use i18n::Language; +use serde::{ + Deserialize, + de::DeserializeOwned, +}; + +use super::BASE_URL; +use crate::market::error::Error; + +#[derive(Debug, Deserialize, PartialEq, PartialOrd)] +#[serde(rename_all = "camelCase")] +pub struct ResponseBase { + pub api_version: String, + pub data: Option, + pub error: Option, +} + +pub trait Queryable: Debug { + const ENDPOINT: &str; + type Data: DeserializeOwned + Clone + Debug + Send + Sync + 'static; + + #[must_use] + fn query( + client: &reqwest::Client, + language: Language, + ) -> impl Future> + Send { + async move { + let response = client + .get(format!("{}{}", BASE_URL, Self::ENDPOINT)) + .header("Language", language.to_string()) + .send() + .await? + .json::>() + .await?; + + if let Some(error) = response.error { + return Err(Error::Api(error)); + } + + response.data.ok_or(Error::EmptyErrorAndData) + } + } +} + +macro_rules! impl_queryable { + ($name:ident,Array, $endpoint:literal) => { + impl crate::market::Queryable for $name { + const ENDPOINT: &str = $endpoint; + type Data = Vec; + } + }; + ($name:ident,Object, $endpoint:literal) => { + impl crate::market::Queryable for $name { + const ENDPOINT: &str = $endpoint; + type Data = Self; + } + }; +} + +pub(crate) use impl_queryable; diff --git a/src/market/models/npc.rs b/src/market/models/npc.rs new file mode 100644 index 0000000..44f7b94 --- /dev/null +++ b/src/market/models/npc.rs @@ -0,0 +1,46 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(Npc, Array, "/npcs"); + +/// Represents the `/npcs` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Npc { + pub id: String, + pub slug: String, + pub game_ref: String, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct NpcI18N { + pub name: String, + pub icon: String, + pub thumb: String, +} + +#[cfg(test)] +mod test { + use super::Npc; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn npc( + #[files("src/market/models/fixtures/npc.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/order.rs b/src/market/models/order.rs new file mode 100644 index 0000000..a8d7050 --- /dev/null +++ b/src/market/models/order.rs @@ -0,0 +1,50 @@ +use serde::Deserialize; + +#[derive(Debug, Clone, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] +#[serde(rename_all = "camelCase")] +pub struct Order { + /// Is the unique identifier of the order. + pub id: String, + + /// Specifies whether the order is a 'buy' or 'sell'. + pub r#type: String, + + /// Is the total platinum currency involved in the order. + pub platinum: u32, + + /// Represents the number of items included in the order. + pub quantity: u32, + + /// (optional) indicates the items quantity per transaction. + pub per_trade: Option, + + /// (optional) specifies the rank or level of the item in the order. + pub rank: Option, + + /// (optional) specifies number of charges left (used in requiem mods). + pub charges: Option, + + /// (optional) defines the specific subtype or category of the item. + pub subtype: Option, + + /// (optional) denotes the count of amber stars in a sculpture order. + pub amber_stars: Option, + + /// (optional) denotes the count of cyan stars in a sculpture order. + pub cyan_stars: Option, + + /// (auth\mod) Indicates whether the order is publicly visible or not. + pub visible: bool, + + /// Records the creation time of the order. + pub created_at: String, + + /// Records the last modification time of the order. + pub updated_at: String, + + /// Is the unique identifier of the item involved in the order. + pub item_id: String, + + /// User-defined group to which the order belongs + pub group: Option, +} diff --git a/src/market/models/order_with_user.rs b/src/market/models/order_with_user.rs new file mode 100644 index 0000000..34a98d2 --- /dev/null +++ b/src/market/models/order_with_user.rs @@ -0,0 +1,43 @@ +use serde::Deserialize; + +use super::{ + impl_queryable, + order::Order, + user_short::UserShort, +}; + +impl_queryable!(OrderWithUser, Array, "/orders/recent"); + +/// Represents the `/orders/recent` endpoint. +/// Get the most recent orders. +/// 500 max, for the last 4 hours, sorted by the [`OrderWithUser::order`]'s [`Order::created_at`] +/// field. +#[derive(Debug, Clone, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] +pub struct OrderWithUser { + #[serde(flatten)] + /// The order details. + pub order: Order, + + /// Represents the user who created the order, with basic profile information. + pub user: UserShort, +} + +#[cfg(test)] +mod test { + use super::OrderWithUser; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn riven( + #[files("src/market/models/fixtures/orders.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/orders.rs b/src/market/models/orders.rs deleted file mode 100644 index 414efc4..0000000 --- a/src/market/models/orders.rs +++ /dev/null @@ -1,110 +0,0 @@ -use chrono::{ - DateTime, - Utc, -}; -use serde::{ - Deserialize, - Serialize, -}; - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub(crate) struct OrderPayload { - pub(crate) payload: Payload, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub(crate) struct Payload { - pub(crate) orders: Vec, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -/// Platform is missing here. Platform is always "pc" -pub struct Order { - pub platinum: i64, - - pub order_type: OrderType, - - pub quantity: i64, - - pub user: User, - - pub creation_date: DateTime, - - pub last_update: DateTime, - - pub visible: bool, - - pub id: String, - - pub region: Region, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -#[serde(rename_all = "snake_case")] -pub enum OrderType { - Buy, - Sell, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -#[serde(rename_all = "kebab-case")] -pub enum Region { - De, - En, - Es, - Fr, - Ko, - Pl, - Pt, - Ru, - Uk, - Cs, - - #[serde(rename = "zh-hans")] - ZhHans, - - #[serde(rename = "zh-hant")] - ZhHant, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct User { - pub reputation: i64, - - pub locale: Region, - - pub avatar: Option, - - pub last_seen: DateTime, - - pub ingame_name: String, - - pub id: String, - - pub region: Region, - - pub status: Status, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -#[serde(rename_all = "snake_case")] -pub enum Status { - Ingame, - Offline, - Online, -} - -#[cfg(test)] -mod test { - use crate::market::{ - client::Client, - error::ApiError, - }; - - #[tokio::test] - async fn test_orders() -> Result<(), ApiError> { - let client = Client::new(); - let _ = client.orders("mirage_prime_set").await?; - Ok(()) - } -} diff --git a/src/market/models/riven.rs b/src/market/models/riven.rs new file mode 100644 index 0000000..3d2dc9a --- /dev/null +++ b/src/market/models/riven.rs @@ -0,0 +1,54 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, + riven_group::RivenGroup, + riven_type::RivenType, +}; + +impl_queryable!(Riven, Array, "/riven/weapons"); + +/// Represents the `/riven/weapons` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +#[allow(clippy::struct_field_names)] +pub struct Riven { + pub id: String, + pub slug: String, + pub game_ref: String, + pub group: Option, + pub riven_type: Option, + pub disposition: f64, + pub req_mastery_rank: u8, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct RivenI18N { + item_name: Option, + wiki_link: Option, + icon: String, + thumb: String, +} + +#[cfg(test)] +mod test { + use super::Riven; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn riven( + #[files("src/market/models/fixtures/riven.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/riven_attribute.rs b/src/market/models/riven_attribute.rs new file mode 100644 index 0000000..4315110 --- /dev/null +++ b/src/market/models/riven_attribute.rs @@ -0,0 +1,86 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(RivenAttribute, Array, "/riven/attributes"); + +/// Represents the `/riven/attributes` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct RivenAttribute { + pub id: String, + pub slug: String, + pub game_ref: String, + pub group: Option, + pub prefix: String, + pub suffix: String, + #[serde(default)] + pub exclusive_to: Vec, + #[serde(default)] + pub unit: Unit, + #[serde(default)] + pub positive_is_negative: bool, + #[serde(default)] + pub positive_only: bool, + #[serde(default)] + pub negative_only: bool, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct RivenAttributeI18N { + pub name: String, + pub icon: String, + pub thumb: String, +} + +#[derive( + Debug, + Deserialize, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Hash, + derive_more::Display, + Default, +)] +#[serde(rename_all = "lowercase")] +pub enum Unit { + /// A percentage value - such as 200% Damage + Percent, + /// A multiplier - such a 1.43x Damage to Grineer + Multiply, + /// Seconds - such +5s Combo Duration + Seconds, + + /// A flat value - such as +23.4 Initial Combo Count + #[default] + Bare, +} + +#[cfg(test)] +mod test { + use super::RivenAttribute; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn riven_attribute( + #[files("src/market/models/fixtures/riven_attribute.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/riven_group.rs b/src/market/models/riven_group.rs new file mode 100644 index 0000000..f446479 --- /dev/null +++ b/src/market/models/riven_group.rs @@ -0,0 +1,14 @@ +use derive_more::Display; +use serde::Deserialize; + +#[derive(Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash, Display)] +#[serde(rename_all = "lowercase")] +pub enum RivenGroup { + Primary, + Secondary, + Melee, + Zaw, + Archgun, + Kitgun, + Sentinel, +} diff --git a/src/market/models/riven_type.rs b/src/market/models/riven_type.rs new file mode 100644 index 0000000..8b61bae --- /dev/null +++ b/src/market/models/riven_type.rs @@ -0,0 +1,13 @@ +use derive_more::Display; +use serde::Deserialize; + +#[derive(Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash, Display)] +#[serde(rename_all = "lowercase")] +pub enum RivenType { + Pistol, + Melee, + Rifle, + Shotgun, + Zaw, + Kitgun, +} diff --git a/src/market/models/set_items.rs b/src/market/models/set_items.rs new file mode 100644 index 0000000..d11a0d8 --- /dev/null +++ b/src/market/models/set_items.rs @@ -0,0 +1,10 @@ +use serde::Deserialize; + +use super::item::Item; + +#[derive(Debug, Deserialize, PartialEq, Clone)] +pub struct SetItems { + pub id: String, + + pub items: Vec, +} diff --git a/src/market/models/sister_ephemera.rs b/src/market/models/sister_ephemera.rs new file mode 100644 index 0000000..762cfe3 --- /dev/null +++ b/src/market/models/sister_ephemera.rs @@ -0,0 +1,48 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(SisterEphemera, Array, "/sister/ephemeras"); + +/// Represents the `/sister/ephemeras` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct SisterEphemera { + pub id: String, + pub slug: String, + pub game_ref: String, + pub animation: String, + pub element: String, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct SisterEphemeraI18N { + pub name: String, + pub icon: String, + pub thumb: String, +} + +#[cfg(test)] +mod test { + use super::SisterEphemera; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn lich_ephemera( + #[files("src/market/models/fixtures/lich_ephemera.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/sister_quirk.rs b/src/market/models/sister_quirk.rs new file mode 100644 index 0000000..3f7aeea --- /dev/null +++ b/src/market/models/sister_quirk.rs @@ -0,0 +1,47 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(SisterQuirk, Array, "/sister/quirks"); + +/// Represents the `/sister/quirks` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct SisterQuirk { + pub id: String, + pub slug: String, + pub group: Option, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct SisterQuirkI18N { + pub name: String, + pub description: Option, + pub icon: Option, + pub thumb: Option, +} + +#[cfg(test)] +mod test { + use super::SisterQuirk; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn lich_quirk( + #[files("src/market/models/fixtures/lich_quirk.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/sister_weapon.rs b/src/market/models/sister_weapon.rs new file mode 100644 index 0000000..5bb395d --- /dev/null +++ b/src/market/models/sister_weapon.rs @@ -0,0 +1,48 @@ +use serde::Deserialize; + +use super::{ + i18n::I18N, + impl_queryable, +}; + +impl_queryable!(SisterWeapon, Array, "/sister/weapons"); + +/// Represents the `/sister/weapons` endpoint +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct SisterWeapon { + pub id: String, + pub slug: String, + pub game_ref: String, + pub req_mastery_rank: u8, + pub i18n: I18N, +} + +#[derive(Debug, Deserialize, PartialEq, Clone)] +#[serde(rename_all = "camelCase")] +pub struct SisterWeaponI18N { + pub name: String, + pub wiki_link: Option, + pub icon: String, + pub thumb: String, +} + +#[cfg(test)] +mod test { + use super::SisterWeapon; + use crate::market::{ + Queryable, + models::ResponseBase, + }; + + #[rstest::rstest] + fn lich_weapon( + #[files("src/market/models/fixtures/lich_weapon.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::::Data>>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/statistic_item.rs b/src/market/models/statistic_item.rs deleted file mode 100644 index 5a28b32..0000000 --- a/src/market/models/statistic_item.rs +++ /dev/null @@ -1,106 +0,0 @@ -use chrono::{ - DateTime, - Utc, -}; -use serde::{ - Deserialize, - Serialize, -}; - -use super::OrderType; - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub(crate) struct StatisticItemPayload { - pub(crate) payload: StatisticItem, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct StatisticItem { - pub statistics_closed: StatisticsClosed, - pub statistics_live: StatisticsLive, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct StatisticsClosed { - #[serde(rename = "48hours")] - pub last_48_hours: Vec, - - #[serde(rename = "90days")] - pub last_90_days: Vec, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct StatisticsClosed48Hour { - pub datetime: DateTime, - - pub volume: f64, - - pub min_price: f64, - - pub max_price: f64, - - pub open_price: f64, - - pub closed_price: f64, - - pub avg_price: f64, - - pub wa_price: f64, - - pub median: f64, - - pub moving_avg: Option, - - pub donch_top: f64, - - pub donch_bot: f64, - - pub id: String, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct StatisticsLive { - #[serde(rename = "48hours")] - pub last_48_hours: Vec, - - #[serde(rename = "90days")] - pub last_90_days: Vec, -} - -#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, PartialOrd)] -pub struct StatisticsLive48Hour { - pub datetime: DateTime, - - pub volume: f64, - - pub min_price: f64, - - pub max_price: f64, - - pub avg_price: f64, - - pub wa_price: f64, - - pub median: f64, - - pub order_type: OrderType, - - pub moving_avg: Option, - - pub id: String, -} - -#[cfg(test)] -mod test { - use crate::market::{ - client::Client, - error::ApiError, - }; - - #[tokio::test] - async fn test_statistics() -> Result<(), ApiError> { - let client = Client::new(); - let _ = client.item_statistics("mirage_prime_set").await?; - Ok(()) - } -} diff --git a/src/market/models/top_orders.rs b/src/market/models/top_orders.rs new file mode 100644 index 0000000..587a4fb --- /dev/null +++ b/src/market/models/top_orders.rs @@ -0,0 +1,26 @@ +use serde::Deserialize; + +use super::order_with_user::OrderWithUser; + +#[derive(Debug, Clone, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] +pub struct TopOrders { + pub sell: Vec, + pub buy: Vec, +} + +#[cfg(test)] +mod test { + use super::TopOrders; + use crate::market::models::ResponseBase; + + #[rstest::rstest] + fn lich_quirk( + #[files("src/market/models/fixtures/top_orders.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::>(json)?; + + Ok(()) + } +} diff --git a/src/market/models/top_orders_query_params.rs b/src/market/models/top_orders_query_params.rs new file mode 100644 index 0000000..9075165 --- /dev/null +++ b/src/market/models/top_orders_query_params.rs @@ -0,0 +1,50 @@ +use reqwest::RequestBuilder; + +#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] +pub struct TopOrdersQueryParams { + // INFO: Slug is required anyway, so it'll be passed as an argument + // pub slug: Slug, + pub rank: Option, + pub rank_lt: Option, + + pub charges: Option, + pub charges_lt: Option, + + pub amber_stars: Option, + pub amber_stars_lt: Option, + + pub cyan_stars: Option, + pub cyan_stars_lt: Option, + + pub subtype: Option, +} + +impl TopOrdersQueryParams { + pub(crate) fn apply_to(self, mut request_builder: RequestBuilder) -> RequestBuilder { + append_query!(request_builder, "rank", self.rank); + append_query!(request_builder, "rank_lt", self.rank_lt); + + append_query!(request_builder, "charges", self.charges); + append_query!(request_builder, "charges_lt", self.charges_lt); + + append_query!(request_builder, "amber_stars", self.amber_stars); + append_query!(request_builder, "amber_stars_lt", self.amber_stars_lt); + + append_query!(request_builder, "cyan_stars", self.cyan_stars); + append_query!(request_builder, "cyan_stars_lt", self.cyan_stars_lt); + + append_query!(request_builder, "subtype", self.subtype); + + request_builder + } +} + +macro_rules! append_query { + ($builder_ident:ident, $name:literal, $option_value:expr) => { + if let Some(value) = $option_value { + $builder_ident = $builder_ident.query(&[($name, value)]); + } + }; +} + +use append_query; diff --git a/src/market/models/user_short.rs b/src/market/models/user_short.rs new file mode 100644 index 0000000..e87250d --- /dev/null +++ b/src/market/models/user_short.rs @@ -0,0 +1,40 @@ +use chrono::{ + DateTime, + Utc, +}; +use serde::Deserialize; + +use super::activity::Activity; + +#[derive(Debug, Clone, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] +#[serde(rename_all = "camelCase")] +pub struct UserShort { + pub id: String, + /// In-game name of the user. + pub ingame_name: String, + /// Optional avatar image. + pub avatar: Option, + /// Reputation score. + pub reputation: u16, + /// Preferred communication language (e.g., 'en', 'ko', 'es'). + pub locale: String, + /// Gaming platform used by the user. + pub platform: String, + pub crossplay: bool, + + /// Current status of the user. + pub status: Status, + /// Addition to the status, current activity of the user. + pub activity: Activity, + /// Timestamp of the user's last online presence. + pub last_seen: DateTime, +} + +#[derive(Debug, Clone, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash, Copy)] +#[serde(rename_all = "snake_case")] +/// Represents the status of a user. +pub enum Status { + Ingame, + Online, + Offline, +} diff --git a/src/market/models/versions.rs b/src/market/models/versions.rs new file mode 100644 index 0000000..b926f31 --- /dev/null +++ b/src/market/models/versions.rs @@ -0,0 +1,57 @@ +use serde::Deserialize; + +use super::impl_queryable; + +impl_queryable!(Versions, Object, "/versions"); + +#[derive(Debug, Clone, PartialEq, Deserialize)] +#[serde(rename_all = "camelCase")] +pub struct Versions { + pub id: String, + pub apps: VersionApps, + pub collections: VersionCollections, + pub updated_at: String, +} + +#[derive(Debug, Clone, PartialEq, Deserialize)] +#[serde(rename_all = "camelCase")] +pub struct VersionApps { + pub ios: String, + pub android: String, + pub min_ios: String, + pub min_android: String, +} + +#[derive(Debug, Clone, PartialEq, Deserialize)] +pub struct VersionCollections { + pub items: String, + + pub rivens: String, + + pub liches: String, + + pub sisters: String, + + pub missions: String, + + pub npcs: String, + + pub locations: String, +} + +#[cfg(test)] +mod test { + use super::Versions; + use crate::market::models::ResponseBase; + + #[rstest::rstest] + fn test_versions( + #[files("src/market/models/fixtures/versions.json")] + #[mode = str] + json: &str, + ) -> Result<(), serde_json::Error> { + serde_json::from_str::>(json)?; + + Ok(()) + } +} diff --git a/src/profile/client.rs b/src/profile/client.rs new file mode 100644 index 0000000..aa4cff5 --- /dev/null +++ b/src/profile/client.rs @@ -0,0 +1,43 @@ +//! Provides a client that acts as the baseline for interacting with the profile API + +use super::{ + error::Error, + models::platform::Platform, +}; +use crate::profile::models::profile::Profile; + +#[derive(Default, Debug, Clone)] +pub struct Client { + session: reqwest::Client, +} + +impl Client { + /// Creates a new [Client]. + #[must_use] + pub fn new() -> Self { + Client::default() + } +} + +impl Client { + /// Fetches the profile of the user with the given username. + #[allow(clippy::missing_errors_doc)] + pub async fn fetch(&self, player_id: &str, platform: Platform) -> Result { + let url = format!( + "https://{}.warframe.com/dynamic/getProfileViewingData.php?playerId={player_id}", + platform.to_sub_domain(), + ); + let response = self.session.get(&url).send().await?; + + if response.status().is_success() { + let profile = response.json::().await?; + Ok(profile) + } else if response.status() == reqwest::StatusCode::CONFLICT { + let response = response.text().await?; + let split = response.split(' ').collect::>(); + Err(Error::WrongPlatform(split[2].to_string())) + } else { + Err(Error::ApiError(response.status())) + } + } +} diff --git a/src/profile/error.rs b/src/profile/error.rs new file mode 100644 index 0000000..5d8301e --- /dev/null +++ b/src/profile/error.rs @@ -0,0 +1,27 @@ +//! This module defines error types + +/// The profile error type +#[derive(Debug, thiserror::Error)] +pub enum Error { + /// An error from the sent request + #[error("Couldn't send request: {0}")] + FaultyRequest(#[from] reqwest::Error), + + /// An error that occurs when the deserialization of `serde_json` fails + #[error("Couldn't deserialize json body: {0}")] + FailedDeserialization(#[from] serde_json::Error), + + /// Error when the profile directs you to a different platform + #[error("Retry using platform: {0}")] + WrongPlatform(String), + + /// Any error directly from the API (status code only) + #[error("Error response from the API: {0}")] + ApiError(reqwest::StatusCode), +} + +impl From for Error { + fn from(value: reqwest::StatusCode) -> Self { + Error::ApiError(value) + } +} diff --git a/src/profile/mod.rs b/src/profile/mod.rs new file mode 100644 index 0000000..32177ca --- /dev/null +++ b/src/profile/mod.rs @@ -0,0 +1,5 @@ +//! Implementation for the profile module, used to interact with the warframe profile API + +pub mod client; +pub mod models; +pub mod error; diff --git a/src/profile/models/affiliation.rs b/src/profile/models/affiliation.rs new file mode 100644 index 0000000..d47face --- /dev/null +++ b/src/profile/models/affiliation.rs @@ -0,0 +1,86 @@ +use serde::Deserialize; + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct Affiliation { + /// tag + pub tag: AffiliationTag, + + /// standing + pub standing: i32, + + /// title + pub title: i32, +} + +#[derive(Deserialize, Debug, Clone, PartialEq)] +pub enum AffiliationTag { + #[serde(rename = "ArbitersSyndicate")] + ArbitersOfHexis, + #[serde(rename = "CephalonSudaSyndicate")] + CephalonSuda, + #[serde(rename = "NewLokaSyndicate")] + NewLoka, + #[serde(rename = "PerrinSyndicate")] + PerrinSequence, + #[serde(rename = "RedVeilSyndicate")] + RedVeil, + #[serde(rename = "SteelMeridianSyndicate")] + SteelMeridian, + #[serde(rename = "LibrarySyndicate")] + CephalonSimaris, + #[serde(rename = "ConclaveSyndicate")] + Conclave, + #[serde(rename = "CetusSyndicate")] + Ostrons, + #[serde(rename = "EventSyndicate")] + PlagueStar, + #[serde(rename = "QuillsSyndicate")] + Quills, + #[serde(rename = "VentKidsSyndicate")] + VentKids, + #[serde(rename = "SolarisSyndicate")] + SolarisUnited, + #[serde(rename = "VoxSyndicate")] + VoxSolaris, + #[serde(rename = "RadioLegionSyndicate")] + NightwaveSaturnSix, + #[serde(rename = "RadioLegionIntermissionSyndicate")] + NightwaveIntermission1, + #[serde(rename = "RadioLegion2Syndicate")] + NightwaveEmissary, + #[serde(rename = "RadioLegionIntermission2Syndicate")] + NightwaveIntermission2, + #[serde(rename = "RadioLegion3Syndicate")] + NightwaveGlassmaker, + #[serde(rename = "EntratiSyndicate")] + Entrati, + #[serde(rename = "NecraloidSyndicate")] + Necarloid, + #[serde(rename = "RadioLegionIntermission3Syndicate")] + NightwaveIntermission3, + #[serde(rename = "RadioLegionIntermission4Syndicate")] + NightwaveNorasChoice, + #[serde(rename = "RadioLegionIntermission5Syndicate")] + NightwaveNorasMix1, + #[serde(rename = "ZarimanSyndicate")] + Zariman, + #[serde(rename = "RadioLegionIntermission6Syndicate")] + NightwaveNorasMix2, + #[serde(rename = "KahlSyndicate")] + KahlsGarrison, + #[serde(rename = "RadioLegionIntermission7Syndicate")] + NightwaveNorasMix3, + #[serde(rename = "RadioLegionIntermission8Syndicate")] + NightwaveNorasMix4, + #[serde(rename = "RadioLegionIntermission9Syndicate")] + NightwaveNorasMix5, + #[serde(rename = "EntratiLabSyndicate")] + Cavia, + #[serde(rename = "RadioLegionIntermission10Syndicate")] + NightwaveNorasMix6, + #[serde(rename = "RadioLegionIntermission11Syndicate")] + NightwaveNorasMix7, + #[serde(rename = "HexSyndicate")] + Hex, +} diff --git a/src/profile/models/color_load_out.rs b/src/profile/models/color_load_out.rs new file mode 100644 index 0000000..2ca70d6 --- /dev/null +++ b/src/profile/models/color_load_out.rs @@ -0,0 +1,32 @@ +use serde::{ + Deserialize, + Serialize, +}; + +#[derive(Serialize, Deserialize, Debug, Clone)] +/// base10 i32 color loadout, [None] if color is not set +pub struct ColorLoadOut { + #[serde(rename = "t0")] + pub t0: Option, + + #[serde(rename = "t1")] + pub t1: Option, + + #[serde(rename = "t2")] + pub t2: Option, + + #[serde(rename = "t3")] + pub t3: Option, + + #[serde(rename = "m0")] + pub m0: Option, + + #[serde(rename = "m1")] + pub m1: Option, + + #[serde(rename = "en")] + pub en: Option, + + #[serde(rename = "e1")] + pub e1: Option, +} diff --git a/src/profile/models/fixtures/profile_payload.json b/src/profile/models/fixtures/profile_payload.json new file mode 100644 index 0000000..c02a804 --- /dev/null +++ b/src/profile/models/fixtures/profile_payload.json @@ -0,0 +1,424 @@ +{ + "Results": [ + { + "AccountId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "DisplayName": "Player1\uE000", + "PlatformNames": [ + "Player1\uE000", + "Player1\uE001", + "Player1\uE002", + "Player1\uE003", + "Player1\uE004" + ], + "PlayerLevel": 0, + "LoadOutPreset": { + "FocusSchool": "AP_DEFENSE", + "PresetIcon": "", + "Favorite": false, + "n": "Preset1", + "s": { + "ItemId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "mod": 0, + "cus": 0 + }, + "p": { + "ItemId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "mod": 0, + "cus": 0, + "hide": false + }, + "l": { + "ItemId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "mod": 0, + "cus": 0 + }, + "m": { + "ItemId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "mod": 0, + "cus": 0 + }, + "h": { + "ItemId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "mod": 0, + "cus": 0 + } + }, + "LoadOutInventory": { + "WeaponSkins": [ + { + "ItemType": "Item1" + } + ], + "Suits": [ + { + "ItemType": "Warframe", + "Configs": [ + { + "Name": "Build1", + "Skins": [], + "pricol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "m0": 0, + "en": 0, + "e1": 0 + }, + "attcol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "m0": 0, + "m1": 0, + "en": 0, + "e1": 0 + }, + "sigcol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "m0": 0, + "m1": 0, + "en": 0, + "e1": 0 + }, + "syancol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "en": 0 + } + } + ] + } + ], + "LongGuns": [ + { + "ItemType": "Primary", + "Configs": [ + { + "Name": "Build1", + "Skins": [], + "pricol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "m0": 0, + "m1": 0, + "en": 0, + "e1": 0 + } + } + ] + } + ], + "Pistols": [ + { + "ItemType": "Pistol", + "Configs": [ + { + "Name": "Build1", + "Skins": [], + "pricol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "m0": 0, + "m1": 0, + "en": 0, + "e1": 0 + } + } + ] + } + ], + "Melee": [ + { + "ItemType": "Melee", + "Configs": [ + { + "Name": "Build1", + "Skins": [ + "Skin1" + ], + "pricol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "m0": 0, + "m1": 0, + "en": 0, + "e1": 0 + } + } + ] + } + ], + "XPInfo": [ + { + "ItemType": "Warframe", + "XP": 0 + }, + { + "ItemType": "Primary", + "XP": 0 + }, + { + "ItemType": "Secondary", + "XP": 0 + }, + { + "ItemType": "Melee", + "XP": 0 + } + ] + }, + "GuildId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "GuildName": "Guild1#456", + "GuildTier": 1, + "GuildXP": 0, + "GuildClass": 10, + "GuildEmblem": true, + "AllianceId": { + "$oid": "507f1f77bcf86cd799439011" + }, + "PlayerSkills": { + "LPP_SPACE": 0, + "LPS_GUNNERY": 0, + "LPS_TACTICAL": 0, + "LPS_PILOTING": 0, + "LPS_ENGINEERING": 0, + "LPS_COMMAND": 0, + "LPP_DRIFTER": 0, + "LPS_DRIFT_RIDING": 0, + "LPS_DRIFT_COMBAT": 0, + "LPS_DRIFT_OPPORTUNITY": 0, + "LPS_DRIFT_ENDURANCE": 0 + }, + "ChallengeProgress": [ + { + "Name": "Challenge1", + "Progress": 0 + } + ], + "DeathMarks": [ + "DeathMark1" + ], + "Harvestable": false, + "DeathSquadable": false, + "Accolades": { + "Accolade1": true + }, + "Created": { + "$date": { + "$numberLong": "0" + } + }, + "MigratedToConsole": false, + "Missions": [ + { + "Tag": "Mission1", + "Completes": 3, + "Tier": 1 + }, + { + "Tag": "Mission2", + "Completes": 4 + } + ], + "Affiliations": [ + { + "Tag": "ArbitersSyndicate", + "Standing": 200000, + "Title": 4 + } + ], + "DailyAffiliation": 0, + "DailyAffiliationPvp": 0, + "DailyAffiliationLibrary": 0, + "DailyAffiliationCetus": 0, + "DailyAffiliationQuills": 0, + "DailyAffiliationSolaris": 0, + "DailyAffiliationVentkids": 0, + "DailyAffiliationVox": 0, + "DailyAffiliationEntrati": 0, + "DailyAffiliationNecraloid": 0, + "DailyAffiliationZariman": 0, + "DailyAffiliationKahl": 0, + "DailyAffiliationCavia": 0, + "DailyAffiliationHex": 0, + "DailyFocus": 0, + "OperatorLoadOuts": [ + { + "Skins": [ + "Skin1" + ], + "pricol": { + "t0": 0, + "t3": 0, + "en": 0 + }, + "eyecol": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "en": 0 + }, + "Upgrades": [ + "5f24b0df01109467953ec82b" + ], + "sigcol": { + "t1": 0, + "en": 0 + }, + "AbilityOverride": { + "Ability": "Ability1", + "Index": 0 + }, + "cloth": { + "t0": 0, + "t1": 0, + "t2": 0, + "t3": 0, + "en": 0, + "e1": 0 + } + } + ], + "UnlockedOperator": true, + "UnlockedAlignment": true, + "Alignment": { + "Wisdom": 0, + "Alignment": 0 + } + } + ], + "TechProjects": [], + "XpComponents": [], + "XpCacheExpiryDate": { + "$date": { + "$numberLong": "0" + } + }, + "Stats": { + "CiphersFailed": 0, + "CiphersSolved": 0, + "CipherTime": 0, + "CaptureEventScore": 0, + "Deaths": 0, + "Rating": 0, + "Weapons": [ + { + "type": "Weapon1", + "headshots": 0, + "hits": 0, + "fired": 0, + "kills": 0, + "assists": 0, + "xp": 0, + "equipTime": 0 + } + ], + "Enemies": [ + { + "type": "Enemy1", + "executions": 0, + "headshots": 0, + "kills": 0, + "assists": 0, + "deaths": 0 + } + ], + "HealCount": 0, + "Income": 0, + "MeleeKills": 0, + "MissionsDumped": 0, + "MissionsFailed": 0, + "MissionsInterrupted": 0, + "MissionsQuit": 0, + "MissionsCompleted": 0, + "Missions": [ + { + "type": "Mission1", + "highScore": 0 + } + ], + "TimePlayedSec": 0, + "PickupCount": 0, + "PlayerLevel": 0, + "Rank": 0, + "ReviveCount": 0, + "SabotageEventScore": 0, + "SurvivalEventScore": 0, + "Abilities": [ + { + "type": "Ability1", + "used": 0 + } + ], + "InfestedEventScore": 0, + "Scans": [ + { + "type": "Scan1", + "scans": 0 + } + ], + "DojoObstacleScore": 0, + "PVP": [ + { + "type": "Suit1", + "suitKills": 0, + "suitDeaths": 0 + }, + { + "type": "Weapon1", + "weaponKills": 0 + } + ], + "FomorianEventScore": 0, + "ZephyrScore": 0, + "SentinelGameScore": 0, + "ProjectSinisterEventScore": 0, + "PvpGamesPendingMask": 0, + "ColonistRescueEventScoreMax": 0, + "AmbulasEventScoreMax": 0, + "Races": { + "Race1": { + "highScore": 0 + } + }, + "Halloween19ScoreMax": 0, + "FlotillaEventScore": 0, + "FlotillaGroundBadgesTier2": 0, + "FlotillaGroundBadgesTier3": 0, + "FlotillaGroundBadgesTier1": 0, + "FlotillaSpaceBadgesTier2": 0, + "FlotillaSpaceBadgesTier1": 0, + "FlotillaSpaceBadgesTier3": 0, + "MechSurvivalScoreMax": 0, + "CaliberChicksScore": 0, + "GuildName": "Guild1#456" + } +} \ No newline at end of file diff --git a/src/profile/models/focus_school.rs b/src/profile/models/focus_school.rs new file mode 100644 index 0000000..806c326 --- /dev/null +++ b/src/profile/models/focus_school.rs @@ -0,0 +1,15 @@ +use serde::Deserialize; + +#[derive(Deserialize, Debug, Clone, PartialEq)] +pub enum FocusSchool { + #[serde(rename = "AP_ATTACK")] + Madurai, + #[serde(rename = "AP_DEFENSE")] + Vazarin, + #[serde(rename = "AP_TACTIC")] + Naramon, + #[serde(rename = "AP_WARD")] + Unairu, + #[serde(rename = "AP_POWER")] + Zenurik, +} diff --git a/src/profile/models/guild_tier.rs b/src/profile/models/guild_tier.rs new file mode 100644 index 0000000..696f672 --- /dev/null +++ b/src/profile/models/guild_tier.rs @@ -0,0 +1,11 @@ +use serde_repr::{Deserialize_repr, Serialize_repr}; + +#[derive(Serialize_repr, Deserialize_repr, Debug, Clone, PartialEq)] +#[repr(u8)] +pub enum GuildTier { + Ghost = 1, + Shadow = 2, + Storm = 3, + Mountain = 4, + Moon = 5, +} diff --git a/src/profile/models/load_out_inventory.rs b/src/profile/models/load_out_inventory.rs new file mode 100644 index 0000000..cca3c3a --- /dev/null +++ b/src/profile/models/load_out_inventory.rs @@ -0,0 +1,77 @@ +use serde::{ + Deserialize, + Serialize, +}; + +use super::color_load_out::ColorLoadOut; + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct LoadOutInventory { + pub weapon_skins: Vec, + + #[serde(rename = "Suits")] + pub warframe: Vec>, + + #[serde(rename = "LongGuns")] + pub primaries: Vec>, + + #[serde(rename = "Pistols")] + pub secondaries: Vec>, + + pub melee: Vec>, + + #[serde(rename = "XPInfo")] + pub xp_info: Vec, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct LoadOutInventoryItemType { + pub item_type: String, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct LoadOutInventoryItem { + pub item_type: String, + + pub configs: Vec, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct LoadOutInventoryItemConfig { + pub name: Option, + + #[serde(default)] + pub skins: Vec, + + #[serde(rename = "pricol")] + pub primary_colors: Option, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct WarframeLoadOutInventoryItemConfig { + #[serde(flatten)] + pub base: LoadOutInventoryItemConfig, + + #[serde(rename = "attcol")] + pub attachment_colors: Option, + + #[serde(rename = "sigcol")] + pub sigil_colors: Option, + + #[serde(rename = "syancol")] + pub syandana_colors: Option, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct XPInfo { + pub item_type: String, + + #[serde(rename = "XP")] + pub xp: u32, +} diff --git a/src/profile/models/load_out_preset.rs b/src/profile/models/load_out_preset.rs new file mode 100644 index 0000000..af9de5e --- /dev/null +++ b/src/profile/models/load_out_preset.rs @@ -0,0 +1,56 @@ +use serde::Deserialize; + +use super::{ + focus_school::FocusSchool, + profile::deserialize_oid, +}; + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct LoadOutPreset { + pub focus_school: Option, + + pub preset_icon: String, + + pub favorite: bool, + + #[serde(rename = "n")] + pub name: Option, + + #[serde(rename = "s")] + pub warframe: LoadOutPresetItem, + + #[serde(rename = "l")] + pub primary: LoadOutPresetItem, + + #[serde(rename = "p")] + pub secondary: LoadOutPresetItem, + + #[serde(rename = "m")] + pub melee: LoadOutPresetItem, + + #[serde(rename = "h")] + // TODO: What is this? + pub h: Option, + + #[serde(rename = "a")] + // TODO: What is this? + pub a: Option, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct LoadOutPresetItem { + #[serde(deserialize_with = "deserialize_oid")] + pub item_id: String, + + #[serde(rename = "mod")] + pub mod_loadout: u8, + + #[serde(rename = "cus")] + pub customization_loadout: u8, + + #[serde(rename = "hide", default = "bool::default")] + /// only present in API if true + pub hide: bool, +} diff --git a/src/profile/models/mod.rs b/src/profile/models/mod.rs new file mode 100644 index 0000000..285aae7 --- /dev/null +++ b/src/profile/models/mod.rs @@ -0,0 +1,11 @@ +pub mod affiliation; +pub mod color_load_out; +pub mod focus_school; +pub mod guild_tier; +pub mod load_out_inventory; +pub mod load_out_preset; +pub mod operator_load_out; +pub mod platform; +pub mod player_skill; +pub mod profile; +pub mod stats; diff --git a/src/profile/models/operator_load_out.rs b/src/profile/models/operator_load_out.rs new file mode 100644 index 0000000..1ce1837 --- /dev/null +++ b/src/profile/models/operator_load_out.rs @@ -0,0 +1,34 @@ +use serde::Deserialize; + +use super::color_load_out::ColorLoadOut; + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct OperatorLoadOut { + #[serde(default)] + pub skins: Vec, + + pub upgrades: Option>, + + pub ability_override: Option, + + #[serde(rename = "pricol")] + pub primary_colors: Option, + + #[serde(rename = "eyecol")] + pub eye_colors: Option, + + #[serde(rename = "sigcol")] + pub sigil_colors: Option, + + #[serde(rename = "cloth")] + pub cloth_colors: Option, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct AbilityOverride { + pub ability: String, + + pub index: i32, +} diff --git a/src/profile/models/platform.rs b/src/profile/models/platform.rs new file mode 100644 index 0000000..d13c694 --- /dev/null +++ b/src/profile/models/platform.rs @@ -0,0 +1,107 @@ +use core::str; +use std::fmt; + +use serde::{ + Deserialize, + Deserializer, + Serialize, + de, + de::Visitor, +}; + +#[derive(Debug, Clone)] +pub struct PlatformName { + /// name + pub name: String, + + /// platform + pub platform: Platform, +} + +impl<'de> Deserialize<'de> for PlatformName { + fn deserialize(deserializer: D) -> Result + where + D: Deserializer<'de>, + { + struct SplitFieldVisitor; + + impl Visitor<'_> for SplitFieldVisitor { + type Value = PlatformName; + + fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { + formatter.write_str("a string with a byte code for platform at the end") + } + + fn visit_str(self, value: &str) -> Result + where + E: de::Error, + { + let mut chars = value.chars(); + let platform_char = chars + .next_back() + .ok_or_else(|| E::custom("value cannot be empty"))?; + + let mut platform = Platform::from_char(platform_char); + + let mut name = chars.collect(); + if platform.is_none() { + // Older profiles don't have this field, so we default to PC + platform = Some(Platform::PC); + name = format!("{name}{platform_char}"); + } + + Ok(PlatformName { + name, + platform: platform.unwrap(), + }) + } + } + + deserializer.deserialize_str(SplitFieldVisitor) + } +} + +#[derive(Serialize, Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] +pub enum Platform { + PC, + Xbox, + PS, + Switch, + Mobile, +} + +impl Platform { + #[must_use] + pub fn to_char(self) -> char { + match self { + Self::PC => '\u{e000}', + Self::Xbox => '\u{e001}', + Self::PS => '\u{e002}', + Self::Switch => '\u{e003}', + Self::Mobile => '\u{e004}', + } + } + + #[must_use] + pub fn to_sub_domain(self) -> &'static str { + match self { + Self::PC => "content", + Self::Xbox => "content-xb1", + Self::PS => "content-ps4", + Self::Switch => "content-swi", + Self::Mobile => "content-mob", + } + } + + #[must_use] + pub fn from_char(char: char) -> Option { + match char { + '\u{e000}' => Some(Self::PC), + '\u{e001}' => Some(Self::Xbox), + '\u{e002}' => Some(Self::PS), + '\u{e003}' => Some(Self::Switch), + '\u{e004}' => Some(Self::Mobile), + _ => None, + } + } +} diff --git a/src/profile/models/player_skill.rs b/src/profile/models/player_skill.rs new file mode 100644 index 0000000..55dc086 --- /dev/null +++ b/src/profile/models/player_skill.rs @@ -0,0 +1,27 @@ +use serde::{Deserialize, Serialize}; + +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, Hash)] +pub enum PlayerSkill { + #[serde(rename = "LPP_SPACE")] + Railjack, + #[serde(rename = "LPS_GUNNERY")] + RailjackGunnery, + #[serde(rename = "LPS_TACTICAL")] + RailjackTactical, + #[serde(rename = "LPS_PILOTING")] + RailjackPiloting, + #[serde(rename = "LPS_ENGINEERING")] + RailjackEngineering, + #[serde(rename = "LPS_COMMAND")] + RailjackCommand, + #[serde(rename = "LPP_DRIFTER")] + Drifter, + #[serde(rename = "LPS_DRIFT_RIDING")] + DrifterRiding, + #[serde(rename = "LPS_DRIFT_COMBAT")] + DrifterCombat, + #[serde(rename = "LPS_DRIFT_OPPORTUNITY")] + DrifterOpportunity, + #[serde(rename = "LPS_DRIFT_ENDURANCE")] + DrifterEndurance, +} diff --git a/src/profile/models/profile.rs b/src/profile/models/profile.rs new file mode 100644 index 0000000..cee9ab3 --- /dev/null +++ b/src/profile/models/profile.rs @@ -0,0 +1,644 @@ +#![allow(clippy::struct_excessive_bools)] + +use core::str; +use std::collections::HashMap; + +use serde::{ + Deserialize, + Deserializer, + Serialize, + de, +}; +use serde_json::Value; + +use super::{ + affiliation::Affiliation, + guild_tier::GuildTier, + load_out_inventory::LoadOutInventory, + load_out_preset::LoadOutPreset, + operator_load_out::OperatorLoadOut, + platform::PlatformName, + player_skill::PlayerSkill, + stats::Stats, +}; + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct Profile { + #[serde(rename = "Results")] + pub info: Vec, + + #[serde(deserialize_with = "deserialize_date")] + pub xp_cache_expiry_date: i64, + + pub stats: Option, + // TODO: What is this? + //pub tech_projects: Vec, + + // TODO: What is this? + //pub xp_components: Vec, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct ProfileInfo { + #[serde(deserialize_with = "deserialize_oid")] + pub account_id: String, + + pub display_name: PlatformName, + + #[serde(default)] + pub platform_names: Vec, + + pub player_level: u8, + + pub load_out_preset: LoadOutPreset, + + pub load_out_inventory: LoadOutInventory, + + #[serde(default, deserialize_with = "deserialize_oid_or_none")] + pub guild_id: Option, + + pub guild_name: Option, + + pub guild_tier: Option, + + #[serde(rename = "GuildXP")] + pub guild_xp: Option, + + pub guild_class: Option, + + pub guild_emblem: Option, + + #[serde(default, deserialize_with = "deserialize_oid_or_none")] + pub alliance_id: Option, + + #[serde(default)] + pub player_skills: HashMap, + + pub challenge_progress: Vec, + + #[serde(default)] + pub death_marks: Vec, + + #[serde(default)] + pub harvestable: bool, + + #[serde(default)] + pub death_squadable: bool, + + #[serde(default)] + pub accolades: HashMap, + + #[serde(deserialize_with = "deserialize_date")] + pub created: i64, + + pub migrated_to_console: bool, + + pub missions: Vec, + + #[serde(default)] + pub affiliations: Vec, + + pub daily_affiliation: u32, + + pub daily_affiliation_pvp: u32, + + pub daily_affiliation_library: u32, + + pub daily_affiliation_cetus: u32, + + pub daily_affiliation_quills: u32, + + pub daily_affiliation_solaris: u32, + + pub daily_affiliation_ventkids: u32, + + pub daily_affiliation_vox: u32, + + pub daily_affiliation_entrati: u32, + + pub daily_affiliation_necraloid: u32, + + pub daily_affiliation_zariman: u32, + + pub daily_affiliation_kahl: u32, + + pub daily_affiliation_cavia: u32, + + pub daily_affiliation_hex: u32, + + pub daily_focus: u32, + + pub operator_load_outs: Vec, + + #[serde(default)] + pub unlocked_operator: bool, + + #[serde(default)] + pub unlocked_alignment: bool, + + pub alignment: Option, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct ChallengeProgress { + pub name: String, + + pub progress: u32, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct Mission { + pub tag: String, + + pub completes: u32, + + pub tier: Option, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct Alignment { + pub alignment: i32, + + pub wisdom: i32, +} + +pub(crate) fn deserialize_oid<'de, D>(deserializer: D) -> Result +where + D: Deserializer<'de>, +{ + deserialize_oid_or_none(deserializer)?.ok_or_else(|| de::Error::custom("missing $oid field")) +} + +pub(crate) fn deserialize_oid_or_none<'de, D>(deserializer: D) -> Result, D::Error> +where + D: Deserializer<'de>, +{ + let v: Value = Deserialize::deserialize(deserializer)?; + + Ok(v.get("$oid").and_then(Value::as_str).map(ToOwned::to_owned)) +} + +fn deserialize_date<'de, D>(deserializer: D) -> Result +where + D: Deserializer<'de>, +{ + let v: Value = Deserialize::deserialize(deserializer)?; + + v.get("$date") + .and_then(Value::as_object) + .and_then(|date| date.get("$numberLong").and_then(Value::as_str)) + .ok_or_else(|| de::Error::custom("missing $date or $numberLong field"))? + .parse() + .map_err(|_| de::Error::custom("invalid $numberLong field")) +} + +#[cfg(test)] +mod tests { + + use rstest::rstest; + + use super::*; + use crate::profile::models::{ + focus_school::FocusSchool, + platform::Platform, + }; + + #[allow(clippy::too_many_lines, clippy::float_cmp)] + #[rstest] + fn test_profile_payload_deserialization( + #[files("src/profile/models/fixtures/profile_payload.json")] + #[mode = str] + json: &str, + ) { + let profile: Profile = serde_json::from_str(json).expect("Deserialization failed"); + + assert_eq!(profile.info.len(), 1); + let result = &profile.info[0]; + + assert_eq!(result.account_id, "507f1f77bcf86cd799439011"); + assert_eq!(result.display_name.name, "Player1"); + assert_eq!(result.display_name.platform, Platform::PC); + + assert_eq!(result.platform_names.len(), 5); + assert_eq!(result.platform_names[0].name, "Player1"); + assert_eq!(result.platform_names[0].platform, Platform::PC); + assert_eq!(result.platform_names[1].name, "Player1"); + assert_eq!(result.platform_names[1].platform, Platform::Xbox); + assert_eq!(result.platform_names[2].name, "Player1"); + assert_eq!(result.platform_names[2].platform, Platform::PS); + assert_eq!(result.platform_names[3].name, "Player1"); + assert_eq!(result.platform_names[3].platform, Platform::Switch); + assert_eq!(result.platform_names[4].name, "Player1"); + assert_eq!(result.platform_names[4].platform, Platform::Mobile); + + assert_eq!(result.player_level, 0); + assert!(result.guild_id.is_some()); + + assert_eq!( + result.load_out_preset.focus_school, + Some(FocusSchool::Vazarin) + ); + assert_eq!(result.load_out_preset.preset_icon, ""); + assert!(!result.load_out_preset.favorite); + assert_eq!(result.load_out_preset.name.as_deref(), Some("Preset1")); + + assert_eq!( + result.load_out_preset.warframe.item_id, + "507f1f77bcf86cd799439011" + ); + assert_eq!(result.load_out_preset.warframe.mod_loadout, 0); + assert_eq!(result.load_out_preset.warframe.customization_loadout, 0); + + assert_eq!( + result.load_out_preset.primary.item_id, + "507f1f77bcf86cd799439011" + ); + assert_eq!(result.load_out_preset.primary.mod_loadout, 0); + assert_eq!(result.load_out_preset.primary.customization_loadout, 0); + assert!(!result.load_out_preset.primary.hide); + + assert_eq!( + result.load_out_preset.secondary.item_id, + "507f1f77bcf86cd799439011" + ); + assert_eq!(result.load_out_preset.secondary.mod_loadout, 0); + assert_eq!(result.load_out_preset.secondary.customization_loadout, 0); + + assert_eq!( + result.load_out_preset.melee.item_id, + "507f1f77bcf86cd799439011" + ); + assert_eq!(result.load_out_preset.melee.mod_loadout, 0); + assert_eq!(result.load_out_preset.melee.customization_loadout, 0); + + assert!(result.load_out_preset.h.is_some()); + let load_out_preset_h = result.load_out_preset.h.as_ref().unwrap(); + + assert_eq!(load_out_preset_h.item_id, "507f1f77bcf86cd799439011"); + assert_eq!(load_out_preset_h.mod_loadout, 0); + assert_eq!(load_out_preset_h.customization_loadout, 0); + + assert_eq!(result.load_out_inventory.weapon_skins.len(), 1); + assert_eq!(result.load_out_inventory.weapon_skins[0].item_type, "Item1"); + + assert_eq!(result.load_out_inventory.warframe.len(), 1); + let warframe = &result.load_out_inventory.warframe[0]; + + assert_eq!(warframe.item_type, "Warframe"); + + assert_eq!(warframe.configs.len(), 1); + let config = &warframe.configs[0]; + + assert_eq!(config.base.name, Some("Build1".to_string())); + assert_eq!(config.base.skins.len(), 0); + + assert!(config.base.primary_colors.is_some()); + let primary_colors = config.base.primary_colors.as_ref().unwrap(); + + assert_eq!(primary_colors.t0, Some(0)); + assert_eq!(primary_colors.t1, Some(0)); + assert_eq!(primary_colors.t2, Some(0)); + assert_eq!(primary_colors.t3, Some(0)); + assert_eq!(primary_colors.m0, Some(0)); + assert_eq!(primary_colors.m1, None); + assert_eq!(primary_colors.en, Some(0)); + assert_eq!(primary_colors.e1, Some(0)); + + assert!(config.attachment_colors.is_some()); + let attachment_colors = config.attachment_colors.as_ref().unwrap(); + + assert_eq!(attachment_colors.t0, Some(0)); + assert_eq!(attachment_colors.t1, Some(0)); + assert_eq!(attachment_colors.t2, Some(0)); + assert_eq!(attachment_colors.t3, Some(0)); + assert_eq!(attachment_colors.m0, Some(0)); + assert_eq!(attachment_colors.m1, Some(0)); + assert_eq!(attachment_colors.en, Some(0)); + assert_eq!(attachment_colors.e1, Some(0)); + + assert!(config.sigil_colors.is_some()); + let sigil_colors = config.sigil_colors.as_ref().unwrap(); + + assert_eq!(sigil_colors.t0, Some(0)); + assert_eq!(sigil_colors.t1, Some(0)); + assert_eq!(sigil_colors.t2, Some(0)); + assert_eq!(sigil_colors.t3, Some(0)); + assert_eq!(sigil_colors.m0, Some(0)); + assert_eq!(sigil_colors.m1, Some(0)); + assert_eq!(sigil_colors.en, Some(0)); + assert_eq!(sigil_colors.e1, Some(0)); + + assert_eq!(result.load_out_inventory.primaries.len(), 1); + let primary = &result.load_out_inventory.primaries[0]; + + assert_eq!(primary.item_type, "Primary"); + + assert_eq!(primary.configs.len(), 1); + let config = &primary.configs[0]; + + assert_eq!(config.name, Some("Build1".to_string())); + assert_eq!(config.skins.len(), 0); + + assert!(config.primary_colors.is_some()); + let primary_colors = config.primary_colors.as_ref().unwrap(); + + assert_eq!(primary_colors.t0, Some(0)); + assert_eq!(primary_colors.t1, Some(0)); + assert_eq!(primary_colors.t2, Some(0)); + assert_eq!(primary_colors.t3, Some(0)); + assert_eq!(primary_colors.m0, Some(0)); + assert_eq!(primary_colors.m1, Some(0)); + assert_eq!(primary_colors.en, Some(0)); + assert_eq!(primary_colors.e1, Some(0)); + + assert_eq!(result.load_out_inventory.secondaries.len(), 1); + let secondary = &result.load_out_inventory.secondaries[0]; + + assert_eq!(secondary.item_type, "Pistol"); + + assert_eq!(secondary.configs.len(), 1); + let config = &secondary.configs[0]; + + assert_eq!(config.name, Some("Build1".to_string())); + assert_eq!(config.skins.len(), 0); + + assert!(config.primary_colors.is_some()); + let primary_colors = config.primary_colors.as_ref().unwrap(); + + assert_eq!(primary_colors.t0, Some(0)); + assert_eq!(primary_colors.t1, Some(0)); + assert_eq!(primary_colors.t2, Some(0)); + assert_eq!(primary_colors.t3, Some(0)); + assert_eq!(primary_colors.m0, Some(0)); + assert_eq!(primary_colors.m1, Some(0)); + assert_eq!(primary_colors.en, Some(0)); + assert_eq!(primary_colors.e1, Some(0)); + + assert_eq!(result.load_out_inventory.melee.len(), 1); + let melee = &result.load_out_inventory.melee[0]; + + assert_eq!(melee.item_type, "Melee"); + + assert_eq!(melee.configs.len(), 1); + let config = &melee.configs[0]; + + assert_eq!(config.name, Some("Build1".to_string())); + assert_eq!(config.skins.len(), 1); + + assert!(config.primary_colors.is_some()); + let primary_colors = config.primary_colors.as_ref().unwrap(); + + assert_eq!(primary_colors.t0, Some(0)); + assert_eq!(primary_colors.t1, Some(0)); + assert_eq!(primary_colors.t2, Some(0)); + assert_eq!(primary_colors.t3, Some(0)); + assert_eq!(primary_colors.m0, Some(0)); + assert_eq!(primary_colors.m1, Some(0)); + assert_eq!(primary_colors.en, Some(0)); + assert_eq!(primary_colors.e1, Some(0)); + + assert_eq!(result.load_out_inventory.xp_info.len(), 4); + + assert_eq!( + result.guild_id, + Some("507f1f77bcf86cd799439011".to_string()) + ); + assert_eq!(result.guild_name, Some("Guild1#456".to_string())); + assert_eq!(result.guild_tier, Some(GuildTier::Ghost)); + assert_eq!(result.guild_xp, Some(0)); + assert_eq!(result.guild_class, Some(10)); + assert_eq!(result.guild_emblem, Some(true)); + assert_eq!( + result.alliance_id, + Some("507f1f77bcf86cd799439011".to_string()) + ); + + assert_eq!(result.player_skills.len(), 11); + assert_eq!(result.player_skills[&PlayerSkill::Railjack], 0); + assert_eq!(result.player_skills[&PlayerSkill::RailjackGunnery], 0); + assert_eq!(result.player_skills[&PlayerSkill::RailjackTactical], 0); + assert_eq!(result.player_skills[&PlayerSkill::RailjackPiloting], 0); + assert_eq!(result.player_skills[&PlayerSkill::RailjackEngineering], 0); + assert_eq!(result.player_skills[&PlayerSkill::RailjackCommand], 0); + assert_eq!(result.player_skills[&PlayerSkill::Drifter], 0); + assert_eq!(result.player_skills[&PlayerSkill::DrifterRiding], 0); + assert_eq!(result.player_skills[&PlayerSkill::DrifterCombat], 0); + assert_eq!(result.player_skills[&PlayerSkill::DrifterOpportunity], 0); + assert_eq!(result.player_skills[&PlayerSkill::DrifterEndurance], 0); + + assert_eq!(result.challenge_progress.len(), 1); + assert_eq!(result.challenge_progress[0].name, "Challenge1"); + assert_eq!(result.challenge_progress[0].progress, 0); + + assert_eq!(result.death_marks.len(), 1); + assert_eq!(result.death_marks[0], "DeathMark1"); + + assert!(!result.harvestable); + assert!(!result.death_squadable); + + assert_eq!(result.accolades.len(), 1); + assert_eq!(result.accolades.get("Accolade1"), Some(&true)); + + assert_eq!(result.created, 0); + assert!(!result.migrated_to_console); + + assert_eq!(result.missions.len(), 2); + assert_eq!(result.missions[0].tag, "Mission1"); + assert_eq!(result.missions[0].completes, 3); + assert_eq!(result.missions[0].tier, Some(1)); + + assert_eq!(result.missions[1].tag, "Mission2"); + assert_eq!(result.missions[1].completes, 4); + assert_eq!(result.missions[1].tier, None); + + assert_eq!(result.affiliations.len(), 1); + assert_eq!( + result.affiliations[0].tag, + crate::profile::models::affiliation::AffiliationTag::ArbitersOfHexis + ); + assert_eq!(result.affiliations[0].standing, 200_000); + assert_eq!(result.affiliations[0].title, 4); + + assert_eq!(result.daily_affiliation, 0); + assert_eq!(result.daily_affiliation_pvp, 0); + assert_eq!(result.daily_affiliation_library, 0); + assert_eq!(result.daily_affiliation_cetus, 0); + assert_eq!(result.daily_affiliation_quills, 0); + assert_eq!(result.daily_affiliation_solaris, 0); + assert_eq!(result.daily_affiliation_ventkids, 0); + assert_eq!(result.daily_affiliation_vox, 0); + assert_eq!(result.daily_affiliation_entrati, 0); + assert_eq!(result.daily_affiliation_necraloid, 0); + assert_eq!(result.daily_affiliation_zariman, 0); + assert_eq!(result.daily_affiliation_kahl, 0); + assert_eq!(result.daily_affiliation_cavia, 0); + assert_eq!(result.daily_affiliation_hex, 0); + assert_eq!(result.daily_focus, 0); + + assert_eq!(result.operator_load_outs.len(), 1); + let operator_load_out = &result.operator_load_outs[0]; + + assert_eq!(operator_load_out.skins.len(), 1); + assert_eq!(operator_load_out.skins[0], "Skin1"); + + assert!(operator_load_out.upgrades.is_some()); + let operator_load_out_upgrades = operator_load_out.upgrades.as_ref().unwrap(); + + assert_eq!(operator_load_out_upgrades.len(), 1); + assert_eq!(operator_load_out_upgrades[0], "5f24b0df01109467953ec82b"); + + assert!(operator_load_out.ability_override.is_some()); + let operator_load_out_ability_override = + operator_load_out.ability_override.as_ref().unwrap(); + + assert_eq!(operator_load_out_ability_override.ability, "Ability1"); + assert_eq!(operator_load_out_ability_override.index, 0); + + assert!(operator_load_out.primary_colors.is_some()); + let operator_load_out_primary_colors = operator_load_out.primary_colors.as_ref().unwrap(); + + assert_eq!(operator_load_out_primary_colors.t0, Some(0)); + assert_eq!(operator_load_out_primary_colors.t1, None); + assert_eq!(operator_load_out_primary_colors.t2, None); + assert_eq!(operator_load_out_primary_colors.t3, Some(0)); + assert_eq!(operator_load_out_primary_colors.m0, None); + assert_eq!(operator_load_out_primary_colors.m1, None); + assert_eq!(operator_load_out_primary_colors.en, Some(0)); + + assert!(operator_load_out.eye_colors.is_some()); + let operator_load_out_eye_colors = operator_load_out.eye_colors.as_ref().unwrap(); + + assert_eq!(operator_load_out_eye_colors.t0, Some(0)); + assert_eq!(operator_load_out_eye_colors.t1, Some(0)); + assert_eq!(operator_load_out_eye_colors.t2, Some(0)); + assert_eq!(operator_load_out_eye_colors.t3, Some(0)); + + assert!(operator_load_out.sigil_colors.is_some()); + let operator_load_out_sigil_colors = operator_load_out.sigil_colors.as_ref().unwrap(); + + assert_eq!(operator_load_out_sigil_colors.t1, Some(0)); + assert_eq!(operator_load_out_sigil_colors.en, Some(0)); + + assert!(operator_load_out.cloth_colors.is_some()); + let operator_load_out_cloth_colors = operator_load_out.cloth_colors.as_ref().unwrap(); + + assert_eq!(operator_load_out_cloth_colors.t0, Some(0)); + assert_eq!(operator_load_out_cloth_colors.t1, Some(0)); + assert_eq!(operator_load_out_cloth_colors.t2, Some(0)); + assert_eq!(operator_load_out_cloth_colors.t3, Some(0)); + assert_eq!(operator_load_out_cloth_colors.m0, None); + assert_eq!(operator_load_out_cloth_colors.m1, None); + assert_eq!(operator_load_out_cloth_colors.en, Some(0)); + + assert!(result.unlocked_operator); + assert!(result.unlocked_alignment); + + assert!(result.alignment.is_some()); + let alignment = result.alignment.as_ref().unwrap(); + + assert_eq!(alignment.alignment, 0); + assert_eq!(alignment.wisdom, 0); + + assert_eq!(profile.xp_cache_expiry_date, 0); + + assert!(profile.stats.is_some()); + let stats = profile.stats.as_ref().unwrap(); + + assert_eq!(stats.ciphers_failed, 0); + assert_eq!(stats.ciphers_solved, 0); + assert_eq!(stats.cipher_time, 0.0); + assert_eq!(stats.capture_event_score, 0); + assert_eq!(stats.deaths, 0); + assert_eq!(stats.rating, 0); + + assert_eq!(stats.weapons.len(), 1); + assert_eq!(stats.weapons[0].unique_name, "Weapon1"); + assert_eq!(stats.weapons[0].headshots, Some(0)); + assert_eq!(stats.weapons[0].hits, Some(0)); + assert_eq!(stats.weapons[0].fired, Some(0)); + assert_eq!(stats.weapons[0].kills, Some(0)); + assert_eq!(stats.weapons[0].assists, Some(0)); + assert_eq!(stats.weapons[0].xp, Some(0)); + assert_eq!(stats.weapons[0].equip_time, 0.0); + + assert_eq!(stats.enemies.len(), 1); + assert_eq!(stats.enemies[0].unique_name, "Enemy1"); + assert_eq!(stats.enemies[0].executions, Some(0)); + assert_eq!(stats.enemies[0].headshots, Some(0)); + assert_eq!(stats.enemies[0].kills, Some(0)); + assert_eq!(stats.enemies[0].assists, Some(0)); + assert_eq!(stats.enemies[0].deaths, Some(0)); + + assert_eq!(stats.heal_count, 0); + assert_eq!(stats.income, 0); + assert_eq!(stats.melee_kills, 0); + assert_eq!(stats.missions_dumped, 0); + assert_eq!(stats.missions_failed, 0); + assert_eq!(stats.missions_interrupted, 0); + assert_eq!(stats.missions_quit, 0); + assert_eq!(stats.missions_completed, 0); + + assert_eq!(stats.missions.len(), 1); + assert_eq!(stats.missions[0].unique_name, "Mission1"); + assert_eq!(stats.missions[0].high_score, 0); + + assert_eq!(stats.time_played_sec, 0.0); + assert_eq!(stats.pickup_count, 0); + assert_eq!(stats.player_level, 0); + assert_eq!(stats.rank, 0); + assert_eq!(stats.revive_count, 0); + assert_eq!(stats.sabotage_event_score, Some(0)); + assert_eq!(stats.survival_event_score, Some(0)); + + assert_eq!(stats.abilities.len(), 1); + assert_eq!(stats.abilities[0].unique_name, "Ability1"); + assert_eq!(stats.abilities[0].used, 0); + + assert_eq!(stats.infested_event_score, Some(0)); + + assert_eq!(stats.scans.len(), 1); + assert_eq!(stats.scans[0].unique_name, "Scan1"); + assert_eq!(stats.scans[0].scans, 0); + + assert_eq!(stats.dojo_obstacle_score, Some(0)); + + assert_eq!(stats.pvp.len(), 2); + assert_eq!(stats.pvp[0].unique_name, "Suit1"); + assert_eq!(stats.pvp[0].suit_kills, Some(0)); + assert_eq!(stats.pvp[0].suit_deaths, Some(0)); + assert_eq!(stats.pvp[0].weapon_kills, None); + + assert_eq!(stats.pvp[1].unique_name, "Weapon1"); + assert_eq!(stats.pvp[1].weapon_kills, Some(0)); + assert_eq!(stats.pvp[1].suit_kills, None); + assert_eq!(stats.pvp[1].suit_deaths, None); + + assert_eq!(stats.fomorian_event_score, Some(0)); + assert_eq!(stats.zephyr_score, Some(0)); + assert_eq!(stats.sentinel_game_score, Some(0)); + assert_eq!(stats.project_sinister_event_score, Some(0)); + assert_eq!(stats.pvp_games_pending_mask, Some(0)); + assert_eq!(stats.colonist_rescue_event_score_max, Some(0)); + assert_eq!(stats.ambulas_event_score_max, Some(0)); + + assert_eq!(stats.races.len(), 1); + assert_eq!(stats.races.get("Race1"), Some(&0)); + + assert_eq!(stats.halloween_19_score_max, Some(0)); + assert_eq!(stats.flotilla_event_score, Some(0)); + assert_eq!(stats.flotilla_ground_badges_tier_1, Some(0)); + assert_eq!(stats.flotilla_ground_badges_tier_2, Some(0)); + assert_eq!(stats.flotilla_ground_badges_tier_3, Some(0)); + assert_eq!(stats.flotilla_space_badges_tier_1, Some(0)); + assert_eq!(stats.flotilla_space_badges_tier_2, Some(0)); + assert_eq!(stats.flotilla_space_badges_tier_3, Some(0)); + assert_eq!(stats.mech_survival_score_max, Some(0)); + assert_eq!(stats.caliber_chicks_score, Some(0)); + assert_eq!(stats.guild_name, Some("Guild1#456".to_string())); + } +} diff --git a/src/profile/models/stats.rs b/src/profile/models/stats.rs new file mode 100644 index 0000000..71585d9 --- /dev/null +++ b/src/profile/models/stats.rs @@ -0,0 +1,212 @@ +use std::collections::HashMap; + +use serde::{ + Deserialize, + Deserializer, +}; +use serde_json::Value; + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +pub struct Stats { + pub ciphers_failed: u32, + + pub ciphers_solved: u32, + + pub cipher_time: f64, + + pub capture_event_score: u32, + + pub deaths: u32, + + pub rating: i32, + + #[serde(default)] + pub weapons: Vec, + + #[serde(default)] + pub enemies: Vec, + + pub heal_count: u32, + + pub income: u64, + + pub melee_kills: u32, + + pub missions_dumped: u32, + + pub missions_failed: u32, + + pub missions_interrupted: u32, + + pub missions_quit: u32, + + pub missions_completed: u32, + + #[serde(default)] + pub missions: Vec, + + pub time_played_sec: f64, + + pub pickup_count: u32, + + pub player_level: u8, + + pub rank: u8, + + pub revive_count: u32, + + pub sabotage_event_score: Option, + + pub survival_event_score: Option, + + #[serde(default)] + pub abilities: Vec, + + pub infested_event_score: Option, + + #[serde(default)] + pub scans: Vec, + + pub dojo_obstacle_score: Option, + + #[serde(default, rename = "PVP")] + pub pvp: Vec, + + pub fomorian_event_score: Option, + + pub zephyr_score: Option, + + pub sentinel_game_score: Option, + + pub project_sinister_event_score: Option, + + pub pvp_games_pending_mask: Option, + + pub colonist_rescue_event_score_max: Option, + + pub ambulas_event_score_max: Option, + + #[serde(default, deserialize_with = "deserialize_high_scores")] + pub races: HashMap, + + pub halloween_19_score_max: Option, + + pub flotilla_event_score: Option, + + pub flotilla_ground_badges_tier_1: Option, + + pub flotilla_ground_badges_tier_2: Option, + + pub flotilla_ground_badges_tier_3: Option, + + pub flotilla_space_badges_tier_1: Option, + + pub flotilla_space_badges_tier_2: Option, + + pub flotilla_space_badges_tier_3: Option, + + pub mech_survival_score_max: Option, + + pub caliber_chicks_score: Option, + + pub guild_name: Option, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Weapon { + #[serde(rename = "type")] + pub unique_name: String, + + pub xp: Option, + + #[serde(default)] + pub equip_time: f64, + + pub headshots: Option, + + pub kills: Option, + + pub assists: Option, + + pub hits: Option, + + pub fired: Option, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Enemy { + #[serde(rename = "type")] + pub unique_name: String, + + pub executions: Option, + + pub headshots: Option, + + pub kills: Option, + + pub assists: Option, + + pub deaths: Option, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Mission { + #[serde(rename = "type")] + pub unique_name: String, + + pub high_score: u32, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Ability { + #[serde(rename = "type")] + pub unique_name: String, + + pub used: u32, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Scan { + #[serde(rename = "type")] + pub unique_name: String, + + pub scans: u32, +} + +#[derive(Deserialize, Debug, Clone)] +#[serde(rename_all = "camelCase")] +pub struct Pvp { + #[serde(rename = "type")] + pub unique_name: String, + + pub suit_kills: Option, + + pub suit_deaths: Option, + + pub weapon_kills: Option, +} + +#[allow(clippy::cast_possible_truncation)] +fn deserialize_high_scores<'de, D>(deserializer: D) -> Result, D::Error> +where + D: Deserializer<'de>, +{ + let v: Value = Deserialize::deserialize(deserializer)?; + let mut map = HashMap::new(); + + if let Value::Object(obj) = v { + for (key, value) in obj { + if let Some(high_score) = value.get("highScore").and_then(Value::as_u64) { + map.insert(key.clone(), high_score as u32); + } + } + } + + Ok(map) +} diff --git a/src/worldstate/client.rs b/src/worldstate/client.rs index e6e34b5..813e960 100644 --- a/src/worldstate/client.rs +++ b/src/worldstate/client.rs @@ -1,45 +1,46 @@ +#![allow(clippy::missing_errors_doc)] + //! A client to do all sorts of things with the API use reqwest::StatusCode; use super::{ - error::ApiError, + Queryable, + TimedEvent, + error::Error, + language::Language, models::items::Item, -}; -#[allow(unused)] -use crate::ws::TimedEvent; -use crate::{ - worldstate::models::items::{ - map_category_to_item, - Category, + utils::{ + Change, + CrossDiff, }, - ws::Queryable, }; -#[derive(serde::Deserialize)] -struct DummyCategory { - category: Category, -} - /// The client that acts as a convenient way to query models. /// /// ## Example -/// ```rust,no_run -/// use warframe::worldstate::prelude as wf; +/// ```rust +/// use warframe::worldstate::{ +/// Client, +/// Error, +/// queryable::{ +/// Cetus, +/// Fissure, +/// }, +/// }; /// /// #[tokio::main] -/// async fn main() -> Result<(), wf::ApiError> { -/// let client = wf::Client::new(); +/// async fn main() -> Result<(), Error> { +/// let client = Client::new(); /// -/// let cetus: wf::Cetus = client.fetch::().await?; -/// let fissures: Vec = client.fetch::().await?; +/// let cetus: Cetus = client.fetch::().await?; +/// let fissures: Vec = client.fetch::().await?; /// /// Ok(()) /// } /// ``` /// -/// Check [Models](crate::worldstate::models) for an alternative way of -/// querying/[`fetch`](Client::fetch)ing. +/// Check the [queryable](crate::worldstate::queryable) module for all queryable types. #[derive(Default, Debug, Clone)] pub struct Client { session: reqwest::Client, @@ -47,8 +48,9 @@ pub struct Client { impl Client { /// Creates a new [Client]. + #[must_use] pub fn new() -> Self { - Default::default() + Self::default() } } @@ -56,22 +58,28 @@ impl Client { impl Client { /// Fetches an instance of a specified model. /// - /// # Examples - /// - /// ```rust - /// use warframe::worldstate::prelude as wf; + /// # Example + /// ```rust,no_run + /// use warframe::worldstate::{ + /// Client, + /// Error, + /// queryable::{ + /// Cetus, + /// Fissure, + /// }, + /// }; /// /// #[tokio::main] - /// async fn main() -> Result<(), wf::ApiError> { - /// let client = wf::Client::new(); + /// async fn main() -> Result<(), Error> { + /// let client = Client::new(); /// - /// let cetus: wf::Cetus = client.fetch::().await?; - /// let fissures: Vec = client.fetch::().await?; + /// let cetus: Cetus = client.fetch::().await?; + /// let fissures: Vec = client.fetch::().await?; /// /// Ok(()) /// } /// ``` - pub async fn fetch(&self) -> Result + pub async fn fetch(&self) -> Result where T: Queryable, { @@ -82,28 +90,28 @@ impl Client { /// /// # Examples /// - /// ```rust - /// use warframe::worldstate::prelude as wf; + /// ```rust,no_run + /// use warframe::worldstate::{ + /// Client, + /// Error, + /// Language, + /// queryable::{ + /// Cetus, + /// Fissure, + /// }, + /// }; /// /// #[tokio::main] - /// async fn main() -> Result<(), wf::ApiError> { - /// let client = wf::Client::new(); + /// async fn main() -> Result<(), Error> { + /// let client = Client::new(); /// - /// let cetus: wf::Cetus = client - /// .fetch_using_lang::(wf::Language::ZH) - /// .await?; - /// let fissures: Vec = client - /// .fetch_using_lang::(wf::Language::ZH) - /// .await?; + /// let cetus: Cetus = client.fetch_using_lang::(Language::ZH).await?; + /// let fissures: Vec = client.fetch_using_lang::(Language::ZH).await?; /// /// Ok(()) /// } /// ``` - #[cfg(feature = "multilangual")] - pub async fn fetch_using_lang( - &self, - language: crate::ws::Language, - ) -> Result + pub async fn fetch_using_lang(&self, language: Language) -> Result where T: Queryable, { @@ -114,24 +122,31 @@ impl Client { /// /// # Examples /// - /// ```rust + /// ```rust,no_run /// use warframe::worldstate::{ - /// models::items::Item, - /// prelude as wf, + /// Client, + /// Error, + /// items::{ + /// Item, + /// weapon::Weapon, + /// }, /// }; /// /// #[tokio::main] - /// async fn main() -> Result<(), wf::ApiError> { - /// let client = wf::Client::new(); + /// async fn main() -> Result<(), Error> { + /// let client = Client::new(); /// - /// let sigil = client.query_item("Accord Sigil").await?; + /// let weapon = client.query_item("Acceltra Prime").await?; /// - /// assert!(matches!(sigil, Some(Item::Sigil(_)))); + /// assert!(match weapon { + /// Some(Item::Weapon(weapon)) => matches!(*weapon, Weapon::Rifle(_)), + /// _ => false, + /// }); /// /// Ok(()) /// } /// ``` - pub async fn query_item(&self, query: &str) -> Result, ApiError> { + pub async fn query_item(&self, query: &str) -> Result, Error> { self.query_by_url(format!( "https://api.warframestat.us/items/{}/?language=en", urlencoding::encode(query), @@ -143,18 +158,20 @@ impl Client { /// /// # Examples /// - /// ```rust + /// ```rust,no_run /// use warframe::worldstate::{ - /// models::items::Item, - /// prelude as wf, + /// Client, + /// Error, + /// Language, + /// items::Item, /// }; /// /// #[tokio::main] - /// async fn main() -> Result<(), wf::ApiError> { - /// let client = wf::Client::new(); + /// async fn main() -> Result<(), Error> { + /// let client = Client::new(); /// /// let nano_spores = client - /// .query_item_using_lang("Nanosporen", wf::Language::DE) + /// .query_item_using_lang("Nanosporen", Language::DE) /// .await?; /// /// assert!(matches!(nano_spores, Some(Item::Misc(_)))); @@ -162,12 +179,11 @@ impl Client { /// Ok(()) /// } /// ``` - #[cfg(feature = "multilangual")] pub async fn query_item_using_lang( &self, query: &str, - language: crate::ws::Language, - ) -> Result, ApiError> { + language: Language, + ) -> Result, Error> { self.query_by_url(format!( "https://api.warframestat.us/items/{}/?language={}", urlencoding::encode(query), @@ -176,7 +192,7 @@ impl Client { .await } - async fn query_by_url(&self, url: String) -> Result, ApiError> { + async fn query_by_url(&self, url: String) -> Result, Error> { let response = self.session.get(url).send().await?; if response.status() == StatusCode::NOT_FOUND { @@ -184,17 +200,12 @@ impl Client { } let json = response.text().await?; - let category = serde_json::from_str::(&json)?.category; - let item = map_category_to_item(category, &json)?; + let item = serde_json::from_str::(&json)?; Ok(Some(item)) } -} -// impl UPDATE LISTENER -#[cfg(feature = "worldstate_listeners")] -impl Client { /// Asynchronous method that continuously fetches updates for a given type `T` and invokes a /// callback function. /// @@ -211,15 +222,18 @@ impl Client { /// /// # Returns /// - /// - `Result<(), ApiError>`: Returns `Ok(())` if the operation is successful, otherwise returns - /// an `ApiError`. + /// - `Result<(), Error>`: Returns `Ok(())` if the operation is successful, otherwise returns an + /// `Error`. /// /// # Example /// /// ```rust /// use std::error::Error; /// - /// use warframe::worldstate::prelude::*; + /// use warframe::worldstate::{ + /// Client, + /// queryable::Cetus, + /// }; /// /// async fn on_cetus_update(before: &Cetus, after: &Cetus) { /// println!("BEFORE : {before:?}"); @@ -228,30 +242,28 @@ impl Client { /// /// #[tokio::main] /// async fn main() -> Result<(), Box> { - /// env_logger::builder() - /// .filter_level(log::LevelFilter::Debug) - /// .init(); - /// /// let client = Client::new(); /// /// client.call_on_update(on_cetus_update); // don't forget to start it as a bg task (or .await it)s /// Ok(()) /// } /// ``` - pub async fn call_on_update(&self, callback: Callback) -> Result<(), ApiError> + #[allow(clippy::missing_panics_doc)] + pub async fn call_on_update(&self, callback: Callback) -> Result<(), Error> where T: TimedEvent + Queryable, - for<'any> Callback: crate::worldstate::listener::ListenerCallback<'any, T>, + for<'any> Callback: AsyncFn(&'any T, &'any T), { - log::debug!("{} (LISTENER) :: Started", std::any::type_name::()); + tracing::debug!("{} (LISTENER) :: Started", std::any::type_name::()); let mut item = self.fetch::().await?; loop { if item.expiry() <= chrono::offset::Utc::now() { - log::debug!( - "{} (LISTENER) :: Fetching new possible update", - std::any::type_name::() + tracing::debug!( + listener = %std::any::type_name::(), + "(LISTENER) Fetching new possible update" ); + tokio::time::sleep(std::time::Duration::from_secs(30)).await; let new_item = self.fetch::().await?; @@ -259,17 +271,19 @@ impl Client { if item.expiry() >= new_item.expiry() { continue; } - callback.call(&item, &new_item).await; + + callback(&item, &new_item).await; item = new_item; } let time_to_sleep = item.expiry() - chrono::offset::Utc::now(); - log::debug!( - "{} (LISTENER) :: Sleeping {} seconds", - std::any::type_name::(), - time_to_sleep.num_seconds() + tracing::debug!( + listener = %std::any::type_name::(), + sleep_duration = %time_to_sleep.num_seconds(), + "(LISTENER) Sleeping" ); + tokio::time::sleep(time_to_sleep.to_std().unwrap()).await; } } @@ -290,15 +304,19 @@ impl Client { /// /// # Returns /// - /// - `Result<(), ApiError>`: Returns `Ok(())` if the operation is successful, otherwise returns - /// an `ApiError`. + /// - `Result<(), Error>`: Returns `Ok(())` if the operation is successful, otherwise returns an + /// `Error`. /// /// # Example /// /// ```rust /// use std::error::Error; /// - /// use warframe::worldstate::{listener::Change, prelude::*}; + /// use warframe::worldstate::{ + /// Client, + /// Change, + /// queryable::Fissure, + /// }; /// /// /// This function will be called once a fissure updates. /// /// This will send a request to the corresponding endpoint once every 30s @@ -312,11 +330,6 @@ impl Client { /// /// #[tokio::main] /// async fn main() -> Result<(), Box> { - /// // Logging setup - /// env_logger::builder() - /// .filter_level(log::LevelFilter::Debug) - /// .init(); - /// /// // initialize a client (included in the prelude) /// let client = Client::new(); /// @@ -326,50 +339,50 @@ impl Client { /// Ok(()) /// } /// ``` - pub async fn call_on_nested_update( - &self, - callback: Callback, - ) -> Result<(), ApiError> + #[allow(clippy::missing_panics_doc)] + #[allow(clippy::missing_errors_doc)] + pub async fn call_on_nested_update(&self, callback: Callback) -> Result<(), Error> where T: TimedEvent + Queryable> + PartialEq, - for<'any> Callback: crate::worldstate::listener::NestedListenerCallback<'any, T>, + for<'any> Callback: AsyncFn(&'any T, Change), { - log::debug!("{} (LISTENER) :: Started", std::any::type_name::>()); + tracing::debug!( + listener = %std::any::type_name::>(), + "(LISTENER) Started" + ); + let mut items = self.fetch::().await?; loop { tokio::time::sleep(std::time::Duration::from_secs(30)).await; - log::debug!( - "{} (LISTENER) :: Fetching new possible state", - std::any::type_name::>() + tracing::debug!( + listener = %std::any::type_name::>(), + "(LISTENER) Fetching new possible state" ); + let new_items = self.fetch::().await?; - let diff = crate::worldstate::listener::CrossDiff::new(&items, &new_items); + let diff = CrossDiff::new(&items, &new_items); let removed_items = diff.removed(); let added_items = diff.added(); if !removed_items.is_empty() || !added_items.is_empty() { - log::debug!( - "{} (LISTENER) :: Found changes, proceeding to call callback with every change", - std::any::type_name::>() + tracing::debug!( + listener = %std::any::type_name::>(), + "(LISTENER) Found changes, proceeding to call callback with every change" ); for (item, change) in removed_items.into_iter().chain(added_items) { // call callback fn - callback.call(item, change).await; + callback(item, change).await; } items = new_items; } } } -} -// impl UPDATE LISTENER (with state) -#[cfg(feature = "worldstate_listeners")] -impl Client { /// Asynchronous method that calls a callback function with state on update. /// /// # Arguments @@ -388,14 +401,14 @@ impl Client { /// # Returns /// /// This method returns a `Result` indicating whether the operation was successful or an - /// `ApiError` occurred. The result is `Ok(())` if the operation was successful. + /// `Error` occurred. The result is `Ok(())` if the operation was successful. /// /// # Examples /// /// ```rust /// use std::{error::Error, sync::Arc}; /// - /// use warframe::worldstate::prelude::*; + /// use warframe::worldstate::{Client, queryable::Cetus}; /// /// // Define some state /// #[derive(Debug)] @@ -412,10 +425,6 @@ impl Client { /// /// #[tokio::main] /// async fn main() -> Result<(), Box> { - /// env_logger::builder() - /// .filter_level(log::LevelFilter::Debug) - /// .init(); - /// /// let client = Client::new(); /// /// // Note that the state will be cloned into the handler, so Arc is preferred @@ -429,24 +438,26 @@ impl Client { /// Ok(()) /// } /// ``` + #[allow(clippy::missing_panics_doc)] pub async fn call_on_update_with_state( &self, callback: Callback, state: S, - ) -> Result<(), ApiError> + ) -> Result<(), Error> where S: Sized + Send + Sync + Clone, T: TimedEvent + Queryable, - for<'any> Callback: crate::worldstate::listener::StatefulListenerCallback<'any, T, S>, + for<'any> Callback: AsyncFn(S, &'any T, &'any T), { let mut item = self.fetch::().await?; loop { if item.expiry() <= chrono::offset::Utc::now() { - log::debug!( - "{} (LISTENER) :: Fetching possible update", - std::any::type_name::() + tracing::debug!( + listener = %std::any::type_name::(), + "(LISTENER) Fetching new possible state" ); + tokio::time::sleep(std::time::Duration::from_secs(30)).await; let new_item = self.fetch::().await?; @@ -454,19 +465,18 @@ impl Client { if item.expiry() >= new_item.expiry() { continue; } - callback - .call_with_state(state.clone(), &item, &new_item) - .await; + callback(state.clone(), &item, &new_item).await; item = new_item; } let time_to_sleep = item.expiry() - chrono::offset::Utc::now(); - log::debug!( - "{} (LISTENER) :: Sleeping {} seconds", - std::any::type_name::(), - time_to_sleep.num_seconds() + tracing::debug!( + listener = %std::any::type_name::(), + sleep_duration = %time_to_sleep.num_seconds(), + "(LISTENER) Sleeping" ); + tokio::time::sleep(time_to_sleep.to_std().unwrap()).await; } } @@ -488,14 +498,14 @@ impl Client { /// # Returns /// /// Returns `Ok(())` if the callback function is successfully called on each change, or an - /// `ApiError` if an error occurs. + /// `Error` if an error occurs. /// /// # Example /// /// ```rust /// use std::{error::Error, sync::Arc}; /// - /// use warframe::worldstate::{listener::Change, prelude::*}; + /// use warframe::worldstate::{Change, Client, queryable::Fissure}; /// /// // Define some state /// #[derive(Debug)] @@ -514,10 +524,6 @@ impl Client { /// /// #[tokio::main] /// async fn main() -> Result<(), Box> { - /// env_logger::builder() - /// .filter_level(log::LevelFilter::Debug) - /// .init(); - /// /// let client = Client::new(); /// /// // Note that the state will be cloned into the handler, so Arc is preferred @@ -531,42 +537,48 @@ impl Client { /// Ok(()) /// } /// ``` + #[allow(clippy::missing_panics_doc)] pub async fn call_on_nested_update_with_state( &self, callback: Callback, state: S, - ) -> Result<(), ApiError> + ) -> Result<(), Error> where S: Sized + Send + Sync + Clone, T: Queryable> + TimedEvent + PartialEq, - for<'any> Callback: crate::worldstate::listener::StatefulNestedListenerCallback<'any, T, S>, + for<'any> Callback: AsyncFn(S, &'any T, Change), { - log::debug!("{} (LISTENER) :: Started", std::any::type_name::>()); + tracing::debug!( + listener = %std::any::type_name::>(), + "(LISTENER) Started" + ); + let mut items = self.fetch::().await?; loop { tokio::time::sleep(std::time::Duration::from_secs(30)).await; - log::debug!( - "{} (LISTENER) :: Fetching new possible state", - std::any::type_name::>() + tracing::debug!( + listener = %std::any::type_name::>(), + "(LISTENER) Fetching new possible state" ); + let new_items = self.fetch::().await?; - let diff = crate::worldstate::listener::CrossDiff::new(&items, &new_items); + let diff = CrossDiff::new(&items, &new_items); let removed_items = diff.removed(); let added_items = diff.added(); if !removed_items.is_empty() || !added_items.is_empty() { - log::debug!( - "{} (LISTENER) :: Found changes, proceeding to call callback with every change", - std::any::type_name::>() + tracing::debug!( + listener = %std::any::type_name::>(), + "(LISTENER) Found changes, proceeding to call callback with every change" ); for (item, change) in removed_items.into_iter().chain(added_items) { // call callback fn - callback.call_with_state(state.clone(), item, change).await; + callback(state.clone(), item, change).await; } items = new_items; } diff --git a/src/worldstate/error.rs b/src/worldstate/error.rs index fa81551..4768926 100644 --- a/src/worldstate/error.rs +++ b/src/worldstate/error.rs @@ -14,12 +14,12 @@ pub struct ApiErrorResponse { /// The Error type of this crate #[derive(Debug, thiserror::Error)] -pub enum ApiError { +pub enum Error { /// An error from the sent request #[error("Couldn't send request: {0}")] FaultyRequest(#[from] reqwest::Error), - /// An error that occurs when the deserialization of serde_json fails + /// An error that occurs when the deserialization of `serde_json` fails #[error("Couldn't deserialize json body: {0}")] FailedDeserialization(#[from] serde_json::Error), diff --git a/src/worldstate/fixtures/alert.rs b/src/worldstate/fixtures/alert.rs new file mode 100644 index 0000000..12ad946 --- /dev/null +++ b/src/worldstate/fixtures/alert.rs @@ -0,0 +1,174 @@ +use crate::fixture; + +fixture! { + alert, +r#" +[ + { + "id": "677d45a494ad716c90006b9a", + "activation": "2025-01-24T16:00:00.000Z", + "startString": "-1h 36m 0s", + "expiry": "2025-01-27T16:00:00.000Z", + "active": true, + "mission": { + "node": "Laomedeia (Neptune)", + "nodeKey": "Laomedeia (Neptune)", + "type": "Disruption", + "typeKey": "Disruption", + "faction": "Corpus", + "factionKey": "Corpus", + "reward": { + "items": [ + "Hollow Point" + ], + "countedItems": [], + "credits": 30000, + "asString": "Hollow Point + 30000cr", + "itemString": "Hollow Point", + "thumbnail": "", + "color": 5198940 + }, + "minEnemyLevel": 30, + "maxEnemyLevel": 35, + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "levelOverride": "Corpus Ship Disruption", + "enemySpec": "Corpus Ship Survival A", + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + "eta": "2d 22h 23m 59s", + "rewardTypes": [ + "other" + ] + }, + { + "id": "677d4434074e34d5b9069c71", + "activation": "2025-01-15T19:00:00.000Z", + "startString": "-8d 22h 36m 0s", + "expiry": "2025-02-15T19:00:00.000Z", + "active": true, + "mission": { + "node": "Tharsis (Mars)", + "nodeKey": "Tharsis (Mars)", + "type": "Mobile Defense", + "typeKey": "Mobile Defense", + "faction": "Grineer", + "factionKey": "Grineer", + "reward": { + "items": [ + "Giving Snake Glyph" + ], + "countedItems": [], + "credits": 10000, + "asString": "Giving Snake Glyph + 10000cr", + "itemString": "Giving Snake Glyph", + "thumbnail": "", + "color": 5198940 + }, + "minEnemyLevel": 10, + "maxEnemyLevel": 15, + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "levelOverride": "Grineer Settlement Mobile Defense", + "enemySpec": "Desert Grineer Squad One", + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + "eta": "22d 1h 23m 59s", + "rewardTypes": [ + "other" + ] + } +] +"# +--- +r#" +[ + { + "id": "677d45a494ad716c90006b9a", + "activation": "2025-01-24T16:00:00.000Z", + "startString": "-1h 50m 50s", + "expiry": "2025-01-27T16:00:00.000Z", + "active": true, + "mission": { + "node": "Laomedeia (海王星)", + "nodeKey": "Laomedeia (Neptune)", + "type": "中断", + "typeKey": "Disruption", + "faction": "Corpus", + "factionKey": "Corpus", + "reward": { + "items": [ + "Hollow Point" + ], + "countedItems": [], + "credits": 30000, + "asString": "Hollow Point + 30000cr", + "itemString": "Hollow Point", + "thumbnail": "", + "color": 5198940 + }, + "minEnemyLevel": 30, + "maxEnemyLevel": 35, + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "levelOverride": "Corpus Ship Disruption", + "enemySpec": "Corpus Ship Survival A", + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + "eta": "2d 22h 9m 9s", + "rewardTypes": [ + "other" + ] + }, + { + "id": "677d4434074e34d5b9069c71", + "activation": "2025-01-15T19:00:00.000Z", + "startString": "-8d 22h 50m 50s", + "expiry": "2025-02-15T19:00:00.000Z", + "active": true, + "mission": { + "node": "Tharsis (火星)", + "nodeKey": "Tharsis (Mars)", + "type": "移動防禦", + "typeKey": "Mobile Defense", + "faction": "Grineer", + "factionKey": "Grineer", + "reward": { + "items": [ + "Giving Snake Glyph" + ], + "countedItems": [], + "credits": 10000, + "asString": "Giving Snake Glyph + 10000cr", + "itemString": "Giving Snake Glyph", + "thumbnail": "", + "color": 5198940 + }, + "minEnemyLevel": 10, + "maxEnemyLevel": 15, + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "levelOverride": "Grineer Settlement Mobile Defense", + "enemySpec": "Desert Grineer Squad One", + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + "eta": "22d 1h 9m 9s", + "rewardTypes": [ + "other" + ] + } +] +"# +} diff --git a/src/worldstate/fixtures/arbitration.rs b/src/worldstate/fixtures/arbitration.rs new file mode 100644 index 0000000..0a58e62 --- /dev/null +++ b/src/worldstate/fixtures/arbitration.rs @@ -0,0 +1,32 @@ +use crate::fixture; + +fixture! { + arbitration, +r#" +{ + "node": "SolNode000", + "nodeKey": "SolNode000", + "activation": "1970-01-01T00:00:00.000Z", + "expiry": "+275760-09-13T00:00:00.000Z", + "enemy": "Tenno", + "type": "Unknown", + "typeKey": "Unknown", + "archwing": false, + "sharkwing": false +} +"# +--- +r#" +{ + "node": "SolNode000", + "nodeKey": "SolNode000", + "activation": "1970-01-01T00:00:00.000Z", + "expiry": "+275760-09-13T00:00:00.000Z", + "enemy": "Tenno", + "type": "Unknown", + "typeKey": "Unknown", + "archwing": false, + "sharkwing": false +} +"# +} diff --git a/src/worldstate/fixtures/archon_hunt.rs b/src/worldstate/fixtures/archon_hunt.rs new file mode 100644 index 0000000..ecf81fe --- /dev/null +++ b/src/worldstate/fixtures/archon_hunt.rs @@ -0,0 +1,114 @@ +use crate::fixture; + +fixture! { + archon_hunt, +r#" +{ + "id": "678d8e7e92bac20351c1c18d", + "activation": "2025-01-20T00:00:00.000Z", + "startString": "-4d 18h 22m 0s", + "expiry": "2025-01-27T00:00:00.000Z", + "active": true, + "rewardPool": "Archon Sortie Rewards", + "variants": [], + "missions": [ + { + "node": "Eurasia (Earth)", + "nodeKey": "Eurasia (Earth)", + "type": "Spy", + "typeKey": "Spy", + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + { + "node": "Everest (Earth)", + "nodeKey": "Everest (Earth)", + "type": "Interception", + "typeKey": "Interception", + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + { + "node": "Oro (Earth)", + "nodeKey": "Oro (Earth)", + "type": "Assassination", + "typeKey": "Assassination", + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + } + ], + "boss": "Archon Boreal", + "faction": "Narmer", + "factionKey": "Narmer", + "expired": false, + "eta": "2d 5h 37m 59s" +} +"# +--- +r#" +{ + "id": "678d8e7e92bac20351c1c18d", + "activation": "2025-01-20T00:00:00.000Z", + "startString": "-4d 18h 21m 20s", + "expiry": "2025-01-27T00:00:00.000Z", + "active": true, + "rewardPool": "Archon Sortie Rewards", + "variants": [], + "missions": [ + { + "node": "Eurasia (地球)", + "nodeKey": "Eurasia (Earth)", + "type": "間諜", + "typeKey": "Spy", + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + { + "node": "Everest (地球)", + "nodeKey": "Everest (Earth)", + "type": "攔截", + "typeKey": "Interception", + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + }, + { + "node": "Oro (地球)", + "nodeKey": "Oro (Earth)", + "type": "刺殺", + "typeKey": "Assassination", + "nightmare": false, + "archwingRequired": false, + "isSharkwing": false, + "advancedSpawners": [], + "requiredItems": [], + "levelAuras": [] + } + ], + "boss": "诡文枭主", + "faction": "合一众", + "factionKey": "Narmer", + "expired": false, + "eta": "2d 5h 38m 39s" +} +"# +} diff --git a/src/worldstate/fixtures/cambion_drift.rs b/src/worldstate/fixtures/cambion_drift.rs new file mode 100644 index 0000000..00068d5 --- /dev/null +++ b/src/worldstate/fixtures/cambion_drift.rs @@ -0,0 +1,26 @@ +use crate::fixture; + +fixture! { + cambion_drift, +r#" +{ + "id": "cambionCycle1740336060000", + "activation": "2025-02-23T17:01:00.000Z", + "expiry": "2025-02-23T18:41:00.000Z", + "timeLeft": "59m 10s", + "state": "fass", + "active": "fass" +} +"# +--- +r#" +{ + "id": "cambionCycle1740336060000", + "activation": "2025-02-23T17:01:00.000Z", + "expiry": "2025-02-23T18:41:00.000Z", + "timeLeft": "57m 10s", + "state": "fass", + "active": "fass" +} +"# +} diff --git a/src/worldstate/fixtures/cetus.rs b/src/worldstate/fixtures/cetus.rs new file mode 100644 index 0000000..4968e60 --- /dev/null +++ b/src/worldstate/fixtures/cetus.rs @@ -0,0 +1,30 @@ +use crate::fixture; + +fixture! { + cetus, +r#" +{ + "id": "cetusCycle1740336060000", + "expiry": "2025-02-23T18:41:00.000Z", + "activation": "2025-02-23T17:01:00.000Z", + "isDay": true, + "state": "day", + "timeLeft": "51m 20s", + "isCetus": true, + "shortString": "51m to Night" +} +"# +--- +r#" +{ + "id": "cetusCycle1740336060000", + "expiry": "2025-02-23T18:41:00.000Z", + "activation": "2025-02-23T17:01:00.000Z", + "isDay": true, + "state": "day", + "timeLeft": "51m 0s", + "isCetus": true, + "shortString": "51m to Night" +} +"# +} diff --git a/src/worldstate/fixtures/construction_progress.rs b/src/worldstate/fixtures/construction_progress.rs new file mode 100644 index 0000000..b319d72 --- /dev/null +++ b/src/worldstate/fixtures/construction_progress.rs @@ -0,0 +1,22 @@ +use crate::fixture; + +fixture! { + construction_progress, +r#" +{ + "id": "1740333060133100.50470218341587", + "fomorianProgress": "100.50", + "razorbackProgress": "73.86", + "unknownProgress": "0.00" +} +"# +--- +r#" +{ + "id": "1740333120099100.50470218341587", + "fomorianProgress": "100.50", + "razorbackProgress": "73.86", + "unknownProgress": "0.00" +} +"# +} diff --git a/src/worldstate/fixtures/daily_deal.rs b/src/worldstate/fixtures/daily_deal.rs new file mode 100644 index 0000000..d4653cf --- /dev/null +++ b/src/worldstate/fixtures/daily_deal.rs @@ -0,0 +1,40 @@ +use crate::fixture; + +fixture! { + daily_deal, +r#" +[ + { + "item": "Akbronco", + "uniqueName": "/Lotus/StoreItems/Weapons/Tenno/Akimbo/AkimboShotGun", + "expiry": "2025-02-24T19:00:00.000Z", + "activation": "2025-02-23T17:00:00.000Z", + "originalPrice": 225, + "salePrice": 135, + "total": 165, + "sold": 5, + "id": "AkimboShotGun1740423600000", + "eta": "1d 1h 6m 19s", + "discount": 40 + } +] +"# +--- +r#" +[ + { + "item": "野马双枪", + "uniqueName": "/Lotus/StoreItems/Weapons/Tenno/Akimbo/AkimboShotGun", + "expiry": "2025-02-24T19:00:00.000Z", + "activation": "2025-02-23T17:00:00.000Z", + "originalPrice": 225, + "salePrice": 135, + "total": 165, + "sold": 5, + "id": "AkimboShotGun1740423600000", + "eta": "1d 1h 6m 29s", + "discount": 40 + } +] +"# +} diff --git a/src/worldstate/fixtures/deep_archimedea.rs b/src/worldstate/fixtures/deep_archimedea.rs new file mode 100644 index 0000000..76f17f7 --- /dev/null +++ b/src/worldstate/fixtures/deep_archimedea.rs @@ -0,0 +1,188 @@ +use crate::fixture; + +fixture! { +deep_archimedea, +r#" +{ + "id": "1743379200000DeepArchimedea", + "activation": "2025-03-31T00:00:00.000Z", + "expiry": "2025-04-07T00:00:00.000Z", + "missions": [ + { + "mission": "Extermination", + "deviation": { + "key": "GrowingIncursion", + "name": "Fissure Cascade", + "description": "Fissures rip into the mission, causing the Enemy Level to go up by 1 every 10s. Destroy them to stop the level from increasing further." + }, + "riskVariables": [ + { + "key": "AcceleratedEnemies", + "name": "Bold Venture", + "description": "Enemies deal -15% Damage and take +15% Damage but gain +15% Movement Speed, Attack Speed, and Fire Rate." + }, + { + "key": "EMPBlackHole", + "name": "Alluring Arcocanids", + "description": "As Rogue Arcocanids charge attacks, they pull Warframes towards them." + } + ] + }, + { + "mission": "Disruption", + "deviation": { + "key": "FragileNodes", + "name": "Unified Purpose", + "description": "Enemies can target and destroy Conduits." + }, + "riskVariables": [ + { + "key": "ExplosiveCrawlers", + "name": "Explosive Potential", + "description": "Rupturing Fragments replace Shuffling Fragments." + }, + { + "key": "Voidburst", + "name": "Postmortal Surges", + "description": "Slain enemies burts with Void energy." + } + ] + }, + { + "mission": "Assassination", + "deviation": { + "key": "InfiniteTide", + "name": "Relentless Tide", + "description": "The Fragmented Tide never stops attacking." + }, + "riskVariables": [ + { + "key": "PointBlank", + "name": "Myopic Munitions", + "description": "Enemies will only take damage if a player is within 15m of them." + }, + { + "key": "ShieldedFoes", + "name": "Bolstered Belligerents", + "description": "All enemies have Overguard equal to 50% of their max health." + } + ] + } + ], + "personalModifiers": [ + { + "key": "ContactDamage", + "name": "Secondary Wounds", + "description": "Gain 1 Puncture Status Effect every time you take damage." + }, + { + "key": "Gearless", + "name": "Gear Embargo", + "description": "Gear cannot be used." + }, + { + "key": "Armorless", + "name": "Fractured Armor", + "description": "Casting an ability reduces armor by 10% for 10s." + }, + { + "key": "AbilityLockout", + "name": "Powerless", + "description": "All Abilities are disabled until the squad kills 50 enemies." + } + ] +} +"# +--- +r#" +{ + "id": "1743379200000DeepArchimedea", + "activation": "2025-03-31T00:00:00.000Z", + "expiry": "2025-04-07T00:00:00.000Z", + "missions": [ + { + "mission": "Extermination", + "deviation": { + "key": "GrowingIncursion", + "name": "Fissure Cascade", + "description": "Fissures rip into the mission, causing the Enemy Level to go up by 1 every 10s. Destroy them to stop the level from increasing further." + }, + "riskVariables": [ + { + "key": "AcceleratedEnemies", + "name": "Bold Venture", + "description": "Enemies deal -15% Damage and take +15% Damage but gain +15% Movement Speed, Attack Speed, and Fire Rate." + }, + { + "key": "EMPBlackHole", + "name": "Alluring Arcocanids", + "description": "As Rogue Arcocanids charge attacks, they pull Warframes towards them." + } + ] + }, + { + "mission": "Disruption", + "deviation": { + "key": "FragileNodes", + "name": "Unified Purpose", + "description": "Enemies can target and destroy Conduits." + }, + "riskVariables": [ + { + "key": "ExplosiveCrawlers", + "name": "Explosive Potential", + "description": "Rupturing Fragments replace Shuffling Fragments." + }, + { + "key": "Voidburst", + "name": "Postmortal Surges", + "description": "Slain enemies burts with Void energy." + } + ] + }, + { + "mission": "Assassination", + "deviation": { + "key": "InfiniteTide", + "name": "Relentless Tide", + "description": "The Fragmented Tide never stops attacking." + }, + "riskVariables": [ + { + "key": "PointBlank", + "name": "Myopic Munitions", + "description": "Enemies will only take damage if a player is within 15m of them." + }, + { + "key": "ShieldedFoes", + "name": "Bolstered Belligerents", + "description": "All enemies have Overguard equal to 50% of their max health." + } + ] + } + ], + "personalModifiers": [ + { + "key": "ContactDamage", + "name": "Secondary Wounds", + "description": "Gain 1 Puncture Status Effect every time you take damage." + }, + { + "key": "Gearless", + "name": "Gear Embargo", + "description": "Gear cannot be used." + }, + { + "key": "Armorless", + "name": "Fractured Armor", + "description": "Casting an ability reduces armor by 10% for 10s." + }, + { + "key": "AbilityLockout", + "name": "Powerless", + "description": "All Abilities are disabled until the squad kills 50 enemies." + } + ] +} +"# +} diff --git a/src/worldstate/fixtures/event.rs b/src/worldstate/fixtures/event.rs new file mode 100644 index 0000000..0db9925 --- /dev/null +++ b/src/worldstate/fixtures/event.rs @@ -0,0 +1,166 @@ +use crate::fixture; + +fixture! { + event, +r#" +[ + { + "id": "67a4dcce2a198564d62e1647", + "activation": "2025-02-06T16:00:00.000Z", + "startString": "-17d 1h 32m 50s", + "expiry": "2025-03-05T16:00:00.000Z", + "active": true, + "maximumScore": 0, + "currentScore": 0, + "smallInterval": null, + "largeInterval": null, + "description": "Star Days", + "tooltip": "Star Days", + "node": "Fortuna (Venus)", + "concurrentNodes": [], + "rewards": [], + "expired": false, + "jobs": [], + "previousJobs": [], + "interimSteps": [], + "progressSteps": [], + "isPersonal": true, + "regionDrops": [], + "archwingDrops": [], + "asString": "Star Days\nBattle on Fortuna (Venus)", + "metadata": { + + }, + "completionBonuses": [], + "altExpiry": "1970-01-01T00:00:00.000Z", + "altActivation": "1970-01-01T00:00:00.000Z", + "nextAlt": { + "expiry": "1970-01-01T00:00:00.000Z", + "activation": "1970-01-01T00:00:00.000Z" + }, + "tag": "FortunaValentines" + }, + { + "id": "67a5035c2a198564d62e165e", + "activation": "2025-02-06T19:00:00.000Z", + "startString": "-16d 22h 32m 50s", + "expiry": "2025-03-03T19:00:00.000Z", + "active": true, + "maximumScore": 0, + "currentScore": 100, + "smallInterval": null, + "largeInterval": null, + "faction": "Man in the Wall", + "description": "Operation: Belly of the Beast", + "tooltip": "Stop Parvos Granum! Collect Volatile Motes from Operation Ascension missions on Brutus (Uranus) and special Operation Alerts.\nVisit Ordis on Larunda Relay (Mercury) to claim rewards.", + "node": "Brutus (Uranus)", + "concurrentNodes": [], + "scoreLocTag": "Volatile Motes Collection Progress", + "rewards": [], + "expired": false, + "health": 100, + "jobs": [], + "previousJobs": [], + "interimSteps": [], + "progressSteps": [], + "isPersonal": true, + "isCommunity": true, + "regionDrops": [], + "archwingDrops": [], + "asString": "Operation: Belly of the Beast : Man in the Wall\nBattle on Brutus (Uranus)\n100% Remaining", + "metadata": { + + }, + "completionBonuses": [], + "altExpiry": "1970-01-01T00:00:00.000Z", + "altActivation": "1970-01-01T00:00:00.000Z", + "nextAlt": { + "expiry": "1970-01-01T00:00:00.000Z", + "activation": "1970-01-01T00:00:00.000Z" + }, + "tag": "JadeShadowsEvent" + } +] +"# +--- +r#" +[ + { + "id": "67a4dcce2a198564d62e1647", + "activation": "2025-02-06T16:00:00.000Z", + "startString": "-17d 1h 57m 40s", + "expiry": "2025-03-05T16:00:00.000Z", + "active": true, + "maximumScore": 0, + "currentScore": 0, + "smallInterval": null, + "largeInterval": null, + "description": "Valentines Fortuna Name", + "tooltip": "Valentines Fortuna Name", + "node": "SolarisUnitedHub1", + "concurrentNodes": [], + "rewards": [], + "expired": false, + "jobs": [], + "previousJobs": [], + "interimSteps": [], + "progressSteps": [], + "isPersonal": true, + "regionDrops": [], + "archwingDrops": [], + "asString": "Valentines Fortuna Name\nBattle on SolarisUnitedHub1", + "metadata": { + + }, + "completionBonuses": [], + "altExpiry": "1970-01-01T00:00:00.000Z", + "altActivation": "1970-01-01T00:00:00.000Z", + "nextAlt": { + "expiry": "1970-01-01T00:00:00.000Z", + "activation": "1970-01-01T00:00:00.000Z" + }, + "tag": "FortunaValentines" + }, + { + "id": "67a5035c2a198564d62e165e", + "activation": "2025-02-06T19:00:00.000Z", + "startString": "-16d 22h 57m 40s", + "expiry": "2025-03-03T19:00:00.000Z", + "active": true, + "maximumScore": 0, + "currentScore": 100, + "smallInterval": null, + "largeInterval": null, + "faction": "Man in the Wall", + "description": "Operation: Belly of the Beast", + "tooltip": "Stop Parvos Granum! Collect Volatile Motes from Operation Ascension missions on Brutus (Uranus) and special Operation Alerts.\nVisit Ordis on Larunda Relay (Mercury) to claim rewards.", + "node": "Brutus (Uranus)", + "concurrentNodes": [], + "scoreLocTag": "Volatile Motes Collection Progress", + "rewards": [], + "expired": false, + "health": 100, + "jobs": [], + "previousJobs": [], + "interimSteps": [], + "progressSteps": [], + "isPersonal": true, + "isCommunity": true, + "regionDrops": [], + "archwingDrops": [], + "asString": "Operation: Belly of the Beast : Man in the Wall\nBattle on Brutus (Uranus)\n100% Remaining", + "metadata": { + + }, + "completionBonuses": [], + "altExpiry": "1970-01-01T00:00:00.000Z", + "altActivation": "1970-01-01T00:00:00.000Z", + "nextAlt": { + "expiry": "1970-01-01T00:00:00.000Z", + "activation": "1970-01-01T00:00:00.000Z" + }, + "tag": "JadeShadowsEvent" + } +] +"# +} diff --git a/src/worldstate/fixtures/fissure.rs b/src/worldstate/fixtures/fissure.rs new file mode 100644 index 0000000..0e8df20 --- /dev/null +++ b/src/worldstate/fixtures/fissure.rs @@ -0,0 +1,1268 @@ +use crate::fixture; + +fixture! { + fissure, +r#" +[ + { + "id": "67bb53227acd989e43c1c18d", + "activation": "2025-02-23T16:56:02.289Z", + "startString": "-1h 1m 57s", + "expiry": "2025-02-23T17:57:30.081Z", + "active": false, + "node": "Alator (Mars)", + "missionType": "Interception", + "missionKey": "Interception", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Alator (Mars)", + "tier": "Lith", + "tierNum": 1, + "expired": true, + "eta": "-30s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb53227acd989e43c1c18e", + "activation": "2025-02-23T16:56:02.289Z", + "startString": "-1h 1m 57s", + "expiry": "2025-02-23T18:22:14.741Z", + "active": true, + "node": "Eurasia (Earth)", + "missionType": "Mobile Defense", + "missionKey": "Mobile Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Eurasia (Earth)", + "tier": "Lith", + "tierNum": 1, + "expired": false, + "eta": "24m 14s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb553eb776075ffec1c18d", + "activation": "2025-02-23T17:05:02.394Z", + "startString": "-52m 57s", + "expiry": "2025-02-23T18:32:54.362Z", + "active": true, + "node": "Tamu (Kuva Fortress)", + "missionType": "Disruption", + "missionKey": "Disruption", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Tamu (Kuva Fortress)", + "tier": "Requiem", + "tierNum": 5, + "expired": false, + "eta": "34m 54s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb55b68ade77472ac1c18d", + "activation": "2025-02-23T17:07:02.747Z", + "startString": "-50m 57s", + "expiry": "2025-02-23T18:44:24.169Z", + "active": true, + "node": "Circulus (Lua)", + "missionType": "Survival", + "missionKey": "Survival", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Circulus (Lua)", + "tier": "Omnia", + "tierNum": 6, + "expired": false, + "eta": "46m 24s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb571f627a78a239c1c18d", + "activation": "2025-02-23T17:13:03.091Z", + "startString": "-44m 57s", + "expiry": "2025-02-23T18:14:46.446Z", + "active": true, + "node": "Nabuk (Kuva Fortress)", + "missionType": "Defense", + "missionKey": "Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Nabuk (Kuva Fortress)", + "tier": "Requiem", + "tierNum": 5, + "expired": false, + "eta": "16m 46s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5976782b30dad1c1c18d", + "activation": "2025-02-23T17:23:02.811Z", + "startString": "-34m 57s", + "expiry": "2025-02-23T19:02:33.979Z", + "active": true, + "node": "Draco (Ceres)", + "missionType": "Survival", + "missionKey": "Survival", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Draco (Ceres)", + "tier": "Meso", + "tierNum": 2, + "expired": false, + "eta": "1h 4m 33s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c18d", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T18:52:32.197Z", + "active": true, + "node": "Berehynia (Sedna)", + "missionType": "Interception", + "missionKey": "Interception", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Berehynia (Sedna)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "54m 32s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c18e", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T19:03:50.114Z", + "active": true, + "node": "Xini (Eris)", + "missionType": "Interception", + "missionKey": "Interception", + "enemy": "Infested", + "enemyKey": "Infested", + "nodeKey": "Xini (Eris)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "1h 5m 49s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c18f", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T19:08:28.878Z", + "active": true, + "node": "Morax (Europa)", + "missionType": "Mobile Defense", + "missionKey": "Mobile Defense", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Morax (Europa)", + "tier": "Neo", + "tierNum": 3, + "expired": false, + "eta": "1h 10m 28s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c190", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T19:02:10.393Z", + "active": true, + "node": "Ani (Void)", + "missionType": "Survival", + "missionKey": "Survival", + "enemy": "Orokin", + "enemyKey": "Orokin", + "nodeKey": "Ani (Void)", + "tier": "Neo", + "tierNum": 3, + "expired": false, + "eta": "1h 4m 10s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5adfbd7e373e21c1c18d", + "activation": "2025-02-23T17:29:03.138Z", + "startString": "-28m 56s", + "expiry": "2025-02-23T19:05:40.806Z", + "active": true, + "node": "Tuvul Commons (Zariman)", + "missionType": "Void Cascade", + "missionKey": "Void Cascade", + "enemy": "Crossfire", + "enemyKey": "Crossfire", + "nodeKey": "Tuvul Commons (Zariman)", + "tier": "Omnia", + "tierNum": 6, + "expired": false, + "eta": "1h 7m 40s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5adfbd7e373e21c1c18e", + "activation": "2025-02-23T17:29:03.138Z", + "startString": "-28m 56s", + "expiry": "2025-02-23T18:32:34.109Z", + "active": true, + "node": "Cambire (Deimos)", + "missionType": "Alchemy", + "missionKey": "Alchemy", + "enemy": "The Murmur", + "enemyKey": "The Murmur", + "nodeKey": "Cambire (Deimos)", + "tier": "Omnia", + "tierNum": 6, + "expired": false, + "eta": "34m 33s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5b56eec1a02832c1c18d", + "activation": "2025-02-23T17:31:02.301Z", + "startString": "-26m 57s", + "expiry": "2025-02-23T19:06:32.775Z", + "active": true, + "node": "Selkie (Sedna)", + "missionType": "Survival", + "missionKey": "Survival", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Selkie (Sedna)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "1h 8m 32s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5b56eec1a02832c1c18e", + "activation": "2025-02-23T17:31:02.301Z", + "startString": "-26m 57s", + "expiry": "2025-02-23T19:17:18.227Z", + "active": true, + "node": "Aten (Void)", + "missionType": "Mobile Defense", + "missionKey": "Mobile Defense", + "enemy": "Orokin", + "enemyKey": "Orokin", + "nodeKey": "Aten (Void)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "1h 19m 18s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5c0a5d18322abfc1c18d", + "activation": "2025-02-23T17:34:02.958Z", + "startString": "-23m 57s", + "expiry": "2025-02-23T18:41:45.681Z", + "active": true, + "node": "Callisto (Jupiter)", + "missionType": "Interception", + "missionKey": "Interception", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Callisto (Jupiter)", + "tier": "Meso", + "tierNum": 2, + "expired": false, + "eta": "43m 45s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5c0a5d18322abfc1c18e", + "activation": "2025-02-23T17:34:02.958Z", + "startString": "-23m 57s", + "expiry": "2025-02-23T19:05:17.047Z", + "active": true, + "node": "Sharpless (Phobos)", + "missionType": "Mobile Defense", + "missionKey": "Mobile Defense", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Sharpless (Phobos)", + "tier": "Meso", + "tierNum": 2, + "expired": false, + "eta": "1h 7m 16s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5c0a5d18322abfc1c18f", + "activation": "2025-02-23T17:34:02.958Z", + "startString": "-23m 57s", + "expiry": "2025-02-23T19:00:49.285Z", + "active": true, + "node": "Casta (Ceres)", + "missionType": "Defense", + "missionKey": "Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Casta (Ceres)", + "tier": "Meso", + "tierNum": 2, + "expired": false, + "eta": "1h 2m 49s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5cbed9786ca120c1c18d", + "activation": "2025-02-23T17:37:02.872Z", + "startString": "-20m 57s", + "expiry": "2025-02-23T19:34:34.019Z", + "active": true, + "node": "Stephano (Uranus)", + "missionType": "Defense", + "missionKey": "Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Stephano (Uranus)", + "tier": "Neo", + "tierNum": 3, + "expired": false, + "eta": "1h 36m 33s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5cbed9786ca120c1c18e", + "activation": "2025-02-23T17:37:02.872Z", + "startString": "-20m 57s", + "expiry": "2025-02-23T18:56:18.160Z", + "active": true, + "node": "Valefor (Europa)", + "missionType": "Excavation", + "missionKey": "Excavation", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Valefor (Europa)", + "tier": "Neo", + "tierNum": 3, + "expired": false, + "eta": "58m 18s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5cbed9786ca120c1c18f", + "activation": "2025-02-23T17:37:02.872Z", + "startString": "-20m 57s", + "expiry": "2025-02-23T19:01:53.830Z", + "active": true, + "node": "Neso (Neptune)", + "missionType": "Extermination", + "missionKey": "Extermination", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Neso (Neptune)", + "tier": "Neo", + "tierNum": 3, + "expired": false, + "eta": "1h 3m 53s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5dafebca32475dc1c18d", + "activation": "2025-02-23T17:41:03.113Z", + "startString": "-16m 57s", + "expiry": "2025-02-23T18:53:05.220Z", + "active": true, + "node": "Kiliken (Venus)", + "missionType": "Excavation", + "missionKey": "Excavation", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Kiliken (Venus)", + "tier": "Lith", + "tierNum": 1, + "expired": false, + "eta": "55m 5s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18c", + "activation": "2025-02-23T16:40:01.396Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.396Z", + "active": true, + "node": "Korm's Belt (Earth)", + "missionType": "Skirmish", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Korm's Belt (Earth)", + "tier": "Lith", + "tierNum": 1, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18d", + "activation": "2025-02-23T16:40:01.400Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.400Z", + "active": true, + "node": "Orvin-Haarc (Venus)", + "missionType": "Spy", + "missionKey": "Spy", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Orvin-Haarc (Venus)", + "tier": "Lith", + "tierNum": 1, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18e", + "activation": "2025-02-23T16:40:01.401Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.401Z", + "active": true, + "node": "Mordo Cluster (Saturn)", + "missionType": "Skirmish", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Mordo Cluster (Saturn)", + "tier": "Meso", + "tierNum": 2, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18f", + "activation": "2025-02-23T16:40:01.402Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.402Z", + "active": true, + "node": "Sovereign Grasp (Neptune)", + "missionType": "Volatile", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Sovereign Grasp (Neptune)", + "tier": "Neo", + "tierNum": 3, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c191", + "activation": "2025-02-23T16:40:01.403Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.403Z", + "active": true, + "node": "Numina (Veil)", + "missionType": "Volatile", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Numina (Veil)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c190", + "activation": "2025-02-23T16:40:01.403Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.403Z", + "active": true, + "node": "Profit Margin (Pluto)", + "missionType": "Volatile", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Profit Margin (Pluto)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18c", + "activation": "2025-02-23T17:40:01.396Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.396Z", + "active": true, + "node": "Iota Temple (Earth)", + "missionType": "Skirmish", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Iota Temple (Earth)", + "tier": "Lith", + "tierNum": 1, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18d", + "activation": "2025-02-23T17:40:01.400Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.400Z", + "active": true, + "node": "Beacon Shield Ring (Venus)", + "missionType": "Volatile", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Beacon Shield Ring (Venus)", + "tier": "Lith", + "tierNum": 1, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18f", + "activation": "2025-02-23T17:40:01.402Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.402Z", + "active": true, + "node": "Brom Cluster (Neptune)", + "missionType": "Spy", + "missionKey": "Spy", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Brom Cluster (Neptune)", + "tier": "Neo", + "tierNum": 3, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18e", + "activation": "2025-02-23T17:40:01.401Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.401Z", + "active": true, + "node": "Vand Cluster (Saturn)", + "missionType": "Skirmish", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Vand Cluster (Saturn)", + "tier": "Meso", + "tierNum": 2, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c190", + "activation": "2025-02-23T17:40:01.403Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.403Z", + "active": true, + "node": "Peregrine Axis (Pluto)", + "missionType": "Orphix", + "missionKey": "Orphix", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Peregrine Axis (Pluto)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c191", + "activation": "2025-02-23T17:40:01.403Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.403Z", + "active": true, + "node": "Calabash (Veil)", + "missionType": "Extermination", + "missionKey": "Extermination", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Calabash (Veil)", + "tier": "Axi", + "tierNum": 4, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + } +] +"# +--- +r#" +[ + { + "id": "67bb53227acd989e43c1c18d", + "activation": "2025-02-23T16:56:02.289Z", + "startString": "-1h 1m 57s", + "expiry": "2025-02-23T17:57:30.081Z", + "active": false, + "node": "Alator (火星)", + "missionType": "攔截", + "missionKey": "Interception", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Alator (Mars)", + "tier": "古纪", + "tierNum": 1, + "expired": true, + "eta": "-30s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb53227acd989e43c1c18e", + "activation": "2025-02-23T16:56:02.289Z", + "startString": "-1h 1m 57s", + "expiry": "2025-02-23T18:22:14.741Z", + "active": true, + "node": "Eurasia (地球)", + "missionType": "移動防禦", + "missionKey": "Mobile Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Eurasia (Earth)", + "tier": "古纪", + "tierNum": 1, + "expired": false, + "eta": "24m 14s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb553eb776075ffec1c18d", + "activation": "2025-02-23T17:05:02.394Z", + "startString": "-52m 57s", + "expiry": "2025-02-23T18:32:54.362Z", + "active": true, + "node": "Tamu (Kuva 要塞)", + "missionType": "中断", + "missionKey": "Disruption", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Tamu (Kuva Fortress)", + "tier": "安魂", + "tierNum": 5, + "expired": false, + "eta": "34m 54s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb55b68ade77472ac1c18d", + "activation": "2025-02-23T17:07:02.747Z", + "startString": "-50m 57s", + "expiry": "2025-02-23T18:44:24.169Z", + "active": true, + "node": "Circulus (月球)", + "missionType": "生存", + "missionKey": "Survival", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Circulus (Lua)", + "tier": "全能", + "tierNum": 6, + "expired": false, + "eta": "46m 24s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb571f627a78a239c1c18d", + "activation": "2025-02-23T17:13:03.091Z", + "startString": "-44m 56s", + "expiry": "2025-02-23T18:14:46.446Z", + "active": true, + "node": "Nabuk (Kuva 要塞)", + "missionType": "防禦", + "missionKey": "Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Nabuk (Kuva Fortress)", + "tier": "安魂", + "tierNum": 5, + "expired": false, + "eta": "16m 46s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5976782b30dad1c1c18d", + "activation": "2025-02-23T17:23:02.811Z", + "startString": "-34m 57s", + "expiry": "2025-02-23T19:02:33.979Z", + "active": true, + "node": "Draco (穀神星)", + "missionType": "生存", + "missionKey": "Survival", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Draco (Ceres)", + "tier": "前纪", + "tierNum": 2, + "expired": false, + "eta": "1h 4m 33s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c18d", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T18:52:32.197Z", + "active": true, + "node": "Berehynia (賽德娜)", + "missionType": "攔截", + "missionKey": "Interception", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Berehynia (Sedna)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "54m 32s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c18e", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T19:03:50.114Z", + "active": true, + "node": "Xini (鬩神星)", + "missionType": "攔截", + "missionKey": "Interception", + "enemy": "Infested", + "enemyKey": "Infested", + "nodeKey": "Xini (Eris)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "1h 5m 50s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c18f", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T19:08:28.878Z", + "active": true, + "node": "Morax (歐羅巴)", + "missionType": "移動防禦", + "missionKey": "Mobile Defense", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Morax (Europa)", + "tier": "中纪", + "tierNum": 3, + "expired": false, + "eta": "1h 10m 28s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5aa2d93475da36c1c190", + "activation": "2025-02-23T17:28:02.848Z", + "startString": "-29m 57s", + "expiry": "2025-02-23T19:02:10.393Z", + "active": true, + "node": "Ani (虚空)", + "missionType": "生存", + "missionKey": "Survival", + "enemy": "奥罗金", + "enemyKey": "Orokin", + "nodeKey": "Ani (Void)", + "tier": "中纪", + "tierNum": 3, + "expired": false, + "eta": "1h 4m 10s", + "isStorm": false, + "isHard": true + }, + { + "id": "67bb5adfbd7e373e21c1c18d", + "activation": "2025-02-23T17:29:03.138Z", + "startString": "-28m 56s", + "expiry": "2025-02-23T19:05:40.806Z", + "active": true, + "node": "涂沃主厅(扎里曼)", + "missionType": "虚空覆涌", + "missionKey": "Void Cascade", + "enemy": "雙方交戰", + "enemyKey": "Crossfire", + "nodeKey": "Tuvul Commons (Zariman)", + "tier": "全能", + "tierNum": 6, + "expired": false, + "eta": "1h 7m 40s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5adfbd7e373e21c1c18e", + "activation": "2025-02-23T17:29:03.138Z", + "startString": "-28m 56s", + "expiry": "2025-02-23T18:32:34.109Z", + "active": true, + "node": "异化区(火卫二)", + "missionType": "Alchemy", + "missionKey": "Alchemy", + "enemy": "低语者", + "enemyKey": "The Murmur", + "nodeKey": "Cambire (Deimos)", + "tier": "全能", + "tierNum": 6, + "expired": false, + "eta": "34m 34s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5b56eec1a02832c1c18d", + "activation": "2025-02-23T17:31:02.301Z", + "startString": "-26m 57s", + "expiry": "2025-02-23T19:06:32.775Z", + "active": true, + "node": "Selkie (賽德娜)", + "missionType": "生存", + "missionKey": "Survival", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Selkie (Sedna)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "1h 8m 32s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5b56eec1a02832c1c18e", + "activation": "2025-02-23T17:31:02.301Z", + "startString": "-26m 57s", + "expiry": "2025-02-23T19:17:18.227Z", + "active": true, + "node": "Aten (虚空)", + "missionType": "移動防禦", + "missionKey": "Mobile Defense", + "enemy": "奥罗金", + "enemyKey": "Orokin", + "nodeKey": "Aten (Void)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "1h 19m 18s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5c0a5d18322abfc1c18d", + "activation": "2025-02-23T17:34:02.958Z", + "startString": "-23m 57s", + "expiry": "2025-02-23T18:41:45.681Z", + "active": true, + "node": "Callisto (木星)", + "missionType": "攔截", + "missionKey": "Interception", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Callisto (Jupiter)", + "tier": "前纪", + "tierNum": 2, + "expired": false, + "eta": "43m 45s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5c0a5d18322abfc1c18e", + "activation": "2025-02-23T17:34:02.958Z", + "startString": "-23m 57s", + "expiry": "2025-02-23T19:05:17.047Z", + "active": true, + "node": "Sharpless (火衛一)", + "missionType": "移動防禦", + "missionKey": "Mobile Defense", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Sharpless (Phobos)", + "tier": "前纪", + "tierNum": 2, + "expired": false, + "eta": "1h 7m 16s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5c0a5d18322abfc1c18f", + "activation": "2025-02-23T17:34:02.958Z", + "startString": "-23m 57s", + "expiry": "2025-02-23T19:00:49.285Z", + "active": true, + "node": "Casta (穀神星)", + "missionType": "防禦", + "missionKey": "Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Casta (Ceres)", + "tier": "前纪", + "tierNum": 2, + "expired": false, + "eta": "1h 2m 49s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5cbed9786ca120c1c18d", + "activation": "2025-02-23T17:37:02.872Z", + "startString": "-20m 57s", + "expiry": "2025-02-23T19:34:34.019Z", + "active": true, + "node": "Stephano (天王星)", + "missionType": "防禦", + "missionKey": "Defense", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Stephano (Uranus)", + "tier": "中纪", + "tierNum": 3, + "expired": false, + "eta": "1h 36m 33s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5cbed9786ca120c1c18e", + "activation": "2025-02-23T17:37:02.872Z", + "startString": "-20m 57s", + "expiry": "2025-02-23T18:56:18.160Z", + "active": true, + "node": "Valefor (歐羅巴)", + "missionType": "挖掘", + "missionKey": "Excavation", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Valefor (Europa)", + "tier": "中纪", + "tierNum": 3, + "expired": false, + "eta": "58m 18s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5cbed9786ca120c1c18f", + "activation": "2025-02-23T17:37:02.872Z", + "startString": "-20m 57s", + "expiry": "2025-02-23T19:01:53.830Z", + "active": true, + "node": "Neso (海王星)", + "missionType": "殲滅", + "missionKey": "Extermination", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Neso (Neptune)", + "tier": "中纪", + "tierNum": 3, + "expired": false, + "eta": "1h 3m 53s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb5dafebca32475dc1c18d", + "activation": "2025-02-23T17:41:03.113Z", + "startString": "-16m 56s", + "expiry": "2025-02-23T18:53:05.220Z", + "active": true, + "node": "Kiliken (金星)", + "missionType": "挖掘", + "missionKey": "Excavation", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Kiliken (Venus)", + "tier": "古纪", + "tierNum": 1, + "expired": false, + "eta": "55m 5s", + "isStorm": false, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18c", + "activation": "2025-02-23T16:40:01.396Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.396Z", + "active": true, + "node": "克姆地带 (地球比邻星域)", + "missionType": "前哨战", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Korm's Belt (Earth)", + "tier": "古纪", + "tierNum": 1, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18d", + "activation": "2025-02-23T16:40:01.400Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.400Z", + "active": true, + "node": "欧文-哈克 (金星比邻星域)", + "missionType": "間諜", + "missionKey": "Spy", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Orvin-Haarc (Venus)", + "tier": "古纪", + "tierNum": 1, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18e", + "activation": "2025-02-23T16:40:01.401Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.401Z", + "active": true, + "node": "魔多星团 (土星比邻星域)", + "missionType": "前哨战", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Mordo Cluster (Saturn)", + "tier": "前纪", + "tierNum": 2, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c18f", + "activation": "2025-02-23T16:40:01.402Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.402Z", + "active": true, + "node": "星主之握 (海王星比邻星域)", + "missionType": "爆发", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Sovereign Grasp (Neptune)", + "tier": "中纪", + "tierNum": 3, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c191", + "activation": "2025-02-23T16:40:01.403Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.403Z", + "active": true, + "node": "努秘 (面纱)", + "missionType": "爆发", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Numina (Veil)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4151c262f06e94c1c190", + "activation": "2025-02-23T16:40:01.403Z", + "startString": "-1h 17m 58s", + "expiry": "2025-02-23T18:10:01.403Z", + "active": true, + "node": "利益外缘 (冥王星比邻星域)", + "missionType": "爆发", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Profit Margin (Pluto)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18c", + "activation": "2025-02-23T17:40:01.396Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.396Z", + "active": true, + "node": "虚无神殿 (地球比邻星域)", + "missionType": "前哨战", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Iota Temple (Earth)", + "tier": "古纪", + "tierNum": 1, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18d", + "activation": "2025-02-23T17:40:01.400Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.400Z", + "active": true, + "node": "卫标星环 (金星比邻星域)", + "missionType": "爆发", + "missionKey": "Volatile", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Beacon Shield Ring (Venus)", + "tier": "古纪", + "tierNum": 1, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18f", + "activation": "2025-02-23T17:40:01.402Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.402Z", + "active": true, + "node": "薄暮星团 (海王星比邻星域)", + "missionType": "間諜", + "missionKey": "Spy", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Brom Cluster (Neptune)", + "tier": "中纪", + "tierNum": 3, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c18e", + "activation": "2025-02-23T17:40:01.401Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.401Z", + "active": true, + "node": "水域星团 (土星比邻星域)", + "missionType": "前哨战", + "missionKey": "Skirmish", + "enemy": "Grineer", + "enemyKey": "Grineer", + "nodeKey": "Vand Cluster (Saturn)", + "tier": "前纪", + "tierNum": 2, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c190", + "activation": "2025-02-23T17:40:01.403Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.403Z", + "active": true, + "node": "外域星轴 (冥王星比邻星域)", + "missionType": "奧菲斯", + "missionKey": "Orphix", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Peregrine Axis (Pluto)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + }, + { + "id": "67bb4f61a69998d076c1c191", + "activation": "2025-02-23T17:40:01.403Z", + "startString": "-17m 58s", + "expiry": "2025-02-23T19:10:01.403Z", + "active": true, + "node": "蒲芦 (面纱)", + "missionType": "殲滅", + "missionKey": "Extermination", + "enemy": "Corpus", + "enemyKey": "Corpus", + "nodeKey": "Calabash (Veil)", + "tier": "后纪", + "tierNum": 4, + "expired": false, + "eta": "1h 12m 1s", + "isStorm": true, + "isHard": false + } +] +"# +} diff --git a/src/worldstate/fixtures/flash_sale.rs b/src/worldstate/fixtures/flash_sale.rs new file mode 100644 index 0000000..40f6d81 --- /dev/null +++ b/src/worldstate/fixtures/flash_sale.rs @@ -0,0 +1,2150 @@ +use crate::fixture; + +fixture! { + flash_sale, +r#" +[ + { + "item": "Veilbreaker Warrior Pack", + "expiry": "2030-01-28T16:47:00.000Z", + "activation": "2023-01-01T16:46:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "VeilbreakerSupporterPack1895849220000", + "expired": false, + "eta": "1799d 22h 47m 9s" + }, + { + "item": "A O T Z Market Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "AOTZMarketBundle1893510000000", + "expired": false, + "eta": "1772d 21h 9s" + }, + { + "item": "H O D Market Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 465, + "isShownInMarket": true, + "id": "HODMarketBundle1893510000000", + "expired": false, + "eta": "1772d 21h 9s" + }, + { + "item": "Tn Deimos Supporter Armour Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 110, + "isShownInMarket": true, + "id": "TnDeimosSupporterArmourBundle1893510000000", + "expired": false, + "eta": "1772d 21h 9s" + }, + { + "item": "Initiate I I I P C Pack", + "expiry": "2030-01-01T11:27:00.000Z", + "activation": "2024-02-29T11:27:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "InitiateIIIPCPack1893497220000", + "expired": false, + "eta": "1772d 17h 27m 9s" + }, + { + "item": "T N W Market Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 145, + "isShownInMarket": true, + "id": "TNWMarketBundle1893510000000", + "expired": false, + "eta": "1772d 21h 9s" + }, + { + "item": "Ember Heirloom Pack", + "expiry": "2025-12-19T15:00:00.000Z", + "activation": "2024-07-20T15:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "EmberHeirloomPack1766156400000", + "expired": false, + "eta": "298d 21h 9s" + }, + { + "item": "Volt Nova Sumo Deluxe Pack", + "expiry": "2030-01-01T10:52:00.000Z", + "activation": "2024-10-02T15:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "VoltNovaSumoDeluxePack1893495120000", + "expired": false, + "eta": "1772d 16h 52m 9s" + }, + { + "item": "Shrine Maiden Supporter Pack", + "expiry": "2030-01-01T10:50:00.000Z", + "activation": "2024-10-02T15:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "ShrineMaidenSupporterPack1893495000000", + "expired": false, + "eta": "1772d 16h 50m 9s" + }, + { + "item": "Dante Chronicles Pack", + "expiry": "2026-01-01T18:00:00.000Z", + "activation": "2024-12-04T18:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "DanteChroniclesPack1767290400000", + "expired": false, + "eta": "312d 9s" + }, + { + "item": "Jade Shadows Supporter Pack", + "expiry": "2030-01-01T00:00:00.000Z", + "activation": "2024-12-04T18:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "JadeShadowsSupporterPack1893456000000", + "expired": false, + "eta": "1772d 6h 9s" + }, + { + "item": "Winter Solstice Arca Armour Bundle", + "expiry": "2026-01-02T14:19:00.000Z", + "activation": "2025-01-02T14:19:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 100, + "isShownInMarket": true, + "id": "WinterSolsticeArcaArmourBundle1767363540000", + "expired": false, + "eta": "312d 20h 19m 9s" + }, + { + "item": "L N Y2025 Bundle C", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 805, + "isShownInMarket": true, + "id": "LNY2025BundleC1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2025 Bundle B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 590, + "isShownInMarket": true, + "id": "LNY2025BundleB1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2025 Bundle A", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 215, + "isShownInMarket": true, + "id": "LNY2025BundleA1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Avatar Image C N Y2025 Snake Glyph B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 1, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "AvatarImageCNY2025SnakeGlyphB1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "C N Y2021 Poster", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 1, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "CNY2021Poster1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Plushy Snake", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushySnake1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Snake Melee Dangle", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYSnakeMeleeDangle1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "C N Y2025 Scythe Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "CNY2025ScytheSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "We Game New Year Snake Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "WeGameNewYearSnakeSigil1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2025 Snake Emote", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNY2025SnakeEmote1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Mirage Lunar New Year Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 165, + "isShownInMarket": true, + "id": "MirageLunarNewYearSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Kavat Boltor Armor", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 90, + "isShownInMarket": true, + "id": "LNYKavatBoltorArmor1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Plushy L N Y Mirage", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyLNYMirage1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Stones Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "LNYStonesEphemera1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Bundle A", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 135, + "isShownInMarket": true, + "id": "LNY2024BundleA1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Bundle C", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 575, + "isShownInMarket": true, + "id": "LNY2024BundleC1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Sentinel Skin Bundle", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 95, + "isShownInMarket": true, + "id": "LNY2024SentinelSkinBundle1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Bundle B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 295, + "isShownInMarket": true, + "id": "LNY2024BundleB1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Dragon Wings", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYDragonWings1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Dragon Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "LNYDragonEphemera1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Dragon Sentinel Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 85, + "isShownInMarket": true, + "id": "LNYDragonSentinelSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Ogris", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2024Ogris1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Dragon Mask", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 30, + "isShownInMarket": true, + "id": "LNYDragonMask1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Dragon Tail", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYDragonTail1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Hook Sword", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 75, + "isShownInMarket": true, + "id": "LNYHookSword1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Nukor", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2024Nukor1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2023 Nagantaka Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2023NagantakaSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2023 Cedo Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2023CedoSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Spring Festival Background", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 50, + "isShownInMarket": true, + "id": "SpringFestivalBackground1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Plushy L N Y2023 Rabbit", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyLNY2023Rabbit1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Bird Sugatra", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYBirdSugatra1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2023 Cernos Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2023CernosSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "LunarEphemera1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2022 Heavy Blade Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 45, + "isShownInMarket": true, + "id": "Lunar2022HeavyBladeSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Plushy Tiger", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyTiger1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y Carp Sugatra", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYCarpSugatra1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Peach Blossoms Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "PeachBlossomsEphemera1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2022 Ignis Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2022IgnisSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2020 Orthos Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "Lunar2020OrthosSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2022 Zarr", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2022Zarr1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2022 Kubrow Armor", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 90, + "isShownInMarket": true, + "id": "Lunar2022KubrowArmor1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2020 Acceltra Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2020AcceltraSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar2020 Pyrana Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2020PyranaSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lucky Kavat Gold", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "LuckyKavatGold1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lucky Kavat", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "LuckyKavat1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Wegame China Knot Dangle", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "WegameChinaKnotDangle1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lucky Kavat White", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "LuckyKavatWhite1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2025 Boltor Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "LNY2025BoltorSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "We Game Machete Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "WeGameMacheteSkin1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Lunar New Year Style", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 50, + "isShownInMarket": true, + "id": "LunarNewYearStyle1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Plushy L N Y2024 Dragon", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyLNY2024Dragon1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Dragon Emote", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2024DragonEmote1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2024 Dragon Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "LNY2024DragonSigil1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2023 Bundle A", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 135, + "isShownInMarket": true, + "id": "LNY2023BundleA1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2023 Bundle B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 265, + "isShownInMarket": true, + "id": "LNY2023BundleB1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "We Game New Year Rabbit Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "WeGameNewYearRabbitSigil1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2023 Emote", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2023Emote1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "L N Y2023 Bundle C", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 500, + "isShownInMarket": true, + "id": "LNY2023BundleC1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "We Game New Year Tiger Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "WeGameNewYearTigerSigil1741028400000", + "expired": false, + "eta": "8d 1h 9s" + }, + { + "item": "Valentine", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 1, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "ColourPickerValItemA1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Valentine2020 Glyph Bundle", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "Valentine2020GlyphBundle1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Conclave Heart Oro Ornament", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 50000, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "ConclaveHeartOroOrnament1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Valentine2017 Glyph Bundle", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 80, + "isShownInMarket": true, + "id": "Valentine2017GlyphBundle1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2020 Key", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Key1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2020 Clem", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Clem1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2020 Alad", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Alad1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2020 Kuva", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Kuva1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2017 D", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017D1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2017 B", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017B1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2017 A", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017A1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2017 C", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017C1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Avatar Image Valentine2017 E", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017E1741190400000", + "expired": false, + "eta": "9d 22h 9s" + }, + { + "item": "Tenno II", + "expiry": "2025-02-24T00:00:00.000Z", + "activation": "2025-02-19T00:00:00.000Z", + "discount": 20, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "ColourPickerDefaultsItemB1740355200000", + "expired": false, + "eta": "6h 9s" + }, + { + "item": "Unlock Mag Agile", + "expiry": "2025-02-25T00:00:00.000Z", + "activation": "2025-02-20T00:00:00.000Z", + "discount": 20, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "UnlockMagAgile1740441600000", + "expired": false, + "eta": "1d 6h 9s" + }, + { + "item": "Pax Duviricus Syandana", + "expiry": "2025-02-26T00:00:00.000Z", + "activation": "2025-02-21T00:00:00.000Z", + "discount": 19, + "regularOverride": 0, + "premiumOverride": 85, + "isShownInMarket": true, + "id": "PaxDuviricusSyandana1740528000000", + "expired": false, + "eta": "2d 6h 9s" + }, + { + "item": "Choir Frame Halo Crown", + "expiry": "2025-02-27T00:00:00.000Z", + "activation": "2025-02-22T00:00:00.000Z", + "discount": 15, + "regularOverride": 0, + "premiumOverride": 55, + "isShownInMarket": true, + "id": "ChoirFrameHaloCrown1740614400000", + "expired": false, + "eta": "3d 6h 9s" + }, + { + "item": "Unlock Paladin Agile", + "expiry": "2025-02-28T00:00:00.000Z", + "activation": "2025-02-23T00:00:00.000Z", + "discount": 20, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "UnlockPaladinAgile1740700800000", + "expired": false, + "eta": "4d 6h 9s" + } +] +"# +--- +r#" +[ + { + "item": "Veilbreaker Warrior Pack", + "expiry": "2030-01-28T16:47:00.000Z", + "activation": "2023-01-01T16:46:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "VeilbreakerSupporterPack1895849220000", + "expired": false, + "eta": "1799d 21h 58m 59s" + }, + { + "item": "A O T Z Market Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "AOTZMarketBundle1893510000000", + "expired": false, + "eta": "1772d 20h 11m 59s" + }, + { + "item": "H O D Market Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 465, + "isShownInMarket": true, + "id": "HODMarketBundle1893510000000", + "expired": false, + "eta": "1772d 20h 11m 59s" + }, + { + "item": "Tn Deimos Supporter Armour Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 110, + "isShownInMarket": true, + "id": "TnDeimosSupporterArmourBundle1893510000000", + "expired": false, + "eta": "1772d 20h 11m 59s" + }, + { + "item": "Initiate I I I P C Pack", + "expiry": "2030-01-01T11:27:00.000Z", + "activation": "2024-02-29T11:27:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "InitiateIIIPCPack1893497220000", + "expired": false, + "eta": "1772d 16h 38m 59s" + }, + { + "item": "T N W Market Bundle", + "expiry": "2030-01-01T15:00:00.000Z", + "activation": "2024-03-01T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 145, + "isShownInMarket": true, + "id": "TNWMarketBundle1893510000000", + "expired": false, + "eta": "1772d 20h 11m 59s" + }, + { + "item": "Ember Heirloom Pack", + "expiry": "2025-12-19T15:00:00.000Z", + "activation": "2024-07-20T15:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "EmberHeirloomPack1766156400000", + "expired": false, + "eta": "298d 20h 11m 59s" + }, + { + "item": "Shrine Maiden Supporter Pack", + "expiry": "2030-01-01T10:50:00.000Z", + "activation": "2024-10-02T15:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "ShrineMaidenSupporterPack1893495000000", + "expired": false, + "eta": "1772d 16h 1m 59s" + }, + { + "item": "Volt Nova Sumo Deluxe Pack", + "expiry": "2030-01-01T10:52:00.000Z", + "activation": "2024-10-02T15:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "VoltNovaSumoDeluxePack1893495120000", + "expired": false, + "eta": "1772d 16h 3m 59s" + }, + { + "item": "Dante Chronicles Pack", + "expiry": "2026-01-01T18:00:00.000Z", + "activation": "2024-12-04T18:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "DanteChroniclesPack1767290400000", + "expired": false, + "eta": "311d 23h 11m 59s" + }, + { + "item": "Jade Shadows Supporter Pack", + "expiry": "2030-01-01T00:00:00.000Z", + "activation": "2024-12-04T18:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 1, + "isShownInMarket": true, + "id": "JadeShadowsSupporterPack1893456000000", + "expired": false, + "eta": "1772d 5h 11m 59s" + }, + { + "item": "Winter Solstice Arca Armour Bundle", + "expiry": "2026-01-02T14:19:00.000Z", + "activation": "2025-01-02T14:19:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 100, + "isShownInMarket": true, + "id": "WinterSolsticeArcaArmourBundle1767363540000", + "expired": false, + "eta": "312d 19h 30m 59s" + }, + { + "item": "L N Y2025 Bundle C", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 805, + "isShownInMarket": true, + "id": "LNY2025BundleC1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2025 Bundle B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 590, + "isShownInMarket": true, + "id": "LNY2025BundleB1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2025 Bundle A", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 215, + "isShownInMarket": true, + "id": "LNY2025BundleA1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "C N Y2021 Poster", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 1, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "CNY2021Poster1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Plushy Snake", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushySnake1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Avatar Image C N Y2025 Snake Glyph B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 1, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "AvatarImageCNY2025SnakeGlyphB1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "C N Y2025 Scythe Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "CNY2025ScytheSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2025 Snake Emote", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNY2025SnakeEmote1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "We Game New Year Snake Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "WeGameNewYearSnakeSigil1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Snake Melee Dangle", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYSnakeMeleeDangle1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Plushy L N Y Mirage", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyLNYMirage1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Stones Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "LNYStonesEphemera1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Mirage Lunar New Year Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 165, + "isShownInMarket": true, + "id": "MirageLunarNewYearSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Kavat Boltor Armor", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 90, + "isShownInMarket": true, + "id": "LNYKavatBoltorArmor1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Bundle A", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 135, + "isShownInMarket": true, + "id": "LNY2024BundleA1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Bundle B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 295, + "isShownInMarket": true, + "id": "LNY2024BundleB1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Bundle C", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 575, + "isShownInMarket": true, + "id": "LNY2024BundleC1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Sentinel Skin Bundle", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 95, + "isShownInMarket": true, + "id": "LNY2024SentinelSkinBundle1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Ogris", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2024Ogris1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Dragon Sentinel Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 85, + "isShownInMarket": true, + "id": "LNYDragonSentinelSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Dragon Wings", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYDragonWings1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Dragon Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "LNYDragonEphemera1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Dragon Mask", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 30, + "isShownInMarket": true, + "id": "LNYDragonMask1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Dragon Tail", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYDragonTail1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Hook Sword", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 75, + "isShownInMarket": true, + "id": "LNYHookSword1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Plushy L N Y2023 Rabbit", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyLNY2023Rabbit1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Bird Sugatra", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYBirdSugatra1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2023 Nagantaka Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2023NagantakaSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Nukor", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2024Nukor1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2023 Cedo Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2023CedoSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Spring Festival Background", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 50, + "isShownInMarket": true, + "id": "SpringFestivalBackground1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Plushy Tiger", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyTiger1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2023 Cernos Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2023CernosSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2022 Heavy Blade Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 45, + "isShownInMarket": true, + "id": "Lunar2022HeavyBladeSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "LunarEphemera1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y Carp Sugatra", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "LNYCarpSugatra1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Peach Blossoms Ephemera", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "PeachBlossomsEphemera1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2022 Ignis Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2022IgnisSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2020 Pyrana Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2020PyranaSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2022 Kubrow Armor", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 90, + "isShownInMarket": true, + "id": "Lunar2022KubrowArmor1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2020 Acceltra Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2020AcceltraSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2020 Orthos Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "Lunar2020OrthosSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar2022 Zarr", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "Lunar2022Zarr1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lucky Kavat White", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "LuckyKavatWhite1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Wegame China Knot Dangle", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 15, + "isShownInMarket": true, + "id": "WegameChinaKnotDangle1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lucky Kavat Gold", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "LuckyKavatGold1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lucky Kavat", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "LuckyKavat1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "We Game Machete Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "WeGameMacheteSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2025 Boltor Skin", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "LNY2025BoltorSkin1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Lunar New Year Style", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 50, + "isShownInMarket": true, + "id": "LunarNewYearStyle1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Dragon Emote", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2024DragonEmote1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2023 Bundle A", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 135, + "isShownInMarket": true, + "id": "LNY2023BundleA1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2024 Dragon Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "LNY2024DragonSigil1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Plushy L N Y2024 Dragon", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 35, + "isShownInMarket": true, + "id": "PlushyLNY2024Dragon1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2023 Emote", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 25, + "isShownInMarket": true, + "id": "LNY2023Emote1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2023 Bundle B", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 265, + "isShownInMarket": true, + "id": "LNY2023BundleB1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "We Game New Year Rabbit Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "WeGameNewYearRabbitSigil1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "L N Y2023 Bundle C", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 500, + "isShownInMarket": true, + "id": "LNY2023BundleC1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "We Game New Year Tiger Sigil", + "expiry": "2025-03-03T19:00:00.000Z", + "activation": "2025-01-15T19:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "WeGameNewYearTigerSigil1741028400000", + "expired": false, + "eta": "8d 11m 59s" + }, + { + "item": "Valentine2020 Glyph Bundle", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "Valentine2020GlyphBundle1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Valentine2017 Glyph Bundle", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 80, + "isShownInMarket": true, + "id": "Valentine2017GlyphBundle1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Conclave Heart Oro Ornament", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 50000, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "ConclaveHeartOroOrnament1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Valentine", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 1, + "premiumOverride": 0, + "isShownInMarket": true, + "id": "ColourPickerValItemA1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2020 Key", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Key1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2020 Alad", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Alad1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2020 Clem", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Clem1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2020 Kuva", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2020Kuva1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2017 A", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017A1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2017 C", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017C1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2017 B", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017B1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2017 D", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017D1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Avatar Image Valentine2017 E", + "expiry": "2025-03-05T16:00:00.000Z", + "activation": "2025-02-06T16:00:00.000Z", + "discount": 0, + "regularOverride": 0, + "premiumOverride": 20, + "isShownInMarket": true, + "id": "AvatarImageValentine2017E1741190400000", + "expired": false, + "eta": "9d 21h 11m 59s" + }, + { + "item": "Tenno II", + "expiry": "2025-02-24T00:00:00.000Z", + "activation": "2025-02-19T00:00:00.000Z", + "discount": 20, + "regularOverride": 0, + "premiumOverride": 60, + "isShownInMarket": true, + "id": "ColourPickerDefaultsItemB1740355200000", + "expired": false, + "eta": "5h 11m 59s" + }, + { + "item": "Unlock Mag Agile", + "expiry": "2025-02-25T00:00:00.000Z", + "activation": "2025-02-20T00:00:00.000Z", + "discount": 20, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "UnlockMagAgile1740441600000", + "expired": false, + "eta": "1d 5h 11m 59s" + }, + { + "item": "Pax Duviricus Syandana", + "expiry": "2025-02-26T00:00:00.000Z", + "activation": "2025-02-21T00:00:00.000Z", + "discount": 19, + "regularOverride": 0, + "premiumOverride": 85, + "isShownInMarket": true, + "id": "PaxDuviricusSyandana1740528000000", + "expired": false, + "eta": "2d 5h 11m 59s" + }, + { + "item": "Choir Frame Halo Crown", + "expiry": "2025-02-27T00:00:00.000Z", + "activation": "2025-02-22T00:00:00.000Z", + "discount": 15, + "regularOverride": 0, + "premiumOverride": 55, + "isShownInMarket": true, + "id": "ChoirFrameHaloCrown1740614400000", + "expired": false, + "eta": "3d 5h 11m 59s" + }, + { + "item": "Unlock Paladin Agile", + "expiry": "2025-02-28T00:00:00.000Z", + "activation": "2025-02-23T00:00:00.000Z", + "discount": 20, + "regularOverride": 0, + "premiumOverride": 40, + "isShownInMarket": true, + "id": "UnlockPaladinAgile1740700800000", + "expired": false, + "eta": "4d 5h 11m 59s" + } +] +"# +} diff --git a/src/worldstate/fixtures/global_upgrade.rs b/src/worldstate/fixtures/global_upgrade.rs new file mode 100644 index 0000000..f86f0e7 --- /dev/null +++ b/src/worldstate/fixtures/global_upgrade.rs @@ -0,0 +1,40 @@ +use crate::fixture; + +fixture! { + global_upgrade, +r#" +[ + { + "activation": "2025-02-21T19:00:00.000Z", + "start": "2025-02-21T19:00:00.000Z", + "expiry": "2025-02-24T19:00:00.000Z", + "end": "2025-02-24T19:00:00.000Z", + "upgrade": "Mission Kill XP", + "operation": "is multiplied by", + "operationSymbol": "x", + "upgradeOperationValue": 2, + "expired": false, + "eta": "1d 53m 9s", + "desc": "2x Mission Kill XP for 1d 53m 9s" + } +] +"# +--- +r#" +[ + { + "activation": "2025-02-21T19:00:00.000Z", + "start": "2025-02-21T19:00:00.000Z", + "expiry": "2025-02-24T19:00:00.000Z", + "end": "2025-02-24T19:00:00.000Z", + "upgrade": "任務擊殺經驗", + "operation": "被乘以", + "operationSymbol": "x", + "upgradeOperationValue": 2, + "expired": false, + "eta": "1d 52m 29s", + "desc": "2x 任務擊殺經驗 for 1d 52m 29s" + } +] +"# +} diff --git a/src/worldstate/fixtures/invasion.rs b/src/worldstate/fixtures/invasion.rs new file mode 100644 index 0000000..c05aad4 --- /dev/null +++ b/src/worldstate/fixtures/invasion.rs @@ -0,0 +1,898 @@ +use crate::fixture; + +fixture! { + invasion, +r#" +[ + { + "id": "67b9a85704b2b3d65fc1c191", + "activation": "2025-02-22T10:52:03.796Z", + "startString": "-1d 7h 15m 46s", + "node": "Nuovo (Ceres)", + "nodeKey": "Nuovo (Ceres)", + "desc": "Corpus Siege", + "attackingFaction": "Corpus", + "attacker": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "Dera Vandal Stock", + "key": "Dera Vandal Stock" + } + ], + "credits": 0, + "asString": "Dera Vandal Stock", + "itemString": "Dera Vandal Stock", + "thumbnail": "https://cdn.warframestat.us/img/dera-vandal.png", + "color": 6052435 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "Karak Wraith Stock", + "key": "Karak Wraith Stock" + } + ], + "credits": 0, + "asString": "Karak Wraith Stock", + "itemString": "Karak Wraith Stock", + "thumbnail": "https://cdn.warframestat.us/img/furax-wraith.png", + "color": 6052435 + }, + "faction": "Grineer", + "factionKey": "Grineer" + }, + "vsInfestation": false, + "count": -20223, + "requiredRuns": 33000, + "completion": 19.3590909090909, + "completed": false, + "eta": "19h 45m 7s", + "rewardTypes": [ + "vandal", + "wraith" + ] + }, + { + "id": "67b9a85704b2b3d65fc1c192", + "activation": "2025-02-22T22:51:56.784Z", + "startString": "-19h 15m 53s", + "node": "Ludi (Ceres)", + "nodeKey": "Ludi (Ceres)", + "desc": "Corpus Siege", + "attackingFaction": "Corpus", + "attacker": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "Dera Vandal Receiver", + "key": "Dera Vandal Receiver" + } + ], + "credits": 0, + "asString": "Dera Vandal Receiver", + "itemString": "Dera Vandal Receiver", + "thumbnail": "https://cdn.warframestat.us/img/dera-vandal.png", + "color": 6052435 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "Sheev Blade", + "key": "Sheev Blade" + } + ], + "credits": 0, + "asString": "Sheev Blade", + "itemString": "Sheev Blade", + "thumbnail": "", + "color": 5198940 + }, + "faction": "Grineer", + "factionKey": "Grineer" + }, + "vsInfestation": false, + "count": 12639, + "requiredRuns": 41000, + "completion": 65.4134146341463, + "completed": false, + "eta": "1d 19h 13m 43s", + "rewardTypes": [ + "vandal", + "other" + ] + }, + { + "id": "67ba594a5176717125c1c18d", + "activation": "2025-02-22T23:10:01.892Z", + "startString": "-18h 57m 48s", + "node": "Themisto (Jupiter)", + "nodeKey": "Themisto (Jupiter)", + "desc": "Phorid Manifestation", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "Fieldron", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 Fieldron", + "itemString": "3 Fieldron", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -30082, + "requiredRuns": 30000, + "completion": -0.273333333333325, + "completed": true, + "eta": "-3m 6s", + "rewardTypes": [ + "fieldron" + ] + }, + { + "id": "67ba7b476df04333f6c1c18f", + "activation": "2025-02-23T02:46:49.722Z", + "startString": "-15h 21m 0s", + "node": "Despina (Neptune)", + "nodeKey": "Despina (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "Fieldron", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 Fieldron", + "itemString": "3 Fieldron", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -38006, + "requiredRuns": 38000, + "completion": -0.0157894736842135, + "completed": true, + "eta": "-8s", + "rewardTypes": [ + "fieldron" + ] + }, + { + "id": "67baaed7c071bfd35ec1c18d", + "activation": "2025-02-23T05:15:02.553Z", + "startString": "-12h 52m 47s", + "node": "Galatea (Neptune)", + "nodeKey": "Galatea (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "Mutalist Alad V Nav Coordinate", + "key": "Mutalist Alad V Nav Coordinate" + } + ], + "credits": 0, + "asString": "Mutalist Alad V Nav Coordinate", + "itemString": "Mutalist Alad V Nav Coordinate", + "thumbnail": "https://cdn.warframestat.us/img/mutalist-alad-v-nav-coordinate.png", + "color": 158519 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -39325, + "requiredRuns": 39000, + "completion": -0.83333333333333, + "completed": true, + "eta": "-6m 23s", + "rewardTypes": [ + "mutalist" + ] + }, + { + "id": "67baaed7c071bfd35ec1c18e", + "activation": "2025-02-23T05:15:02.553Z", + "startString": "-12h 52m 47s", + "node": "Sao (Neptune)", + "nodeKey": "Sao (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "Mutalist Alad V Nav Coordinate", + "key": "Mutalist Alad V Nav Coordinate" + } + ], + "credits": 0, + "asString": "Mutalist Alad V Nav Coordinate", + "itemString": "Mutalist Alad V Nav Coordinate", + "thumbnail": "https://cdn.warframestat.us/img/mutalist-alad-v-nav-coordinate.png", + "color": 158519 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -32469, + "requiredRuns": 32000, + "completion": -1.465625, + "completed": true, + "eta": "-11m 9s", + "rewardTypes": [ + "mutalist" + ] + }, + { + "id": "67bad1fe661aea68e5c1c18d", + "activation": "2025-02-23T07:45:02.209Z", + "startString": "-10h 22m 47s", + "node": "Triton (Neptune)", + "nodeKey": "Triton (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 2, + "type": "Mutagen Mass", + "key": "Mutagen Mass" + } + ], + "credits": 0, + "asString": "2 Mutagen Mass", + "itemString": "2 Mutagen Mass", + "thumbnail": "https://cdn.warframestat.us/img/mutagen-mass.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -44283, + "requiredRuns": 44000, + "completion": -0.643181818181815, + "completed": true, + "eta": "-3m 58s", + "rewardTypes": [ + "mutagen" + ] + }, + { + "id": "67bad907f5be4d2c02c1c18d", + "activation": "2025-02-23T08:15:02.528Z", + "startString": "-9h 52m 47s", + "node": "Laomedeia (Neptune)", + "nodeKey": "Laomedeia (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 2, + "type": "Mutagen Mass", + "key": "Mutagen Mass" + } + ], + "credits": 0, + "asString": "2 Mutagen Mass", + "itemString": "2 Mutagen Mass", + "thumbnail": "https://cdn.warframestat.us/img/mutagen-mass.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -49023, + "requiredRuns": 48000, + "completion": -2.13125000000001, + "completed": true, + "eta": "-12m 22s", + "rewardTypes": [ + "mutagen" + ] + }, + { + "id": "67baf2ce5457dad381c1c18d", + "activation": "2025-02-23T10:05:01.814Z", + "startString": "-8h 2m 48s", + "node": "Larissa (Neptune)", + "nodeKey": "Larissa (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "Fieldron", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 Fieldron", + "itemString": "3 Fieldron", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -45095, + "requiredRuns": 45000, + "completion": -0.211111111111117, + "completed": true, + "eta": "-1m 1s", + "rewardTypes": [ + "fieldron" + ] + }, + { + "id": "67bb03368bf783a157c1c18d", + "activation": "2025-02-23T11:15:02.359Z", + "startString": "-6h 52m 47s", + "node": "Psamathe (Neptune)", + "nodeKey": "Psamathe (Neptune)", + "desc": "Phorid Manifestation", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "Fieldron", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 Fieldron", + "itemString": "3 Fieldron", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -12708, + "requiredRuns": 30000, + "completion": 57.64, + "completed": false, + "eta": "9h 21m 41s", + "rewardTypes": [ + "fieldron" + ] + } +] +"# +--- +r#" +[ + { + "id": "67b9a85704b2b3d65fc1c191", + "activation": "2025-02-22T10:52:03.796Z", + "startString": "-1d 7h 17m 6s", + "node": "Nuovo (穀神星)", + "nodeKey": "Nuovo (Ceres)", + "desc": "Corpus Siege", + "attackingFaction": "Corpus", + "attacker": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "德拉 破坏者 枪管", + "key": "Dera Vandal Stock" + } + ], + "credits": 0, + "asString": "德拉 破坏者 枪管", + "itemString": "德拉 破坏者 枪管", + "thumbnail": "https://cdn.warframestat.us/img/dera-vandal.png", + "color": 6052435 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "卡拉克 亡魂 枪托", + "key": "Karak Wraith Stock" + } + ], + "credits": 0, + "asString": "卡拉克 亡魂 枪托", + "itemString": "卡拉克 亡魂 枪托", + "thumbnail": "https://cdn.warframestat.us/img/furax-wraith.png", + "color": 6052435 + }, + "faction": "Grineer", + "factionKey": "Grineer" + }, + "vsInfestation": false, + "count": -20226, + "requiredRuns": 33000, + "completion": 19.3545454545455, + "completed": false, + "eta": "19h 45m 30s", + "rewardTypes": [ + "vandal", + "wraith" + ] + }, + { + "id": "67b9a85704b2b3d65fc1c192", + "activation": "2025-02-22T22:51:56.784Z", + "startString": "-19h 17m 13s", + "node": "Ludi (穀神星)", + "nodeKey": "Ludi (Ceres)", + "desc": "Corpus Siege", + "attackingFaction": "Corpus", + "attacker": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "德拉 破坏者 枪机", + "key": "Dera Vandal Receiver" + } + ], + "credits": 0, + "asString": "德拉 破坏者 枪机", + "itemString": "德拉 破坏者 枪机", + "thumbnail": "https://cdn.warframestat.us/img/dera-vandal.png", + "color": 6052435 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "希芙 刀刃", + "key": "Sheev Blade" + } + ], + "credits": 0, + "asString": "希芙 刀刃", + "itemString": "希芙 刀刃", + "thumbnail": "", + "color": 5198940 + }, + "faction": "Grineer", + "factionKey": "Grineer" + }, + "vsInfestation": false, + "count": 12638, + "requiredRuns": 41000, + "completion": 65.4121951219512, + "completed": false, + "eta": "1d 19h 17m 1s", + "rewardTypes": [ + "vandal", + "other" + ] + }, + { + "id": "67ba594a5176717125c1c18d", + "activation": "2025-02-22T23:10:01.892Z", + "startString": "-18h 59m 8s", + "node": "Themisto (木星)", + "nodeKey": "Themisto (Jupiter)", + "desc": "Phorid Manifestation", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "电磁力场装置", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 电磁力场装置", + "itemString": "3 电磁力场装置", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -30082, + "requiredRuns": 30000, + "completion": -0.273333333333325, + "completed": true, + "eta": "-3m 6s", + "rewardTypes": [ + "fieldron" + ] + }, + { + "id": "67ba7b476df04333f6c1c18f", + "activation": "2025-02-23T02:46:49.722Z", + "startString": "-15h 22m 20s", + "node": "Despina (海王星)", + "nodeKey": "Despina (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "电磁力场装置", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 电磁力场装置", + "itemString": "3 电磁力场装置", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -38006, + "requiredRuns": 38000, + "completion": -0.0157894736842135, + "completed": true, + "eta": "-8s", + "rewardTypes": [ + "fieldron" + ] + }, + { + "id": "67baaed7c071bfd35ec1c18d", + "activation": "2025-02-23T05:15:02.553Z", + "startString": "-12h 54m 7s", + "node": "Galatea (海王星)", + "nodeKey": "Galatea (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "异融Alad V 导航坐标", + "key": "Mutalist Alad V Nav Coordinate" + } + ], + "credits": 0, + "asString": "异融Alad V 导航坐标", + "itemString": "异融Alad V 导航坐标", + "thumbnail": "https://cdn.warframestat.us/img/mutalist-alad-v-nav-coordinate.png", + "color": 158519 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -39325, + "requiredRuns": 39000, + "completion": -0.83333333333333, + "completed": true, + "eta": "-6m 23s", + "rewardTypes": [ + "mutalist" + ] + }, + { + "id": "67baaed7c071bfd35ec1c18e", + "activation": "2025-02-23T05:15:02.553Z", + "startString": "-12h 54m 7s", + "node": "Sao (海王星)", + "nodeKey": "Sao (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 1, + "type": "异融Alad V 导航坐标", + "key": "Mutalist Alad V Nav Coordinate" + } + ], + "credits": 0, + "asString": "异融Alad V 导航坐标", + "itemString": "异融Alad V 导航坐标", + "thumbnail": "https://cdn.warframestat.us/img/mutalist-alad-v-nav-coordinate.png", + "color": 158519 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -32469, + "requiredRuns": 32000, + "completion": -1.465625, + "completed": true, + "eta": "-11m 10s", + "rewardTypes": [ + "mutalist" + ] + }, + { + "id": "67bad1fe661aea68e5c1c18d", + "activation": "2025-02-23T07:45:02.209Z", + "startString": "-10h 24m 7s", + "node": "Triton (海王星)", + "nodeKey": "Triton (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 2, + "type": "突变原聚合物", + "key": "Mutagen Mass" + } + ], + "credits": 0, + "asString": "2 突变原聚合物", + "itemString": "2 突变原聚合物", + "thumbnail": "https://cdn.warframestat.us/img/mutagen-mass.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -44283, + "requiredRuns": 44000, + "completion": -0.643181818181815, + "completed": true, + "eta": "-3m 59s", + "rewardTypes": [ + "mutagen" + ] + }, + { + "id": "67bad907f5be4d2c02c1c18d", + "activation": "2025-02-23T08:15:02.528Z", + "startString": "-9h 54m 7s", + "node": "Laomedeia (海王星)", + "nodeKey": "Laomedeia (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 2, + "type": "突变原聚合物", + "key": "Mutagen Mass" + } + ], + "credits": 0, + "asString": "2 突变原聚合物", + "itemString": "2 突变原聚合物", + "thumbnail": "https://cdn.warframestat.us/img/mutagen-mass.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -49023, + "requiredRuns": 48000, + "completion": -2.13125000000001, + "completed": true, + "eta": "-12m 23s", + "rewardTypes": [ + "mutagen" + ] + }, + { + "id": "67baf2ce5457dad381c1c18d", + "activation": "2025-02-23T10:05:01.814Z", + "startString": "-8h 4m 8s", + "node": "Larissa (海王星)", + "nodeKey": "Larissa (Neptune)", + "desc": "Infested Outbreak", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "电磁力场装置", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 电磁力场装置", + "itemString": "3 电磁力场装置", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -45095, + "requiredRuns": 45000, + "completion": -0.211111111111117, + "completed": true, + "eta": "-1m 1s", + "rewardTypes": [ + "fieldron" + ] + }, + { + "id": "67bb03368bf783a157c1c18d", + "activation": "2025-02-23T11:15:02.359Z", + "startString": "-6h 54m 7s", + "node": "Psamathe (海王星)", + "nodeKey": "Psamathe (Neptune)", + "desc": "Phorid Manifestation", + "attackingFaction": "Infested", + "attacker": { + "faction": "Infested", + "factionKey": "Infested" + }, + "defender": { + "reward": { + "items": [], + "countedItems": [ + { + "count": 3, + "type": "电磁力场装置", + "key": "Fieldron" + } + ], + "credits": 0, + "asString": "3 电磁力场装置", + "itemString": "3 电磁力场装置", + "thumbnail": "https://cdn.warframestat.us/img/fieldron.png", + "color": 5068118 + }, + "faction": "Corpus", + "factionKey": "Corpus" + }, + "vsInfestation": true, + "count": -12720, + "requiredRuns": 30000, + "completion": 57.6, + "completed": false, + "eta": "9h 22m 35s", + "rewardTypes": [ + "fieldron" + ] + } +] +"# +} diff --git a/src/worldstate/fixtures/item.rs b/src/worldstate/fixtures/item.rs new file mode 100644 index 0000000..3b774ca --- /dev/null +++ b/src/worldstate/fixtures/item.rs @@ -0,0 +1,264 @@ +use crate::fixture; + +fixture! { + item_sigil, +r#" +{ + "category": "Sigils", + "description": "A sigil representing prestige gained with the Conclave.", + "drops": [ + { + "chance": 1, + "location": "Conclave, Hurricane", + "rarity": "Common", + "type": "Accord Sigil" + } + ], + "imageName": "accord-sigil-a11257c0bb.png", + "masterable": false, + "name": "Accord Sigil", + "tradable": false, + "type": "Sigil", + "uniqueName": "/Lotus/Upgrades/Skins/Sigils/SyndicateSigilConclaveN" +} +"# +} + +#[rstest::fixture] +pub fn nanospores_de() -> &'static str { + r#" +{ + "category": "Misc", + "description": "Faseriger Technocyte-Tumor. Befallenes Gewebe ist mit Vorsicht zu behandeln.Quelle: Saturn, Neptun, Eris und Deimos.", + "drops": [ + { + "chance": 0.1265, + "location": "Neptune/Cephalon Capture (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1265, + "location": "Saturn/Annihilation (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1265, + "location": "Saturn/Cephalon Capture (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1265, + "location": "Saturn/Lunaro (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1265, + "location": "Saturn/Team Annihilation (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1265, + "location": "Saturn/Variant Annihilation (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1265, + "location": "Saturn/Variant Cephalon Capture (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1265, + "location": "Saturn/Variant Team Annihilation (Conclave), Rotation B", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1324, + "location": "Venus/Orb Vallis (Level 10 - 30 Orb Vallis Bounty), Rotation C", + "rarity": "Uncommon", + "type": "200X Nano Spores" + }, + { + "chance": 0.1429, + "location": "Deimos/Formido (Caches), Rotation A", + "rarity": "Uncommon", + "type": "1000X Nano Spores" + }, + { + "chance": 0.15, + "location": "Venus/Orb Vallis (Level 10 - 30 Orb Vallis Bounty), Rotation C", + "rarity": "Uncommon", + "type": "200X Nano Spores" + }, + { + "chance": 0.1518, + "location": "Hallowed Flame Mission Caches, Rotation A", + "rarity": "Uncommon", + "type": "500X Nano Spores" + }, + { + "chance": 0.1667, + "location": "Eris/Candiru (Caches), Rotation A", + "rarity": "Uncommon", + "type": "1000X Nano Spores" + }, + { + "chance": 0.1667, + "location": "Eris/Lepis (Caches), Rotation A", + "rarity": "Uncommon", + "type": "1000X Nano Spores" + }, + { + "chance": 0.1667, + "location": "Eris/Naeglar (Caches), Rotation A", + "rarity": "Uncommon", + "type": "1000X Nano Spores" + }, + { + "chance": 0.1667, + "location": "Eris/Psoro (Caches), Rotation A", + "rarity": "Uncommon", + "type": "1000X Nano Spores" + }, + { + "chance": 0.1667, + "location": "Eris/Viver (Caches), Rotation A", + "rarity": "Uncommon", + "type": "1000X Nano Spores" + }, + { + "chance": 0.25, + "location": "Venus/Orb Vallis (Level 10 - 30 Orb Vallis Bounty), Rotation C", + "rarity": "Uncommon", + "type": "200X Nano Spores" + } + ], + "imageName": "nano-spores-8933019524.png", + "itemCount": 25000, + "masterable": false, + "name": "Nanosporen", + "parents": [ + "Acceltra", + "Acrid", + "Akarius", + "Ancient Protector Specter", + "Ankyros", + "Ballistica", + "Bubonico", + "Carrier", + "Cestra", + "Charger Specter", + "Clem Clone", + "Clotra Stim", + "Cobra & Crane", + "Control Module", + "Corrupted Bombard Specter", + "Corrupted Lancer Specter", + "Cosmic Specter", + "Cyanex", + "Dethcube", + "Drakgoon", + "Dual Toxocyst", + "Ether Daggers", + "Excalibur Umbra", + "Fang", + "Fomorian Disruptor", + "Fulmin", + "Furax", + "Gallium", + "Genetic Code Template", + "Glaive", + "Gunsen", + "Halikar", + "Harpak", + "Hate", + "Hirudo", + "Ignis", + "Incubator Power Core", + "Infested Catalyst", + "Kestrel", + "Kronen", + "Kunai", + "Lesion", + "Mios", + "Mire", + "Moa Specter", + "Morphics", + "Mutalist Alad V Assassinate", + "Mutalist Cernos", + "Mutalist Quanta", + "Nagantaka", + "Paracyst", + "Paris", + "Patient Zero", + "Phage", + "Phantasma", + "Phase Specter", + "Plague Keewar", + "Plague Kripath", + "Pox", + "Proboscis Cernos", + "Pulmonars", + "Refract Stim", + "Roller Specter", + "Sands Of Inaros", + "Scoliac", + "Shade", + "Shield Osprey Specter", + "Squad Ammo Restore (Large)", + "Squad Ammo Restore (Small)", + "Squad Energy Restore (Large)", + "Squad Energy Restore (Small)", + "Squad Health Restore (Large)", + "Squad Health Restore (Medium)", + "Squad Health Restore (Small)", + "Squad Shield Restore (Small)", + "Stalker Specter", + "Tempered Bapholite", + "Titan Extractor Prime", + "Tysis", + "Umbra Forma", + "Vectis", + "Viper", + "Wyrm", + "Zakti" + ], + "patchlogs": [ + { + "name": "Prime Resurgence: Hotfix 30.9.3", + "date": "2021-11-12T21:13:49Z", + "url": "https://forums.warframe.com/topic/1286448-prime-resurgence-hotfix-3093/", + "additions": "", + "changes": "", + "fixes": "Nano Spores" + }, + { + "name": "Buried Debts: Update 24.4.0", + "date": "2019-03-08T02:01:23Z", + "url": "https://forums.warframe.com/topic/1067397-buried-debts-update-2440/", + "additions": "", + "changes": "Changed Burston building requirements to 600 Ferrite instead of 600 Nano Spores.", + "fixes": "" + }, + { + "name": "Update 15.8.0", + "date": "2014-12-19T23:27:57Z", + "url": "https://forums.warframe.com/topic/369665-update-1580/", + "additions": "", + "changes": "", + "fixes": "You will receive a Blueprint from the Lotus for the Fomorian Disruptor. It will require Nano Spores, Cryotic, and Omega Isotopes to craft." + } + ], + "tradable": false, + "type": "Resource", + "uniqueName": "/Lotus/Types/Items/MiscItems/Nanospores" +} +"# +} diff --git a/src/worldstate/fixtures/mod.rs b/src/worldstate/fixtures/mod.rs new file mode 100644 index 0000000..26888ab --- /dev/null +++ b/src/worldstate/fixtures/mod.rs @@ -0,0 +1,41 @@ +pub mod alert; +pub mod arbitration; +pub mod archon_hunt; +pub mod cambion_drift; +pub mod cetus; +pub mod construction_progress; +pub mod daily_deal; +pub mod deep_archimedea; +pub mod event; +pub mod fissure; +pub mod flash_sale; +pub mod global_upgrade; +pub mod invasion; +pub mod item; +pub mod news; +pub mod nightwave; +pub mod orb_vallis; +pub mod sortie; +pub mod steel_path; +pub mod syndicate_mission; +pub mod void_trader; +pub mod weapon; + +#[macro_export] +macro_rules! fixture { + ($fn_name:ident, $body:tt $(--- $body2:literal)?) => { + paste::paste! { + #[rstest::fixture] + pub fn [<$fn_name _en>]() -> &'static str { + $body + } + + $( + #[rstest::fixture] + pub fn $fn_name () -> &'static str { + $body2 + } + )? + } + }; +} diff --git a/src/worldstate/fixtures/news.rs b/src/worldstate/fixtures/news.rs new file mode 100644 index 0000000..86969c2 --- /dev/null +++ b/src/worldstate/fixtures/news.rs @@ -0,0 +1,423 @@ +use crate::fixture; + +fixture! { + news, +r#" +[ + { + "id": "62d31b87106360aa5703954d", + "message": "Join the official Warframe Discord server", + "link": "https://discord.com/invite/playwarframe", + "imageLink": "https://cdn.warframestat.us/genesis/img/news-placeholder.png", + "priority": false, + "date": "2022-07-16T20:10:00.000Z", + "eta": "952d 22h 0s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Join the official Warframe Discord server", + "fr": "Join the official Warframe Discord server", + "it": "Join the official Warframe Discord server", + "de": "Join the official Warframe Discord server", + "es": "Join the official Warframe Discord server", + "pt": "Join the official Warframe Discord server", + "ru": "Присоединяйтесь к официальному Discord серверу Warframe", + "pl": "Join the official Warframe Discord server", + "uk": "Join the official Warframe Discord server", + "tr": "Join the official Warframe Discord server", + "ja": "Join the official Warframe Discord server", + "zh": "Join the official Warframe Discord server", + "ko": "Join the official Warframe Discord server", + "tc": "Join the official Warframe Discord server" + }, + "asString": "[952d 22h 0s ago] [Join the official Warframe Discord server](https://discord.com/invite/playwarframe)" + }, + { + "id": "67a50d5108203abf160dd1c6", + "message": "Nightwave: Nora's Mix Vol. 8 Live Now", + "link": "https://www.warframe.com/news/nightwave-noras-mix-vol-8?utm_medium=in-game&utm_source=in-game", + "imageLink": "https://www-static.warframe.com/uploads/8f8a8521055f376bf110e94d7fbab37e.png", + "priority": false, + "date": "2025-02-06T19:30:00.000Z", + "eta": "16d 22h 40m 0s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Nightwave: Nora's Mix Vol. 8 Live Now", + "fr": "Ondes Nocturnes : Le Mix de Nora Vol. 8 est maintenant disponible", + "it": "Nightwave: Mix di Nora Vol. 8 Disponibile Ora", + "de": "Nightwave: Noras Mix - Vol. 8 ist jetzt live", + "es": "Onda Nocturna: Mix de Nora Vol. 8 disponible ahora", + "pt": "Nightwave: Mix da Nora Vol. 8 já disponível", + "ru": "Ночная волна: Микс Норы — Диск 8 в прямом эфире", + "pl": "Gwiezdny Szlak: Składanka Nory cz. 8 jest już dostępna", + "uk": "«Нічна хвиля»: Вибірка Нори 8 уже тут", + "tr": "Nightwave: Nora'nın Derlemesi - 8. Seri Şimdi Sizlerle", + "ja": "Nightwave: Nora’s Mix Vol.8 開幕", + "zh": "《午夜电波:诺拉的混选 Vol. 8》已经上线", + "ko": "나이트웨이브: 노라의 믹스 Vol. 8을 지금 만나보세요", + "tc": "《午夜電波・Nora 合輯 VIII》現已登場", + "th": "Nightwave: Nora's Mix Vol. 8 มาแล้ว" + }, + "asString": "[16d 22h 40m 0s ago] [Nightwave: Nora's Mix Vol. 8 Live Now](https://www.warframe.com/news/nightwave-noras-mix-vol-8?utm_medium=in-game&utm_source=in-game)" + }, + { + "id": "67a52395827ecd512b0ca9ff", + "message": "Operation: Belly of the Beast Returns", + "link": "https://www.warframe.com/news/operation-belly-of-the-beast?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Belly-of-the-beast-launch", + "imageLink": "https://www-static.warframe.com/uploads/0dd2c030493fad72e63317b94b1e0a3d.png", + "priority": false, + "date": "2025-02-06T21:00:00.000Z", + "eta": "16d 21h 10m 0s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Operation: Belly of the Beast Returns", + "fr": "L'Opération Ventre de la Bête revient", + "it": "Torna l'Operazione: Belly of the Beast", + "de": "Rückkehr der Operation: Das Innere der Bestie", + "es": "Regreso de la Operación: Vientre de la Bestia", + "pt": "Retorno da Operação Ventre da Besta", + "ru": "Операция «Чрево зверя» возвращается", + "pl": "Powrót Operacji: W Jamie Bestii", + "uk": "Операція «У лігві звіра» повертається", + "tr": "Operasyon: Canavarın Göbeği Geri Dönüyor", + "ja": "「獣の巣窟」作戦復刻", + "zh": "《行动代号:兽之腹》回归", + "ko": "작전명: 짐승의 뱃속이 돌아옵니다", + "tc": "《行動代號:野獸之腹》回歸", + "th": "ปฏิบัติการ: Belly of the Beast กลับมาแล้ว" + }, + "asString": "[16d 21h 10m 0s ago] [Operation: Belly of the Beast Returns](https://www.warframe.com/news/operation-belly-of-the-beast?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Belly-of-the-beast-launch)" + }, + { + "id": "67ab9dd63ab8bf46df02e9b1", + "message": "Coming Soon: Devstream #185!", + "link": "https://forums.warframe.com/topic/1438573-coming-soon-devstream-185/", + "imageLink": "https://cdn.warframestat.us/genesis/img/news-placeholder.png", + "priority": false, + "date": "2025-02-11T18:57:00.000Z", + "startDate": "2025-02-28T19:00:00.000Z", + "endDate": "2025-02-28T20:00:00.000Z", + "eta": "in 5d 1h 49m 59s", + "update": false, + "primeAccess": false, + "stream": true, + "translations": { + "en": "Coming Soon: Devstream #185!" + }, + "asString": "[in 5d 1h 49m 59s] [Coming Soon: Devstream #185!](https://forums.warframe.com/topic/1438573-coming-soon-devstream-185/)" + }, + { + "id": "67ab9ea76984399c2a058ae4", + "message": "Coming Soon: Devstream 185", + "link": "https://www.warframe.com/news/coming-soon-devstream-185?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Devstream-185-Tune-In", + "imageLink": "https://www-static.warframe.com/uploads/be862567d47115cbeb2ddd01e9baacbb.jpg", + "priority": false, + "date": "2025-02-11T19:00:00.000Z", + "eta": "11d 23h 10m 0s ago", + "update": false, + "primeAccess": false, + "stream": true, + "translations": { + "en": "Coming Soon: Devstream 185", + "fr": "Prochainement : Devstream 185", + "it": "In Arrivo: Devstream 185", + "de": "Demnächst: Devstream #185", + "es": "Próximamente: Devstream 185", + "pt": "Em breve: Devstream 185", + "ru": "Уже скоро: Devstream №185", + "pl": "Już wkrótce: Devstream #185", + "uk": "Невдовзі: трансляція 185", + "tr": "Yakında: Devstream 185", + "ja": "Devstream第185回のお知らせ", + "zh": "即将到来:《开发者直播 185》", + "ko": "방송 예고: 데브스트림 185", + "tc": "即將登場:開發者直播 185", + "th": "เตรียมพบกับ Devstream 185" + }, + "asString": "[11d 23h 10m 0s ago] [Coming Soon: Devstream 185](https://www.warframe.com/news/coming-soon-devstream-185?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Devstream-185-Tune-In)" + }, + { + "id": "67acc87f820e4a06460e7334", + "message": "Lavos Prime Access Begins", + "link": "https://www.warframe.com/prime-access?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe--Lavos-Prime-Access-Launch", + "imageLink": "https://www-static.warframe.com/uploads/6ab4372a8b47808e54f77fd076372617.png", + "priority": false, + "date": "2025-02-12T16:00:00.000Z", + "eta": "11d 2h 10m 0s ago", + "update": false, + "primeAccess": true, + "stream": false, + "translations": { + "en": "Lavos Prime Access Begins", + "fr": "Le Prime Access Lavos Prime commence", + "it": "Inizia l'Accesso Lavos Prime", + "de": "Lavos Prime Access beginnt", + "es": "Comienza Prime Access de Lavos", + "pt": "O Prime Access do Lavos Prime já está disponível", + "ru": "Доступ «Лавос Прайм» открыт", + "pl": "Rozpoczęcie Lavos Prime Access", + "uk": "Доступ до Лавоса-прайм відкрито", + "tr": "Lavos Prime Access Başlıyor", + "ja": "Lavos Prime Access 登場", + "zh": "Lavos Prime Access 登场", + "ko": "라보스 프라임 액세스가 시작되었습니다", + "tc": "Lavos Prime Access 登場", + "th": "เริ่มจำหน่าย Lavos Prime Access แล้ว" + }, + "asString": "[11d 2h 10m 0s ago] [Lavos Prime Access Begins](https://www.warframe.com/prime-access?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe--Lavos-Prime-Access-Launch)" + }, + { + "id": "67ae452452de39a2d50b40bc", + "message": "Inaros Prime and Ash Prime Return!", + "link": "https://www.warframe.com/prime-resurgence?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Prime-Resurgence-Ash-Inaros", + "imageLink": "https://www-static.warframe.com/uploads/cbfb445a30bc9ac814b0b17ed1d6ca38.png", + "priority": false, + "date": "2025-02-13T19:00:00.000Z", + "eta": "9d 23h 10m 0s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Inaros Prime and Ash Prime Return!", + "fr": "Inaros Prime et Ash Prime reviennent !", + "it": "Tornano Inaros Prime e Ash Prime!", + "de": "Inaros Prime und Ash Prime kehren zurück!", + "es": "¡Vuelven Inaros Prime y Ash Prime!", + "pt": "O Inaros Prime e o Ash Prime voltaram!", + "ru": "Инарос Прайм и Эш Прайм возвращаются!", + "pl": "Inaros Prime i Ash Prime powracają!", + "uk": "Інар-прайм і Еш-прайм повернулися!", + "tr": "Inaros Prime ve Ash Prime Geri Dönüyor!", + "ja": "Inaros PrimeとAsh Primeが復帰!", + "zh": "Inaros Prime 和 Ash Prime 回归!", + "ko": "이나로스 프라임과 애쉬 프라임이 돌아옵니다!", + "tc": "Inaros Prime 以及 Ash Prime 回歸!", + "th": "Inaros Prime และ Ash Prime กลับมาแล้ว!" + }, + "asString": "[9d 23h 10m 0s ago] [Inaros Prime and Ash Prime Return!](https://www.warframe.com/prime-resurgence?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Prime-Resurgence-Ash-Inaros)" + }, + { + "id": "67ae4e9fca4611344608d246", + "message": "Check out the official Warframe Wiki ", + "link": "https://wiki.warframe.com/", + "imageLink": "https://cdn.warframestat.us/genesis/img/news-placeholder.png", + "priority": false, + "date": "2025-02-13T19:56:00.000Z", + "startDate": "2025-02-13T05:00:00.000Z", + "eta": "9d 22h 14m 0s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Check out the official Warframe Wiki " + }, + "asString": "[9d 22h 14m 0s ago] [Check out the official Warframe Wiki ](https://wiki.warframe.com/)" + }, + { + "id": "67b75a804a3545c25803c90d", + "message": "Lavos Prime: Hotfix 38.0.12", + "link": "https://www.warframe.com/updates/pc/38-0-12", + "imageLink": "https://cdn.warframestat.us/genesis/img/news-placeholder.png", + "priority": false, + "date": "2025-02-20T16:34:00.000Z", + "eta": "3d 1h 36m 0s ago", + "update": true, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Lavos Prime: Hotfix 38.0.12" + }, + "asString": "[3d 1h 36m 0s ago] [Lavos Prime: Hotfix 38.0.12](https://www.warframe.com/updates/pc/38-0-12)" + } +] +"# +--- +r#" +[ + { + "id": "62d31b87106360aa5703954d", + "message": "Join the official Warframe Discord server", + "link": "https://discord.com/invite/playwarframe", + "imageLink": "https://cdn.warframestat.us/genesis/img/news-placeholder.png", + "priority": false, + "date": "2022-07-16T20:10:00.000Z", + "eta": "952d 22h 40s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Join the official Warframe Discord server", + "fr": "Join the official Warframe Discord server", + "it": "Join the official Warframe Discord server", + "de": "Join the official Warframe Discord server", + "es": "Join the official Warframe Discord server", + "pt": "Join the official Warframe Discord server", + "ru": "Присоединяйтесь к официальному Discord серверу Warframe", + "pl": "Join the official Warframe Discord server", + "uk": "Join the official Warframe Discord server", + "tr": "Join the official Warframe Discord server", + "ja": "Join the official Warframe Discord server", + "zh": "Join the official Warframe Discord server", + "ko": "Join the official Warframe Discord server", + "tc": "Join the official Warframe Discord server" + }, + "asString": "[952d 22h 40s ago] [Join the official Warframe Discord server](https://discord.com/invite/playwarframe)" + }, + { + "id": "67a50d5108203abf160dd1c6", + "message": "《午夜电波:诺拉的混选 Vol. 8》已经上线", + "link": "https://www.warframe.com/news/nightwave-noras-mix-vol-8?utm_medium=in-game&utm_source=in-game", + "imageLink": "https://www-static.warframe.com/uploads/8f8a8521055f376bf110e94d7fbab37e.png", + "priority": false, + "date": "2025-02-06T19:30:00.000Z", + "eta": "16d 22h 40m 40s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Nightwave: Nora's Mix Vol. 8 Live Now", + "fr": "Ondes Nocturnes : Le Mix de Nora Vol. 8 est maintenant disponible", + "it": "Nightwave: Mix di Nora Vol. 8 Disponibile Ora", + "de": "Nightwave: Noras Mix - Vol. 8 ist jetzt live", + "es": "Onda Nocturna: Mix de Nora Vol. 8 disponible ahora", + "pt": "Nightwave: Mix da Nora Vol. 8 já disponível", + "ru": "Ночная волна: Микс Норы — Диск 8 в прямом эфире", + "pl": "Gwiezdny Szlak: Składanka Nory cz. 8 jest już dostępna", + "uk": "«Нічна хвиля»: Вибірка Нори 8 уже тут", + "tr": "Nightwave: Nora'nın Derlemesi - 8. Seri Şimdi Sizlerle", + "ja": "Nightwave: Nora’s Mix Vol.8 開幕", + "zh": "《午夜电波:诺拉的混选 Vol. 8》已经上线", + "ko": "나이트웨이브: 노라의 믹스 Vol. 8을 지금 만나보세요", + "tc": "《午夜電波・Nora 合輯 VIII》現已登場", + "th": "Nightwave: Nora's Mix Vol. 8 มาแล้ว" + }, + "asString": "[16d 22h 40m 40s ago] [《午夜电波:诺拉的混选 Vol. 8》已经上线](https://www.warframe.com/news/nightwave-noras-mix-vol-8?utm_medium=in-game&utm_source=in-game)" + }, + { + "id": "67a52395827ecd512b0ca9ff", + "message": "《行动代号:兽之腹》回归", + "link": "https://www.warframe.com/news/operation-belly-of-the-beast?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Belly-of-the-beast-launch", + "imageLink": "https://www-static.warframe.com/uploads/0dd2c030493fad72e63317b94b1e0a3d.png", + "priority": false, + "date": "2025-02-06T21:00:00.000Z", + "eta": "16d 21h 10m 40s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Operation: Belly of the Beast Returns", + "fr": "L'Opération Ventre de la Bête revient", + "it": "Torna l'Operazione: Belly of the Beast", + "de": "Rückkehr der Operation: Das Innere der Bestie", + "es": "Regreso de la Operación: Vientre de la Bestia", + "pt": "Retorno da Operação Ventre da Besta", + "ru": "Операция «Чрево зверя» возвращается", + "pl": "Powrót Operacji: W Jamie Bestii", + "uk": "Операція «У лігві звіра» повертається", + "tr": "Operasyon: Canavarın Göbeği Geri Dönüyor", + "ja": "「獣の巣窟」作戦復刻", + "zh": "《行动代号:兽之腹》回归", + "ko": "작전명: 짐승의 뱃속이 돌아옵니다", + "tc": "《行動代號:野獸之腹》回歸", + "th": "ปฏิบัติการ: Belly of the Beast กลับมาแล้ว" + }, + "asString": "[16d 21h 10m 40s ago] [《行动代号:兽之腹》回归](https://www.warframe.com/news/operation-belly-of-the-beast?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Belly-of-the-beast-launch)" + }, + { + "id": "67ab9ea76984399c2a058ae4", + "message": "即将到来:《开发者直播 185》", + "link": "https://www.warframe.com/news/coming-soon-devstream-185?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Devstream-185-Tune-In", + "imageLink": "https://www-static.warframe.com/uploads/be862567d47115cbeb2ddd01e9baacbb.jpg", + "priority": false, + "date": "2025-02-11T19:00:00.000Z", + "eta": "11d 23h 10m 40s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Coming Soon: Devstream 185", + "fr": "Prochainement : Devstream 185", + "it": "In Arrivo: Devstream 185", + "de": "Demnächst: Devstream #185", + "es": "Próximamente: Devstream 185", + "pt": "Em breve: Devstream 185", + "ru": "Уже скоро: Devstream №185", + "pl": "Już wkrótce: Devstream #185", + "uk": "Невдовзі: трансляція 185", + "tr": "Yakında: Devstream 185", + "ja": "Devstream第185回のお知らせ", + "zh": "即将到来:《开发者直播 185》", + "ko": "방송 예고: 데브스트림 185", + "tc": "即將登場:開發者直播 185", + "th": "เตรียมพบกับ Devstream 185" + }, + "asString": "[11d 23h 10m 40s ago] [即将到来:《开发者直播 185》](https://www.warframe.com/news/coming-soon-devstream-185?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Devstream-185-Tune-In)" + }, + { + "id": "67acc87f820e4a06460e7334", + "message": "Lavos Prime Access 登场", + "link": "https://www.warframe.com/prime-access?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe--Lavos-Prime-Access-Launch", + "imageLink": "https://www-static.warframe.com/uploads/6ab4372a8b47808e54f77fd076372617.png", + "priority": false, + "date": "2025-02-12T16:00:00.000Z", + "eta": "11d 2h 10m 40s ago", + "update": false, + "primeAccess": true, + "stream": false, + "translations": { + "en": "Lavos Prime Access Begins", + "fr": "Le Prime Access Lavos Prime commence", + "it": "Inizia l'Accesso Lavos Prime", + "de": "Lavos Prime Access beginnt", + "es": "Comienza Prime Access de Lavos", + "pt": "O Prime Access do Lavos Prime já está disponível", + "ru": "Доступ «Лавос Прайм» открыт", + "pl": "Rozpoczęcie Lavos Prime Access", + "uk": "Доступ до Лавоса-прайм відкрито", + "tr": "Lavos Prime Access Başlıyor", + "ja": "Lavos Prime Access 登場", + "zh": "Lavos Prime Access 登场", + "ko": "라보스 프라임 액세스가 시작되었습니다", + "tc": "Lavos Prime Access 登場", + "th": "เริ่มจำหน่าย Lavos Prime Access แล้ว" + }, + "asString": "[11d 2h 10m 40s ago] [Lavos Prime Access 登场](https://www.warframe.com/prime-access?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe--Lavos-Prime-Access-Launch)" + }, + { + "id": "67ae452452de39a2d50b40bc", + "message": "Inaros Prime 和 Ash Prime 回归!", + "link": "https://www.warframe.com/prime-resurgence?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Prime-Resurgence-Ash-Inaros", + "imageLink": "https://www-static.warframe.com/uploads/cbfb445a30bc9ac814b0b17ed1d6ca38.png", + "priority": false, + "date": "2025-02-13T19:00:00.000Z", + "eta": "9d 23h 10m 40s ago", + "update": false, + "primeAccess": false, + "stream": false, + "translations": { + "en": "Inaros Prime and Ash Prime Return!", + "fr": "Inaros Prime et Ash Prime reviennent !", + "it": "Tornano Inaros Prime e Ash Prime!", + "de": "Inaros Prime und Ash Prime kehren zurück!", + "es": "¡Vuelven Inaros Prime y Ash Prime!", + "pt": "O Inaros Prime e o Ash Prime voltaram!", + "ru": "Инарос Прайм и Эш Прайм возвращаются!", + "pl": "Inaros Prime i Ash Prime powracają!", + "uk": "Інар-прайм і Еш-прайм повернулися!", + "tr": "Inaros Prime ve Ash Prime Geri Dönüyor!", + "ja": "Inaros PrimeとAsh Primeが復帰!", + "zh": "Inaros Prime 和 Ash Prime 回归!", + "ko": "이나로스 프라임과 애쉬 프라임이 돌아옵니다!", + "tc": "Inaros Prime 以及 Ash Prime 回歸!", + "th": "Inaros Prime และ Ash Prime กลับมาแล้ว!" + }, + "asString": "[9d 23h 10m 40s ago] [Inaros Prime 和 Ash Prime 回归!](https://www.warframe.com/prime-resurgence?utm_medium=in-game&utm_source=in-game&utm_campaign=2025-Warframe-Prime-Resurgence-Ash-Inaros)" + } +] +"# +} diff --git a/src/worldstate/fixtures/nightwave.rs b/src/worldstate/fixtures/nightwave.rs new file mode 100644 index 0000000..b4448f9 --- /dev/null +++ b/src/worldstate/fixtures/nightwave.rs @@ -0,0 +1,308 @@ +use crate::fixture; + +fixture! { + nightwave, +r#" +{ + "id": "nightwave1756684800000", + "activation": "2025-02-06T19:15:00.000Z", + "startString": "-16d 22h 56m 30s", + "expiry": "2025-09-01T00:00:00.000Z", + "active": true, + "season": 14, + "tag": "Radio Legion Intermission12 Syndicate", + "phase": 0, + "params": { + + }, + "possibleChallenges": [], + "activeChallenges": [ + { + "id": "1740355200000seasondailykillenemieswithfire", + "activation": "2025-02-21T00:00:00.000Z", + "startString": "-2d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": true, + "isElite": false, + "desc": "Kill 150 Enemies with Heat Damage", + "title": "Arsonist", + "reputation": 1000, + "isPermanent": false + }, + { + "id": "1740441600000seasondailykillenemieswithabilities", + "activation": "2025-02-22T00:00:00.000Z", + "startString": "-1d 18h 11m 30s", + "expiry": "2025-02-25T00:00:00.000Z", + "active": true, + "isDaily": true, + "isElite": false, + "desc": "Kill 150 Enemies with Abilities", + "title": "Power Trip", + "reputation": 1000, + "isPermanent": false + }, + { + "id": "1740528000000seasondailybulletjump", + "activation": "2025-02-23T00:00:00.000Z", + "startString": "-18h 11m 30s", + "expiry": "2025-02-26T00:00:00.000Z", + "active": true, + "isDaily": true, + "isElite": false, + "desc": "Bullet Jump 150 times", + "title": "Trampoline", + "reputation": 1000, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklypermanentcompletemissions3", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "Complete any 15 missions", + "title": "Mission Complete III", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklypermanentkilleximus3", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "Kill 30 Eximus", + "title": "Eximus Eliminator III", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklypermanentkillenemies3", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "Kill 500 Enemies", + "title": "Not a Warning Shot III", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyfeedhelminth", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "Feed the Helminth any resource", + "title": "Feed The Beast", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyvenusbounties", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "Complete 3 different bounties in the Orb Vallis", + "title": "Venus Bounty Hunter", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyhardluapuzzles", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": true, + "desc": "Complete 4 Halls of Ascension on Lua", + "title": "Ascendant", + "reputation": 7000, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyhardkillthumper", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 11m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": true, + "desc": "Kill a Tusk Thumper Doma in the Plains of Eidolon", + "title": "Walk Without Rhythm", + "reputation": 7000, + "isPermanent": false + } + ], + "rewardTypes": [ + "credits" + ] +} +"# +--- +r#" +{ + "id": "nightwave1756684800000", + "activation": "2025-02-06T19:15:00.000Z", + "startString": "-16d 22h 57m 30s", + "expiry": "2025-09-01T00:00:00.000Z", + "active": true, + "season": 14, + "tag": "Radio Legion Intermission12 Syndicate", + "phase": 0, + "params": { + + }, + "possibleChallenges": [], + "activeChallenges": [ + { + "id": "1740355200000seasondailykillenemieswithfire", + "activation": "2025-02-21T00:00:00.000Z", + "startString": "-2d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": true, + "isElite": false, + "desc": "使用火焰伤害击杀150名敌人", + "title": "纵火犯", + "reputation": 1000, + "isPermanent": false + }, + { + "id": "1740441600000seasondailykillenemieswithabilities", + "activation": "2025-02-22T00:00:00.000Z", + "startString": "-1d 18h 12m 30s", + "expiry": "2025-02-25T00:00:00.000Z", + "active": true, + "isDaily": true, + "isElite": false, + "desc": "使用技能擊殺150名敵人", + "title": "力量展现", + "reputation": 1000, + "isPermanent": false + }, + { + "id": "1740528000000seasondailybulletjump", + "activation": "2025-02-23T00:00:00.000Z", + "startString": "-18h 12m 30s", + "expiry": "2025-02-26T00:00:00.000Z", + "active": true, + "isDaily": true, + "isElite": false, + "desc": "旋身飞跃150次", + "title": "蹦弹", + "reputation": 1000, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklypermanentcompletemissions3", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "完成任意 15 项任务", + "title": "任务完成 III", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklypermanentkilleximus3", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "击杀30名卓越者", + "title": "卓越歼灭者 III", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklypermanentkillenemies3", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "击杀500名敌人", + "title": "这不是警告射击 III", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyfeedhelminth", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "向 Helminth 饲喂任意资源", + "title": "喂饱野兽", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyvenusbounties", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": false, + "desc": "在奥布山谷完成 3 个不同的赏金任务", + "title": "金星赏金猎人", + "reputation": 4500, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyhardluapuzzles", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": true, + "desc": "完成月球上的4间晋升大厅", + "title": "上行", + "reputation": 7000, + "isPermanent": false + }, + { + "id": "1740355200000seasonweeklyhardkillthumper", + "activation": "2025-02-17T00:00:00.000Z", + "startString": "-6d 18h 12m 30s", + "expiry": "2025-02-24T00:00:00.000Z", + "active": true, + "isDaily": false, + "isElite": true, + "desc": "在夜灵平野上击杀一个巨牙重击者朵玛", + "title": "无律之行", + "reputation": 7000, + "isPermanent": false + } + ], + "rewardTypes": [ + "credits" + ] +} +"# +} diff --git a/src/worldstate/fixtures/orb_vallis.rs b/src/worldstate/fixtures/orb_vallis.rs new file mode 100644 index 0000000..f20f6af --- /dev/null +++ b/src/worldstate/fixtures/orb_vallis.rs @@ -0,0 +1,28 @@ +use crate::fixture; + +fixture! { + orb_vallis, +r#" +{ + "id": "vallisCycle1740334020000", + "expiry": "2025-02-23T18:27:08.000Z", + "isWarm": false, + "state": "cold", + "activation": "2025-02-23T18:07:00.000Z", + "timeLeft": "15m 7s", + "shortString": "15m to Warm" +} +"# +--- +r#" +{ + "id": "vallisCycle1740334020000", + "expiry": "2025-02-23T18:27:08.000Z", + "isWarm": false, + "state": "cold", + "activation": "2025-02-23T18:07:00.000Z", + "timeLeft": "13m 37s", + "shortString": "13m to Warm" +} +"# +} diff --git a/src/worldstate/fixtures/sortie.rs b/src/worldstate/fixtures/sortie.rs new file mode 100644 index 0000000..190754e --- /dev/null +++ b/src/worldstate/fixtures/sortie.rs @@ -0,0 +1,90 @@ +use crate::fixture; + +fixture! { + sortie, +r#" +{ + "id": "67bb508fa44542e407c1c18d", + "activation": "2025-02-23T17:00:00.000Z", + "startString": "-1h 14m 10s", + "expiry": "2025-02-24T17:00:00.000Z", + "active": true, + "rewardPool": "Sortie Rewards", + "variants": [ + { + "missionType": "Sabotage", + "missionTypeKey": "Sabotage", + "modifier": "Eximus Stronghold", + "modifierDescription": "Eximus units have a much higher spawn rate in this mission. Some of their auras stack.", + "node": "Outer Terminus (Pluto)", + "nodeKey": "Outer Terminus (Pluto)" + }, + { + "missionType": "Spy", + "missionTypeKey": "Spy", + "modifier": "Enhanced Enemy Shields", + "modifierDescription": "Enemies have vastly Improved Shields. Magnetic Procs are advised.", + "node": "Aphrodite (Venus)", + "nodeKey": "Aphrodite (Venus)" + }, + { + "missionType": "Mobile Defense", + "missionTypeKey": "Mobile Defense", + "modifier": "Enemy Elemental Enhancement: Blast", + "modifierDescription": "Enemies deal increased Blast damage and also have increased Immunity to said damage type.", + "node": "Roche (Phobos)", + "nodeKey": "Roche (Phobos)" + } + ], + "missions": [], + "boss": "Ambulas", + "faction": "Corpus", + "factionKey": "Corpus", + "expired": false, + "eta": "22h 45m 49s" +} +"# +--- +r#" +{ + "id": "67bb508fa44542e407c1c18d", + "activation": "2025-02-23T17:00:00.000Z", + "startString": "-1h 14m 40s", + "expiry": "2025-02-24T17:00:00.000Z", + "active": true, + "rewardPool": "Sortie Rewards", + "variants": [ + { + "missionType": "破壞", + "missionTypeKey": "Sabotage", + "modifier": "卓越者大本营", + "modifierDescription": "卓越者单位在这个任务中的生成率更高,并且携带的光环数量更多。", + "node": "Outer Terminus (冥王星)", + "nodeKey": "Outer Terminus (Pluto)" + }, + { + "missionType": "間諜", + "missionTypeKey": "Spy", + "modifier": "敌人护盾强化", + "modifierDescription": "敵人已有強化護盾,建議使用磁力元素。", + "node": "Aphrodite (金星)", + "nodeKey": "Aphrodite (Venus)" + }, + { + "missionType": "移動防禦", + "missionTypeKey": "Mobile Defense", + "modifier": "敌人元素强化(爆炸)", + "modifierDescription": "敌人造成更高的爆炸伤害,并对爆炸伤害具有更高的抗性", + "node": "Roche (火衛一)", + "nodeKey": "Roche (Phobos)" + } + ], + "missions": [], + "boss": "Ambulas", + "faction": "Corpus", + "factionKey": "Corpus", + "expired": false, + "eta": "22h 45m 19s" +} +"# +} diff --git a/src/worldstate/fixtures/steel_path.rs b/src/worldstate/fixtures/steel_path.rs new file mode 100644 index 0000000..aa27f70 --- /dev/null +++ b/src/worldstate/fixtures/steel_path.rs @@ -0,0 +1,262 @@ +use crate::fixture; + +fixture! { + steel_path, +r#" +{ + "currentReward": { + "name": "Rifle Riven Mod", + "cost": 75 + }, + "activation": "2025-02-17T00:00:00.000Z", + "expiry": "2025-02-23T23:59:59.000Z", + "remaining": "5h 44m 8s", + "rotation": [ + { + "name": "Umbra Forma Blueprint", + "cost": 150 + }, + { + "name": "50,000 Kuva", + "cost": 55 + }, + { + "name": "Kitgun Riven Mod", + "cost": 75 + }, + { + "name": "3x Forma", + "cost": 75 + }, + { + "name": "Zaw Riven Mod", + "cost": 75 + }, + { + "name": "30,000 Endo", + "cost": 150 + }, + { + "name": "Rifle Riven Mod", + "cost": 75 + }, + { + "name": "Shotgun Riven Mod", + "cost": 75 + } + ], + "evergreens": [ + { + "name": "Veiled Riven Cipher", + "cost": 20 + }, + { + "name": "Bishamo Pauldrons Blueprint", + "cost": 15 + }, + { + "name": "Bishamo Cuirass Blueprint", + "cost": 25 + }, + { + "name": "Bishamo Helmet Blueprint", + "cost": 20 + }, + { + "name": "Bishamo Greaves Blueprint", + "cost": 25 + }, + { + "name": "10k Kuva", + "cost": 15 + }, + { + "name": "Primary Arcane Adapter", + "cost": 15 + }, + { + "name": "Secondary Arcane Adapter", + "cost": 15 + }, + { + "name": "Relic Pack", + "cost": 15 + }, + { + "name": "Stance Forma Blueprint", + "cost": 10 + }, + { + "name": "Trio Orbit Ephermera", + "cost": 3 + }, + { + "name": "Crania Ephemera", + "cost": 85 + }, + { + "name": "Counterbalance", + "cost": 35 + }, + { + "name": "Noggle Statue - Teshin", + "cost": 35 + }, + { + "name": "Gauss in Action Glyph", + "cost": 15 + }, + { + "name": "Grendel in Action Glyph", + "cost": 15 + }, + { + "name": "Protea in Action Glyph", + "cost": 15 + }, + { + "name": "Orokin Tea Set", + "cost": 15 + }, + { + "name": "Xaku in Action Glyph", + "cost": 15 + } + ], + "incursions": { + "id": "spi:1740268800000", + "activation": "2025-02-23T00:00:00.000Z", + "expiry": "2025-02-23T23:59:59.000Z" + } +} +"# +--- +r#" +{ + "currentReward": { + "name": "步枪裂罅 Mod", + "cost": 75 + }, + "activation": "2025-02-17T00:00:00.000Z", + "expiry": "2025-02-23T23:59:59.000Z", + "remaining": "5h 44m 18s", + "rotation": [ + { + "name": "Umbra Forma 蓝图", + "cost": 150 + }, + { + "name": "50,000 赤毒", + "cost": 55 + }, + { + "name": "组合枪裂罅 Mod", + "cost": 75 + }, + { + "name": "3x Forma", + "cost": 75 + }, + { + "name": "Zaw 裂罅 Mod", + "cost": 75 + }, + { + "name": "30,000 内融核心", + "cost": 150 + }, + { + "name": "步枪裂罅 Mod", + "cost": 75 + }, + { + "name": "霰弹枪裂罅 Mod", + "cost": 75 + } + ], + "evergreens": [ + { + "name": "裂罅破解器", + "cost": 20 + }, + { + "name": "军神护肩 蓝图", + "cost": 15 + }, + { + "name": "军神胸甲 蓝图", + "cost": 25 + }, + { + "name": "军神头盔 蓝图", + "cost": 20 + }, + { + "name": "军神护胫 蓝图", + "cost": 25 + }, + { + "name": "10,000 赤毒", + "cost": 15 + }, + { + "name": "主要武器赋能槽连接器", + "cost": 15 + }, + { + "name": "次要武器赋能槽连接器", + "cost": 15 + }, + { + "name": "遗物组合包", + "cost": 15 + }, + { + "name": "架式 Forma 蓝图", + "cost": 10 + }, + { + "name": "三轨幻纹", + "cost": 3 + }, + { + "name": "颅骨幻纹", + "cost": 85 + }, + { + "name": "制衡", + "cost": 35 + }, + { + "name": "Teshin 摇头娃娃", + "cost": 35 + }, + { + "name": "Gauss 战斗姿态浮印", + "cost": 15 + }, + { + "name": "Grendel 战斗姿态浮印", + "cost": 15 + }, + { + "name": "Protea 战斗姿态浮印", + "cost": 15 + }, + { + "name": "Orokin 茶具", + "cost": 15 + }, + { + "name": "Xaku 战斗姿态浮印", + "cost": 15 + } + ], + "incursions": { + "id": "spi:1740268800000", + "activation": "2025-02-23T00:00:00.000Z", + "expiry": "2025-02-23T23:59:59.000Z" + } +} +"# +} diff --git a/src/worldstate/fixtures/syndicate_mission.rs b/src/worldstate/fixtures/syndicate_mission.rs new file mode 100644 index 0000000..a9c9b1b --- /dev/null +++ b/src/worldstate/fixtures/syndicate_mission.rs @@ -0,0 +1,1820 @@ +use crate::fixture; + +fixture! { + syndicate_mission, +r#" +[ + { + "id": "1740339093350CetusSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 15m 40s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "Ostrons", + "syndicateKey": "Ostrons", + "nodes": [], + "jobs": [ + { + "id": "AttritionBountyLib1740339093350", + "rewardPool": [ + "Vitality", + "200X Plastids", + "1,500 Credits Cache", + "50 Endo", + "15X Nistlepod", + "Gara Chassis Blueprint", + "Point Blank", + "Intensify", + "2X Gallium" + ], + "type": "Weaken the Grineer Foothold", + "enemyLevels": [5, 15], + "standingStages": [490, 490, 490], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "ReclamationBountyCache1740339093350", + "rewardPool": [ + "Point Strike", + "300X Circuits", + "2,500 Credits Cache", + "100 Endo", + "Gara Systems Blueprint", + "Enhanced Durability", + "Grim Fury", + "Aya", + "2X Orokin Cell" + ], + "type": "Find the Hidden Artifact", + "enemyLevels": [10, 30], + "standingStages": [670, 670, 670], + "minMR": 1, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "RescueBountyResc1740339093350", + "rewardPool": [ + "Augur Pact", + "Naramon Lens", + "Zenurik Lens", + "200 Endo", + "Gara Neuroptics Blueprint", + "Vigilante Fervor", + "Revenant Systems Blueprint", + "Aya", + "Gladiator Vice" + ], + "type": "Search and Rescue", + "enemyLevels": [20, 40], + "standingStages": [570, 570, 570, 830], + "minMR": 2, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AssassinateBountyCap1740339093350", + "rewardPool": [ + "Augur Message", + "100X Kuva", + "Naramon Lens", + "300 Endo", + "Cetus Wisp", + "Vigilante Pursuit", + "Revenant Chassis Blueprint", + "Aya", + "Gladiator Finesse" + ], + "type": "Capture the New Grineer Commander", + "enemyLevels": [30, 50], + "standingStages": [570, 570, 570, 570, 1120], + "minMR": 3, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AssassinateBountyAss1740339093350", + "rewardPool": [ + "5X Breath Of The Eidolon", + "400 Endo", + "2X Cetus Wisp", + "300X Kuva", + "Aya", + "Furax Wraith Blueprint", + "Twirling Spire", + "Eidolon Lens Blueprint", + "Revenant Neuroptics Blueprint" + ], + "type": "Assassinate the Commander", + "enemyLevels": [40, 60], + "standingStages": [710, 710, 710, 710, 1390], + "minMR": 5, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AttritionBountySab1740339093350", + "rewardPool": [ + "5X Breath Of The Eidolon", + "400 Endo", + "2X Cetus Wisp", + "300X Kuva", + "Aya", + "Furax Wraith Blueprint", + "Twirling Spire", + "Eidolon Lens Blueprint", + "Revenant Neuroptics Blueprint" + ], + "type": "Sabotage the Enemy Supply Lines", + "enemyLevels": [100, 100], + "standingStages": [840, 840, 840, 840, 1660], + "minMR": 10, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AssassinateBountyAss1740339093350", + "rewardPool": [ + "Nira's Anguish", + "Narmer Isoplast", + "600 Endo", + "Caliban Neuroptics Blueprint", + "Amar's Hatred", + "2X Narmer Isoplast", + "900 Endo", + "Boreal's Contempt", + "Korumm Blueprint", + "3X Narmer Isoplast", + "1200 Endo" + ], + "type": "Rise and Fall (Narmer)", + "enemyLevels": [50, 70], + "standingStages": [840, 840, 840, 840, 1640], + "minMR": 0, + "expiry": "2025-02-23T18:41:33.350Z", + "timeBound": "day" + } + ], + "eta": "1h 14m 18s" + }, + { + "id": "1740339093350EntratiLabSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 15m 40s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "Cavia", + "syndicateKey": "Cavia", + "nodes": [], + "jobs": [], + "eta": "1h 14m 18s" + }, + { + "id": "1740339093350EntratiSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 15m 35s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "Entrati", + "syndicateKey": "Entrati", + "nodes": [], + "jobs": [ + { + "id": "DeimosKeyPiecesBounty1740339093350", + "rewardPool": [ + "3X 1,500 Credits Cache", + "150 Endo", + "15X Lucent Teroglobe", + "2X 3,000 Credits Cache", + "250 Endo", + "Aya", + "Scintillant" + ], + "type": "Salvage", + "enemyLevels": [5, 15], + "standingStages": [5, 5, 5], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosAreaDefenseBounty1740339093350", + "rewardPool": [ + "600 Endo", + "Naramon Lens", + "Zenurik Lens", + "Body Count", + "Scintillant", + "Aya", + "Xaku Neuroptics Blueprint", + "Spring-Loaded Chamber", + "Repeater Clip", + "Pressurized Magazine" + ], + "type": "Reclaim What's Ours", + "enemyLevels": [15, 25], + "standingStages": [10, 10, 10], + "minMR": 1, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosEndlessPurifyBounty1740339093350", + "rewardPool": [ + "Ayatan Amber Star", + "250 Endo", + "Carnis Mandible", + "Jugulus Barbs", + "Saxum Thorax", + "500 Endo", + "Aya", + "Carnis Carapace", + "Jugulus Carapace", + "Saxum Carapace", + "750 Endo", + "Carnis Stinger", + "Jugulus Spines", + "Saxum Spittle" + ], + "type": "Anomaly Retrieval (Endless)", + "enemyLevels": [25, 30], + "standingStages": [14, 14, 14], + "minMR": 5, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosPurifyBounty1740339093350", + "rewardPool": [ + "750 Endo", + "Unairu Lens", + "Madurai Lens", + "Hydraulic Crosshairs", + "5X Fass Residue", + "Aya", + "Xaku Systems Blueprint", + "Laser Sight", + "Blood Rush", + "Argon Scope" + ], + "type": "Anomaly Retrieval", + "enemyLevels": [30, 40], + "standingStages": [16, 16, 16, 24], + "minMR": 2, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosAssassinateBounty1740339093350", + "rewardPool": [ + "Ayatan Amber Star", + "1000 Endo", + "750X Kuva", + "Aya", + "Xaku Chassis Blueprint", + "Quassus Blueprint" + ], + "type": "Cleanse the Land", + "enemyLevels": [40, 60], + "standingStages": [22, 22, 22, 22, 43], + "minMR": 3, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosExcavateBounty1740339093350", + "rewardPool": [ + "Ayatan Amber Star", + "1000 Endo", + "750X Kuva", + "Aya", + "Xaku Chassis Blueprint", + "Quassus Blueprint" + ], + "type": "Core Samples", + "enemyLevels": [100, 100], + "standingStages": [25, 25, 25, 25, 50], + "minMR": 10, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "1740339093350", + "rewardPool": [ + "Residual Boils", + "Necramech Redirection", + "2X Orokin Orientation Matrix", + "Meso E6 Relic", + "Residual Shock", + "Necramech Steel Fiber", + "2X Orokin Ballistics Matrix", + "Neo W2 Relic", + "Neo G8 Relic", + "Theorem Contagion", + "Necramech Thrusters", + "Damaged Necramech Weapon Barrel", + "3X Scintillant", + "2X Orokin Animus Matrix", + "Axi G14 Relic" + ], + "type": "Isolation Vault Chamber B", + "enemyLevels": [30, 40], + "standingStages": [2, 2, 2, 4], + "minMR": 5, + "isVault": true, + "locationTag": "ChamberB", + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "1740339093350", + "rewardPool": [ + "Residual Boils", + "Necramech Blitz", + "Arum Spinosa Blueprint", + "3X Orokin Orientation Matrix", + "Neo W2 Relic", + "Residual Shock", + "Necramech Slipstream", + "Arum Spinosa Guard", + "3X Orokin Ballistics Matrix", + "Neo G8 Relic", + "Neo C6 Relic", + "Theorem Contagion", + "Necramech Seismic Wave", + "Damaged Necramech Weapon Barrel", + "Arum Spinosa Rivet", + "3X Orokin Animus Matrix", + "Neo T9 Relic" + ], + "type": "Isolation Vault Chamber A", + "enemyLevels": [40, 50], + "standingStages": [4, 4, 4, 5], + "minMR": 5, + "isVault": true, + "locationTag": "ChamberA", + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "1740339093350", + "rewardPool": [ + "Residual Boils", + "Necramech Fury", + "Sporothrix Blueprint", + "4X Orokin Orientation Matrix", + "Meso G8 Relic", + "Residual Shock", + "Necramech Stretch", + "Sporothrix Barrel", + "4X Orokin Ballistics Matrix", + "Neo W2 Relic", + "Neo G8 Relic", + "Theorem Contagion", + "Necramech Streamline", + "Damaged Necramech Weapon Barrel", + "4X Orokin Animus Matrix", + "Axi P9 Relic" + ], + "type": "Isolation Vault Chamber C", + "enemyLevels": [50, 60], + "standingStages": [5, 5, 5, 7], + "minMR": 5, + "isVault": true, + "locationTag": "ChamberC", + "expiry": "2025-02-23T19:31:33.350Z" + } + ], + "eta": "1h 14m 23s" + }, + { + "id": "1740339093350HexSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 15m 40s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "HexSyndicate", + "syndicateKey": "HexSyndicate", + "nodes": [], + "jobs": [], + "eta": "1h 14m 18s" + }, + { + "id": "1740339093350SolarisSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 15m 40s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "Solaris United", + "syndicateKey": "Solaris United", + "nodes": [], + "jobs": [ + { + "id": "VenusTheftJobExcavation1740339093350", + "rewardPool": [ + "100X Plastids", + "1,500 Credits Cache", + "50 Endo", + "5X Gorgaricus Spore", + "Training Debt-Bond", + "Garuda Chassis Blueprint", + "5X Tepa Nodule", + "Aya" + ], + "type": "Resource Theft", + "enemyLevels": [5, 15], + "standingStages": [490, 490, 490], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusIntelJobRecovery1740339093350", + "rewardPool": [ + "15X Gorgaricus Spore", + "200X Nano Spores", + "2,500 Credits Cache", + "100 Endo", + "2X Shelter Debt-Bond", + "Garuda Systems Blueprint", + "Aya", + "Tek Assault" + ], + "type": "Proof of Life", + "enemyLevels": [10, 30], + "standingStages": [690, 690, 690], + "minMR": 1, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusChaosJobAssassinate1740339093350", + "rewardPool": [ + "200 Endo", + "Naramon Lens", + "300X Rubedo", + "2X Medical Debt-Bond", + "Garuda Neuroptics Blueprint", + "Aya", + "Tek Enhance" + ], + "type": "Scorched Earth", + "enemyLevels": [20, 40], + "standingStages": [660, 660, 660, 980], + "minMR": 2, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusChaosJobExcavation1740339093350", + "rewardPool": [ + "200X Kuva", + "300 Endo", + "2X Mutagen Mass", + "2X Advances Debt-Bond", + "Aya", + "Tek Gravity" + ], + "type": "Bury Them", + "enemyLevels": [30, 50], + "standingStages": [590, 590, 590, 590, 1160], + "minMR": 3, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusWetworkJobSpy1740339093350", + "rewardPool": [ + "400 Endo", + "Neurodes", + "Orokin Cell", + "2X Familial Debt-Bond", + "Aya", + "Tek Collateral" + ], + "type": "Falling Star", + "enemyLevels": [40, 60], + "standingStages": [720, 720, 720, 720, 1420], + "minMR": 5, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusIntelJobResource1740339093350", + "rewardPool": [ + "400 Endo", + "Neurodes", + "Orokin Cell", + "2X Familial Debt-Bond", + "Aya", + "Tek Collateral" + ], + "type": "Operational Intelligence", + "enemyLevels": [100, 100], + "standingStages": [840, 840, 840, 840, 1660], + "minMR": 10, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "NarmerVenusCullJobExterminate1740339093350", + "rewardPool": [ + "Nira's Anguish", + "Narmer Isoplast", + "600 Endo", + "Caliban Neuroptics Blueprint", + "Amar's Hatred", + "2X Narmer Isoplast", + "900 Endo", + "Boreal's Contempt", + "Korumm Blueprint", + "3X Narmer Isoplast", + "1200 Endo" + ], + "type": "Crush the Cult (Narmer)", + "enemyLevels": [50, 70], + "standingStages": [770, 770, 770, 770, 1500], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z", + "timeBoound": "night" + } + ], + "eta": "1h 14m 18s" + }, + { + "id": "1740339093350ZarimanSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 15m 40s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "The Holdfasts", + "syndicateKey": "The Holdfasts", + "nodes": [], + "jobs": [], + "eta": "1h 14m 18s" + }, + { + "id": "1740416340000ArbitersSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Arbiters of Hexis", + "syndicateKey": "Arbiters of Hexis", + "nodes": [ + "Cervantes (Earth)", + "Unda (Venus)", + "Gulliver (Phobos)", + "Olympus (Mars)", + "Lares (Mercury)", + "Charybdis (Sedna)", + "Enceladus (Saturn)" + ], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000CephalonSudaSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Cephalon Suda", + "syndicateKey": "Cephalon Suda", + "nodes": [ + "Ultor (Mars)", + "Linea (Venus)", + "Dirus (Deimos)", + "Cinxia (Ceres)", + "Caloris (Mercury)", + "Telesto (Saturn)", + "Naga (Sedna)" + ], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000EventSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Operations Syndicate", + "syndicateKey": "Operations Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000KahlSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Kahl's Garrison", + "syndicateKey": "Kahl's Garrison", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000NecraloidSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Necraloid", + "syndicateKey": "Necraloid", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000NewLokaSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "New Loka", + "syndicateKey": "New Loka", + "nodes": [ + "M Prime (Mercury)", + "Cambria (Earth)", + "Ose (Europa)", + "Draco (Ceres)", + "Kiliken (Venus)", + "Numa (Saturn)", + "Shklovsky (Phobos)" + ], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000PerrinSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Perrin Sequence", + "syndicateKey": "Perrin Sequence", + "nodes": [ + "Ares (Mars)", + "Odin (Mercury)", + "Cassini (Saturn)", + "Cytherean (Venus)", + "Ker (Ceres)", + "Aten (Void)", + "Pacific (Earth)" + ], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000QuillsSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Quills", + "syndicateKey": "Quills", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegion2Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "The Emissary", + "syndicateKey": "The Emissary", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegion3Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Glassmaker", + "syndicateKey": "Glassmaker", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission10Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission10Syndicate", + "syndicateKey": "RadioLegionIntermission10Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission11Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission11Syndicate", + "syndicateKey": "RadioLegionIntermission11Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission12Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission12Syndicate", + "syndicateKey": "RadioLegionIntermission12Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission2Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Intermission II", + "syndicateKey": "Intermission II", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission3Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Intermission III", + "syndicateKey": "Intermission III", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission4Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Nora's Choice", + "syndicateKey": "Nora's Choice", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission5Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Nora's Mix Volume 1", + "syndicateKey": "Nora's Mix Volume 1", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission6Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Nora's Mix Volume 2", + "syndicateKey": "Nora's Mix Volume 2", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission7Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission7Syndicate", + "syndicateKey": "RadioLegionIntermission7Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission8Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission8Syndicate", + "syndicateKey": "RadioLegionIntermission8Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermission9Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission9Syndicate", + "syndicateKey": "RadioLegionIntermission9Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionIntermissionSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Intermission", + "syndicateKey": "Intermission", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RadioLegionSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "The Wolf of Saturn Six", + "syndicateKey": "The Wolf of Saturn Six", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000RedVeilSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Red Veil", + "syndicateKey": "Red Veil", + "nodes": [ + "Augustus (Mars)", + "Thebe (Jupiter)", + "Phlegyas (Deimos)", + "V Prime (Venus)", + "Ukko (Void)", + "Pantheon (Mercury)", + "Horend (Deimos)" + ], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000SteelMeridianSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Steel Meridian", + "syndicateKey": "Steel Meridian", + "nodes": [ + "Ara (Mars)", + "Boethius (Mercury)", + "Ananke (Jupiter)", + "Venera (Venus)", + "Hepit (Void)", + "Saxis (Eris)", + "Calypso (Saturn)" + ], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000VentKidsSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Vent Kids", + "syndicateKey": "Vent Kids", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + }, + { + "id": "1740416340000VoxSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 12s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Vox Solaris", + "syndicateKey": "Vox Solaris", + "nodes": [], + "jobs": [], + "eta": "22h 41m 44s" + } +] +"# +--- +r#" +[ + { + "id": "1740339093350CetusSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 16m 17s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "Ostrons", + "syndicateKey": "Ostrons", + "nodes": [], + "jobs": [ + { + "id": "AttritionBountyLib1740339093350", + "rewardPool": [ + "Vitality", + "200X Plastids", + "1,500 Credits Cache", + "50 Endo", + "15X Nistlepod", + "Gara Chassis Blueprint", + "Point Blank", + "Intensify", + "2X Gallium" + ], + "type": "Weaken the Grineer Foothold", + "enemyLevels": [5, 15], + "standingStages": [490, 490, 490], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "ReclamationBountyCache1740339093350", + "rewardPool": [ + "Point Strike", + "300X Circuits", + "2,500 Credits Cache", + "100 Endo", + "Gara Systems Blueprint", + "Enhanced Durability", + "Grim Fury", + "Aya", + "2X Orokin Cell" + ], + "type": "Find the Hidden Artifact", + "enemyLevels": [10, 30], + "standingStages": [670, 670, 670], + "minMR": 1, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "RescueBountyResc1740339093350", + "rewardPool": [ + "Augur Pact", + "Naramon Lens", + "Zenurik Lens", + "200 Endo", + "Gara Neuroptics Blueprint", + "Vigilante Fervor", + "Revenant Systems Blueprint", + "Aya", + "Gladiator Vice" + ], + "type": "Search and Rescue", + "enemyLevels": [20, 40], + "standingStages": [570, 570, 570, 830], + "minMR": 2, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AssassinateBountyCap1740339093350", + "rewardPool": [ + "Augur Message", + "100X Kuva", + "Naramon Lens", + "300 Endo", + "Cetus Wisp", + "Vigilante Pursuit", + "Revenant Chassis Blueprint", + "Aya", + "Gladiator Finesse" + ], + "type": "Capture the New Grineer Commander", + "enemyLevels": [30, 50], + "standingStages": [570, 570, 570, 570, 1120], + "minMR": 3, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AssassinateBountyAss1740339093350", + "rewardPool": [ + "5X Breath Of The Eidolon", + "400 Endo", + "2X Cetus Wisp", + "300X Kuva", + "Aya", + "Furax Wraith Blueprint", + "Twirling Spire", + "Eidolon Lens Blueprint", + "Revenant Neuroptics Blueprint" + ], + "type": "Assassinate the Commander", + "enemyLevels": [40, 60], + "standingStages": [710, 710, 710, 710, 1390], + "minMR": 5, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AttritionBountySab1740339093350", + "rewardPool": [ + "5X Breath Of The Eidolon", + "400 Endo", + "2X Cetus Wisp", + "300X Kuva", + "Aya", + "Furax Wraith Blueprint", + "Twirling Spire", + "Eidolon Lens Blueprint", + "Revenant Neuroptics Blueprint" + ], + "type": "Sabotage the Enemy Supply Lines", + "enemyLevels": [100, 100], + "standingStages": [840, 840, 840, 840, 1660], + "minMR": 10, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "AssassinateBountyAss1740339093350", + "rewardPool": [ + "Nira's Anguish", + "Narmer Isoplast", + "600 Endo", + "Caliban Neuroptics Blueprint", + "Amar's Hatred", + "2X Narmer Isoplast", + "900 Endo", + "Boreal's Contempt", + "Korumm Blueprint", + "3X Narmer Isoplast", + "1200 Endo" + ], + "type": "Rise and Fall (Narmer)", + "enemyLevels": [50, 70], + "standingStages": [840, 840, 840, 840, 1640], + "minMR": 0, + "expiry": "2025-02-23T18:41:33.350Z", + "timeBound": "day" + } + ], + "eta": "1h 13m 41s" + }, + { + "id": "1740339093350EntratiLabSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 16m 17s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "Cavia", + "syndicateKey": "Cavia", + "nodes": [], + "jobs": [], + "eta": "1h 13m 41s" + }, + { + "id": "1740339093350EntratiSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 16m 15s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "英择谛", + "syndicateKey": "Entrati", + "nodes": [], + "jobs": [ + { + "id": "DeimosKeyPiecesBounty1740339093350", + "rewardPool": [ + "3X 1,500 Credits Cache", + "150 Endo", + "15X Lucent Teroglobe", + "2X 3,000 Credits Cache", + "250 Endo", + "Aya", + "Scintillant" + ], + "type": "Salvage", + "enemyLevels": [5, 15], + "standingStages": [5, 5, 5], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosAreaDefenseBounty1740339093350", + "rewardPool": [ + "600 Endo", + "Naramon Lens", + "Zenurik Lens", + "Body Count", + "Scintillant", + "Aya", + "Xaku Neuroptics Blueprint", + "Spring-Loaded Chamber", + "Repeater Clip", + "Pressurized Magazine" + ], + "type": "Reclaim What's Ours", + "enemyLevels": [15, 25], + "standingStages": [10, 10, 10], + "minMR": 1, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosEndlessPurifyBounty1740339093350", + "rewardPool": [ + "Ayatan Amber Star", + "250 Endo", + "Carnis Mandible", + "Jugulus Barbs", + "Saxum Thorax", + "500 Endo", + "Aya", + "Carnis Carapace", + "Jugulus Carapace", + "Saxum Carapace", + "750 Endo", + "Carnis Stinger", + "Jugulus Spines", + "Saxum Spittle" + ], + "type": "Anomaly Retrieval (Endless)", + "enemyLevels": [25, 30], + "standingStages": [14, 14, 14], + "minMR": 5, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosPurifyBounty1740339093350", + "rewardPool": [ + "750 Endo", + "Unairu Lens", + "Madurai Lens", + "Hydraulic Crosshairs", + "5X Fass Residue", + "Aya", + "Xaku Systems Blueprint", + "Laser Sight", + "Blood Rush", + "Argon Scope" + ], + "type": "Anomaly Retrieval", + "enemyLevels": [30, 40], + "standingStages": [16, 16, 16, 24], + "minMR": 2, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosAssassinateBounty1740339093350", + "rewardPool": [ + "Ayatan Amber Star", + "1000 Endo", + "750X Kuva", + "Aya", + "Xaku Chassis Blueprint", + "Quassus Blueprint" + ], + "type": "Cleanse the Land", + "enemyLevels": [40, 60], + "standingStages": [22, 22, 22, 22, 43], + "minMR": 3, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "DeimosExcavateBounty1740339093350", + "rewardPool": [ + "Ayatan Amber Star", + "1000 Endo", + "750X Kuva", + "Aya", + "Xaku Chassis Blueprint", + "Quassus Blueprint" + ], + "type": "Core Samples", + "enemyLevels": [100, 100], + "standingStages": [25, 25, 25, 25, 50], + "minMR": 10, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "1740339093350", + "rewardPool": [ + "Residual Boils", + "Necramech Redirection", + "2X Orokin Orientation Matrix", + "Meso E6 Relic", + "Residual Shock", + "Necramech Steel Fiber", + "2X Orokin Ballistics Matrix", + "Neo W2 Relic", + "Neo G8 Relic", + "Theorem Contagion", + "Necramech Thrusters", + "Damaged Necramech Weapon Barrel", + "3X Scintillant", + "2X Orokin Animus Matrix", + "Axi G14 Relic" + ], + "type": "Isolation Vault Chamber B", + "enemyLevels": [30, 40], + "standingStages": [2, 2, 2, 4], + "minMR": 5, + "isVault": true, + "locationTag": "ChamberB", + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "1740339093350", + "rewardPool": [ + "Residual Boils", + "Necramech Blitz", + "Arum Spinosa Blueprint", + "3X Orokin Orientation Matrix", + "Neo W2 Relic", + "Residual Shock", + "Necramech Slipstream", + "Arum Spinosa Guard", + "3X Orokin Ballistics Matrix", + "Neo G8 Relic", + "Neo C6 Relic", + "Theorem Contagion", + "Necramech Seismic Wave", + "Damaged Necramech Weapon Barrel", + "Arum Spinosa Rivet", + "3X Orokin Animus Matrix", + "Neo T9 Relic" + ], + "type": "Isolation Vault Chamber A", + "enemyLevels": [40, 50], + "standingStages": [4, 4, 4, 5], + "minMR": 5, + "isVault": true, + "locationTag": "ChamberA", + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "1740339093350", + "rewardPool": [ + "Residual Boils", + "Necramech Fury", + "Sporothrix Blueprint", + "4X Orokin Orientation Matrix", + "Meso G8 Relic", + "Residual Shock", + "Necramech Stretch", + "Sporothrix Barrel", + "4X Orokin Ballistics Matrix", + "Neo W2 Relic", + "Neo G8 Relic", + "Theorem Contagion", + "Necramech Streamline", + "Damaged Necramech Weapon Barrel", + "4X Orokin Animus Matrix", + "Axi P9 Relic" + ], + "type": "Isolation Vault Chamber C", + "enemyLevels": [50, 60], + "standingStages": [5, 5, 5, 7], + "minMR": 5, + "isVault": true, + "locationTag": "ChamberC", + "expiry": "2025-02-23T19:31:33.350Z" + } + ], + "eta": "1h 13m 43s" + }, + { + "id": "1740339093350HexSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 16m 17s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "HexSyndicate", + "syndicateKey": "HexSyndicate", + "nodes": [], + "jobs": [], + "eta": "1h 13m 41s" + }, + { + "id": "1740339093350SolarisSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 16m 17s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "索拉里斯联盟", + "syndicateKey": "Solaris United", + "nodes": [], + "jobs": [ + { + "id": "VenusTheftJobExcavation1740339093350", + "rewardPool": [ + "100X Plastids", + "1,500 Credits Cache", + "50 Endo", + "5X Gorgaricus Spore", + "Training Debt-Bond", + "Garuda Chassis Blueprint", + "5X Tepa Nodule", + "Aya" + ], + "type": "Resource Theft", + "enemyLevels": [5, 15], + "standingStages": [490, 490, 490], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusIntelJobRecovery1740339093350", + "rewardPool": [ + "15X Gorgaricus Spore", + "200X Nano Spores", + "2,500 Credits Cache", + "100 Endo", + "2X Shelter Debt-Bond", + "Garuda Systems Blueprint", + "Aya", + "Tek Assault" + ], + "type": "Proof of Life", + "enemyLevels": [10, 30], + "standingStages": [690, 690, 690], + "minMR": 1, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusChaosJobAssassinate1740339093350", + "rewardPool": [ + "200 Endo", + "Naramon Lens", + "300X Rubedo", + "2X Medical Debt-Bond", + "Garuda Neuroptics Blueprint", + "Aya", + "Tek Enhance" + ], + "type": "Scorched Earth", + "enemyLevels": [20, 40], + "standingStages": [660, 660, 660, 980], + "minMR": 2, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusChaosJobExcavation1740339093350", + "rewardPool": [ + "200X Kuva", + "300 Endo", + "2X Mutagen Mass", + "2X Advances Debt-Bond", + "Aya", + "Tek Gravity" + ], + "type": "Bury Them", + "enemyLevels": [30, 50], + "standingStages": [590, 590, 590, 590, 1160], + "minMR": 3, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusWetworkJobSpy1740339093350", + "rewardPool": [ + "400 Endo", + "Neurodes", + "Orokin Cell", + "2X Familial Debt-Bond", + "Aya", + "Tek Collateral" + ], + "type": "Falling Star", + "enemyLevels": [40, 60], + "standingStages": [720, 720, 720, 720, 1420], + "minMR": 5, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "VenusIntelJobResource1740339093350", + "rewardPool": [ + "400 Endo", + "Neurodes", + "Orokin Cell", + "2X Familial Debt-Bond", + "Aya", + "Tek Collateral" + ], + "type": "Operational Intelligence", + "enemyLevels": [100, 100], + "standingStages": [840, 840, 840, 840, 1660], + "minMR": 10, + "expiry": "2025-02-23T19:31:33.350Z" + }, + { + "id": "NarmerVenusCullJobExterminate1740339093350", + "rewardPool": [ + "Nira's Anguish", + "Narmer Isoplast", + "600 Endo", + "Caliban Neuroptics Blueprint", + "Amar's Hatred", + "2X Narmer Isoplast", + "900 Endo", + "Boreal's Contempt", + "Korumm Blueprint", + "3X Narmer Isoplast", + "1200 Endo" + ], + "type": "Crush the Cult (Narmer)", + "enemyLevels": [50, 70], + "standingStages": [770, 770, 770, 770, 1500], + "minMR": 0, + "expiry": "2025-02-23T19:31:33.350Z", + "timeBoound": "night" + } + ], + "eta": "1h 13m 41s" + }, + { + "id": "1740339093350ZarimanSyndicate", + "activation": "2025-02-23T17:01:34.476Z", + "startString": "-1h 16m 17s", + "expiry": "2025-02-23T19:31:33.350Z", + "active": true, + "syndicate": "坚守者", + "syndicateKey": "The Holdfasts", + "nodes": [], + "jobs": [], + "eta": "1h 13m 41s" + }, + { + "id": "1740416340000ArbitersSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "均衡仲裁者", + "syndicateKey": "Arbiters of Hexis", + "nodes": [ + "Cervantes (Earth)", + "Unda (Venus)", + "Gulliver (Phobos)", + "Olympus (Mars)", + "Lares (Mercury)", + "Charybdis (Sedna)", + "Enceladus (Saturn)" + ], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000CephalonSudaSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "中樞蘇達", + "syndicateKey": "Cephalon Suda", + "nodes": [ + "Ultor (Mars)", + "Linea (Venus)", + "Dirus (Deimos)", + "Cinxia (Ceres)", + "Caloris (Mercury)", + "Telesto (Saturn)", + "Naga (Sedna)" + ], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000EventSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "集團", + "syndicateKey": "Operations Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000KahlSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "卡尔驻军", + "syndicateKey": "Kahl's Garrison", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000NecraloidSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "殁世械灵", + "syndicateKey": "Necraloid", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000NewLokaSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "新世間", + "syndicateKey": "New Loka", + "nodes": [ + "M Prime (Mercury)", + "Cambria (Earth)", + "Ose (Europa)", + "Draco (Ceres)", + "Kiliken (Venus)", + "Numa (Saturn)", + "Shklovsky (Phobos)" + ], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000PerrinSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "佩蘭數列", + "syndicateKey": "Perrin Sequence", + "nodes": [ + "Ares (Mars)", + "Odin (Mercury)", + "Cassini (Saturn)", + "Cytherean (Venus)", + "Ker (Ceres)", + "Aten (Void)", + "Pacific (Earth)" + ], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000QuillsSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "夜羽", + "syndicateKey": "Quills", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegion2Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "使徒", + "syndicateKey": "The Emissary", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegion3Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "玻璃匠", + "syndicateKey": "Glassmaker", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission10Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission10Syndicate", + "syndicateKey": "RadioLegionIntermission10Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission11Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission11Syndicate", + "syndicateKey": "RadioLegionIntermission11Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission12Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission12Syndicate", + "syndicateKey": "RadioLegionIntermission12Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission2Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "间歇II", + "syndicateKey": "Intermission II", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission3Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "间歇III", + "syndicateKey": "Intermission III", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission4Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Nora 的精选", + "syndicateKey": "Nora's Choice", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission5Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Nora 的混选 Vol. 1", + "syndicateKey": "Nora's Mix Volume 1", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission6Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "Nora 的混选 Vol. 2", + "syndicateKey": "Nora's Mix Volume 2", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission7Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission7Syndicate", + "syndicateKey": "RadioLegionIntermission7Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission8Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission8Syndicate", + "syndicateKey": "RadioLegionIntermission8Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermission9Syndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "RadioLegionIntermission9Syndicate", + "syndicateKey": "RadioLegionIntermission9Syndicate", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionIntermissionSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "间歇", + "syndicateKey": "Intermission", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RadioLegionSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "土星六号之狼", + "syndicateKey": "The Wolf of Saturn Six", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000RedVeilSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "血色面紗", + "syndicateKey": "Red Veil", + "nodes": [ + "Augustus (Mars)", + "Thebe (Jupiter)", + "Phlegyas (Deimos)", + "V Prime (Venus)", + "Ukko (Void)", + "Pantheon (Mercury)", + "Horend (Deimos)" + ], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000SteelMeridianSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "鋼鐵防線", + "syndicateKey": "Steel Meridian", + "nodes": [ + "Ara (Mars)", + "Boethius (Mercury)", + "Ananke (Jupiter)", + "Venera (Venus)", + "Hepit (Void)", + "Saxis (Eris)", + "Calypso (Saturn)" + ], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000VentKidsSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "通風小子", + "syndicateKey": "Vent Kids", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + }, + { + "id": "1740416340000VoxSyndicate", + "activation": "2025-02-23T16:59:02.986Z", + "startString": "-1h 18m 48s", + "expiry": "2025-02-24T16:59:00.000Z", + "active": true, + "syndicate": "索里拉斯之聲", + "syndicateKey": "Vox Solaris", + "nodes": [], + "jobs": [], + "eta": "22h 41m 8s" + } +] +"# +} diff --git a/src/worldstate/fixtures/void_trader.rs b/src/worldstate/fixtures/void_trader.rs new file mode 100644 index 0000000..d8a0041 --- /dev/null +++ b/src/worldstate/fixtures/void_trader.rs @@ -0,0 +1,38 @@ +use crate::fixture; + +fixture! { + void_trader, +r#" +{ + "id": "5d1e07a0a38e4a4fdd7cefca", + "activation": "2025-03-07T14:00:00.000Z", + "startString": "11d 19h 41m 49s", + "expiry": "2025-03-09T14:00:00.000Z", + "active": false, + "character": "Baro Ki'Teer", + "location": "Strata Relay (Earth)", + "inventory": [], + "psId": "5d1e07a0a38e4a4fdd7cefca0", + "endString": "13d 19h 41m 49s", + "initialStart": "1970-01-01T00:00:00.000Z", + "schedule": [] +} +"# +--- +r#" +{ + "id": "5d1e07a0a38e4a4fdd7cefca", + "activation": "2025-03-07T14:00:00.000Z", + "startString": "11d 19h 40m 29s", + "expiry": "2025-03-09T14:00:00.000Z", + "active": false, + "character": "Baro Ki'Teer", + "location": "Strata 中继站 (地球)", + "inventory": [], + "psId": "5d1e07a0a38e4a4fdd7cefca0", + "endString": "13d 19h 40m 29s", + "initialStart": "1970-01-01T00:00:00.000Z", + "schedule": [] +} +"# +} diff --git a/src/worldstate/fixtures/weapon.rs b/src/worldstate/fixtures/weapon.rs new file mode 100644 index 0000000..4bdc387 --- /dev/null +++ b/src/worldstate/fixtures/weapon.rs @@ -0,0 +1,973 @@ +use crate::fixture; + +fixture! { + ranged_weapon, +r#" +{ + "accuracy": 23.529411, + "attacks": [ + { + "name": "Rocket Impact", + "speed": 10, + "crit_chance": 34, + "crit_mult": 3, + "status_chance": 18, + "shot_type": "Projectile", + "shot_speed": 70, + "flight": 70, + "damage": { + "impact": 44 + } + }, + { + "name": "Rocket Explosion", + "speed": 10, + "crit_chance": 34, + "crit_mult": 3, + "status_chance": 18, + "shot_type": "AoE", + "falloff": { + "start": 0, + "end": 5, + "reduction": 0.5 + }, + "damage": { + "slash": 10.6, + "puncture": 42.4 + } + } + ], + "buildPrice": 15000, + "buildQuantity": 1, + "buildTime": 43200, + "category": "Primary", + "components": [ + { + "uniqueName": "/Lotus/Types/Recipes/Weapons/WeaponParts/AcceltraPrimeBarrel", + "name": "Barrel", + "description": "A prime weapon-crafting component.", + "primeSellingPrice": 100, + "itemCount": 1, + "imageName": "prime-barrel.png", + "tradable": true, + "drops": [ + { + "chance": 0.02, + "location": "Meso A5 Relic", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeCBronze" + }, + { + "chance": 0.02, + "location": "Neo A12 Relic", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeCBronze" + }, + { + "chance": 0.02, + "location": "Neo A13 Relic", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeBBronze" + }, + { + "chance": 0.04, + "location": "Meso A5 Relic (Exceptional)", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeCBronze" + }, + { + "chance": 0.04, + "location": "Neo A12 Relic (Exceptional)", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeCBronze" + }, + { + "chance": 0.04, + "location": "Neo A13 Relic (Exceptional)", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeBBronze" + }, + { + "chance": 0.06, + "location": "Meso A5 Relic (Flawless)", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeCBronze" + }, + { + "chance": 0.06, + "location": "Neo A12 Relic (Flawless)", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeCBronze" + }, + { + "chance": 0.06, + "location": "Neo A13 Relic (Flawless)", + "rarity": "Rare", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeBBronze" + }, + { + "chance": 0.1, + "location": "Meso A5 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionGaussPrimeCBronze" + }, + { + "chance": 0.1, + "location": "Neo A12 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeCBronze" + }, + { + "chance": 0.1, + "location": "Neo A13 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Barrel", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeBBronze" + } + ], + "masterable": false, + "ducats": 100 + }, + { + "uniqueName": "/Lotus/Types/Recipes/Weapons/AcceltraPrimeBlueprint", + "name": "Blueprint", + "description": "Engage your enemies with deadly speed. This weapon reloads even faster when its wielder sprints, faster still with Gauss.", + "itemCount": 1, + "primeSellingPrice": 15, + "imageName": "blueprint.png", + "tradable": true, + "masterable": false, + "ducats": 15, + "drops": [ + { + "chance": 0.1667, + "location": "Axi M6 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeDBronze" + }, + { + "chance": 0.1667, + "location": "Lith C11 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.1667, + "location": "Meso N17 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.1667, + "location": "Meso V10 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.1667, + "location": "Meso W5 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeDBronze" + }, + { + "chance": 0.1667, + "location": "Neo Z11 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeDBronze" + }, + { + "chance": 0.2, + "location": "Axi M6 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeDBronze" + }, + { + "chance": 0.2, + "location": "Lith C11 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.2, + "location": "Meso N17 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.2, + "location": "Meso V10 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.2, + "location": "Meso W5 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeDBronze" + }, + { + "chance": 0.2, + "location": "Neo Z11 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeDBronze" + }, + { + "chance": 0.2333, + "location": "Axi M6 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeDBronze" + }, + { + "chance": 0.2333, + "location": "Lith C11 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.2333, + "location": "Meso N17 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.2333, + "location": "Meso V10 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.2333, + "location": "Meso W5 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeDBronze" + }, + { + "chance": 0.2333, + "location": "Neo Z11 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeDBronze" + }, + { + "chance": 0.2533, + "location": "Axi M6 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeDBronze" + }, + { + "chance": 0.2533, + "location": "Lith C11 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T1VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.2533, + "location": "Meso N17 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.2533, + "location": "Meso V10 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.2533, + "location": "Meso W5 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionProteaPrimeDBronze" + }, + { + "chance": 0.2533, + "location": "Neo Z11 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Blueprint", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionSevagothPrimeDBronze" + } + ] + }, + { + "uniqueName": "/Lotus/Types/Items/MiscItems/OrokinCell", + "name": "Orokin Cell", + "description": "Ancient energy cell from the Orokin era.Location: Ceres, Saturn, and Deimos", + "itemCount": 10, + "imageName": "orokin-cell-0d237af036.png", + "tradable": false, + "drops": [], + "masterable": false, + "type": "Resource" + }, + { + "uniqueName": "/Lotus/Types/Recipes/Weapons/WeaponParts/AcceltraPrimeReceiver", + "name": "Receiver", + "description": "A prime weapon-crafting component.", + "primeSellingPrice": 45, + "itemCount": 1, + "imageName": "prime-receiver.png", + "tradable": true, + "drops": [ + { + "chance": 0.11, + "location": "Axi O6 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.11, + "location": "Axi Z2 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeCBronze" + }, + { + "chance": 0.11, + "location": "Neo F3 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.11, + "location": "Neo L4 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeABronze" + }, + { + "chance": 0.11, + "location": "Neo O2 Relic", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeABronze" + }, + { + "chance": 0.13, + "location": "Axi O6 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.13, + "location": "Axi Z2 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeCBronze" + }, + { + "chance": 0.13, + "location": "Neo F3 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.13, + "location": "Neo L4 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeABronze" + }, + { + "chance": 0.13, + "location": "Neo O2 Relic (Exceptional)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeABronze" + }, + { + "chance": 0.17, + "location": "Axi O6 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.17, + "location": "Axi Z2 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeCBronze" + }, + { + "chance": 0.17, + "location": "Neo F3 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.17, + "location": "Neo L4 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeABronze" + }, + { + "chance": 0.17, + "location": "Neo O2 Relic (Flawless)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeABronze" + }, + { + "chance": 0.2, + "location": "Axi O6 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionSevagothPrimeABronze" + }, + { + "chance": 0.2, + "location": "Axi Z2 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionLavosPrimeCBronze" + }, + { + "chance": 0.2, + "location": "Neo F3 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionGaussPrimeABronze" + }, + { + "chance": 0.2, + "location": "Neo L4 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionXakuPrimeABronze" + }, + { + "chance": 0.2, + "location": "Neo O2 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Receiver", + "uniqueName": "/Lotus/Types/Game/Projections/T3VoidProjectionProteaPrimeABronze" + } + ], + "masterable": false, + "ducats": 45 + }, + { + "uniqueName": "/Lotus/Types/Recipes/Weapons/WeaponParts/AcceltraPrimeStock", + "name": "Stock", + "description": "A prime weapon-crafting component.", + "primeSellingPrice": 100, + "itemCount": 1, + "imageName": "prime-stock.png", + "tradable": true, + "drops": [ + { + "chance": 0.02, + "location": "Axi A18 Relic", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeDBronze" + }, + { + "chance": 0.02, + "location": "Axi A19 Relic", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.02, + "location": "Meso A8 Relic", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionLavosPrimeABronze" + }, + { + "chance": 0.04, + "location": "Axi A18 Relic (Exceptional)", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeDBronze" + }, + { + "chance": 0.04, + "location": "Axi A19 Relic (Exceptional)", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.04, + "location": "Meso A8 Relic (Exceptional)", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionLavosPrimeABronze" + }, + { + "chance": 0.06, + "location": "Axi A18 Relic (Flawless)", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeDBronze" + }, + { + "chance": 0.06, + "location": "Axi A19 Relic (Flawless)", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.06, + "location": "Meso A8 Relic (Flawless)", + "rarity": "Rare", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionLavosPrimeABronze" + }, + { + "chance": 0.1, + "location": "Axi A18 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionGaussPrimeDBronze" + }, + { + "chance": 0.1, + "location": "Axi A19 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T4VoidProjectionXakuPrimeDBronze" + }, + { + "chance": 0.1, + "location": "Meso A8 Relic (Radiant)", + "rarity": "Uncommon", + "type": "Acceltra Prime Stock", + "uniqueName": "/Lotus/Types/Game/Projections/T2VoidProjectionLavosPrimeABronze" + } + ], + "masterable": false, + "ducats": 100 + } + ], + "consumeOnBuild": true, + "criticalChance": 0.34, + "criticalMultiplier": 3, + "damage": { + "total": 97, + "impact": 44, + "puncture": 10.599999, + "slash": 42.400002, + "heat": 0, + "cold": 0, + "electricity": 0, + "toxin": 0, + "blast": 0, + "radiation": 0, + "gas": 0, + "magnetic": 0, + "viral": 0, + "corrosive": 0, + "void": 0, + "tau": 0, + "cinematic": 0, + "shieldDrain": 0, + "healthDrain": 0, + "energyDrain": 0, + "true": 0 + }, + "damagePerShot": [44, 42.400002, 10.599999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "description": "Engage your enemies with deadly speed. This weapon reloads even faster when its wielder sprints, faster still with Gauss.", + "disposition": 1, + "fireRate": 10.000001, + "imageName": "acceltra-prime-5628f3e466.png", + "introduced": { + "name": "Hotfix 35.0.9", + "url": "https://warframe.fandom.com/wiki/Update_35%23Hotfix_35.0.9", + "aliases": [ + "35.0.9" + ], + "parent": "35.0", + "date": "2024-01-17" + }, + "isPrime": true, + "magazineSize": 48, + "masterable": true, + "masteryReq": 14, + "multishot": 1, + "name": "Acceltra Prime", + "noise": "Alarming", + "omegaAttenuation": 0.55000001, + "polarities": [ + "naramon", + "madurai" + ], + "procChance": 0.18000001, + "productCategory": "LongGuns", + "releaseDate": "2024-01-17", + "reloadTime": 1.6, + "skipBuildTimePrice": 50, + "slot": 1, + "tags": [ + "Tenno", + "Prime" + ], + "totalDamage": 97, + "tradable": false, + "trigger": "Auto", + "type": "Rifle", + "uniqueName": "/Lotus/Weapons/Tenno/LongGuns/PrimeAcceltra/PrimeAcceltraWeapon", + "vaulted": false, + "wikiaThumbnail": "https://static.wikia.nocookie.net/warframe/images/e/ec/AcceltraPrime.png/revision/latest?cb=20240117172955", + "wikiaUrl": "https://warframe.fandom.com/wiki/Acceltra_Prime" +} +"# +} + +fixture! { + melee_weapon, +r#" +{ + "attacks": [ + { + "name": "Normal Attack", + "speed": 0.667, + "crit_chance": 15, + "crit_mult": 2.1, + "status_chance": 30, + "damage": { + "impact": 57, + "slash": 61, + "puncture": 55, + "viral": 89 + }, + "slide": "524", + "slam": { + "damage": "524.00", + "radial": { + "damage": "0.00", + "radius": 5 + } + } + }, + { + "name": "Throw", + "speed": 0.667, + "crit_chance": 17, + "crit_mult": 2.3, + "status_chance": 33, + "shot_type": "Thrown", + "shot_speed": 30, + "flight": 30, + "damage": { + "impact": 49, + "slash": 78, + "puncture": 43, + "viral": 118 + } + }, + { + "name": "Throw Bounce Explosion", + "speed": 0.667, + "crit_chance": 17, + "crit_mult": 2.3, + "status_chance": 33, + "shot_type": "AoE", + "falloff": { + "start": 0, + "end": 4.9, + "reduction": 0.5 + }, + "damage": { + "viral": 393 + } + }, + { + "name": "Throw Recall Explosion", + "speed": 0.667, + "crit_chance": 17, + "crit_mult": 2.3, + "status_chance": 33, + "shot_type": "AoE", + "falloff": { + "start": 0, + "end": 4.9, + "reduction": 0 + }, + "damage": { + "viral": 786 + } + }, + { + "name": "Charged Throw", + "speed": 0.833, + "crit_chance": 21, + "crit_mult": 2.5, + "status_chance": 35, + "charge_time": 1.2, + "shot_type": "Thrown", + "shot_speed": 30, + "flight": 30, + "damage": { + "impact": 127, + "slash": 135, + "puncture": 121, + "viral": 193 + } + }, + { + "name": "Charged Throw Bounce Explosion", + "speed": 0.833, + "crit_chance": 21, + "crit_mult": 2.5, + "status_chance": 35, + "charge_time": 1.2, + "shot_type": "AoE", + "falloff": { + "start": 0, + "end": 4.9, + "reduction": 0.5 + }, + "damage": { + "viral": 786 + } + }, + { + "name": "Charged Throw Recall Explosion", + "speed": 0.833, + "crit_chance": 21, + "crit_mult": 2.5, + "status_chance": 35, + "charge_time": 1.2, + "shot_type": "AoE", + "falloff": { + "start": 0, + "end": 4.9, + "reduction": 0 + }, + "damage": { + "viral": 1572 + } + } + ], + "blockingAngle": 55, + "buildPrice": 30000, + "buildQuantity": 1, + "buildTime": 86400, + "category": "Melee", + "comboDuration": 5, + "components": [ + { + "uniqueName": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfBoomerangBlade", + "name": "Blade", + "description": "A weapon-crafting component.", + "itemCount": 2, + "imageName": "blade.png", + "tradable": false, + "drops": [ + { + "chance": 0.3333, + "location": "Zealoid Prelate", + "rarity": "Common", + "type": "Pathocyst Blade" + } + ], + "masterable": false + }, + { + "uniqueName": "/Lotus/Types/Recipes/Weapons/InfBoomerangBlueprint", + "name": "Blueprint", + "description": "Each strike of this infested glaive infects its target with viral pathogens. Occasionally, it discharges the spores of rabid, enemy-seeking maggots, either in-flight or on contact with the enemy.", + "itemCount": 1, + "imageName": "blueprint.png", + "tradable": false, + "masterable": false, + "drops": [ + { + "chance": 0.3333, + "location": "Zealoid Prelate", + "rarity": "Common", + "type": "Pathocyst Blueprint" + } + ] + }, + { + "uniqueName": "/Lotus/Types/Items/MiscItems/Neurode", + "name": "Neurodes", + "description": "Biotech sensor organ harvested from Infested entities.Location: Earth, Lua, Eris, and Deimos", + "itemCount": 5, + "imageName": "neurodes-c027fd4a28.png", + "tradable": false, + "drops": [], + "masterable": false + }, + { + "uniqueName": "/Lotus/Types/Recipes/Weapons/WeaponParts/InfBoomerangDisc", + "name": "Subcortex", + "description": "A weapon-crafting component.", + "itemCount": 1, + "imageName": "subcortex.png", + "tradable": false, + "drops": [ + { + "chance": 0.3333, + "location": "Zealoid Prelate", + "rarity": "Common", + "type": "Pathocyst Subcortex" + } + ], + "masterable": false + } + ], + "consumeOnBuild": true, + "criticalChance": 0.15000001, + "criticalMultiplier": 2.0999999, + "damage": { + "total": 262, + "impact": 57, + "puncture": 61, + "slash": 55, + "heat": 0, + "cold": 0, + "electricity": 0, + "toxin": 0, + "blast": 0, + "radiation": 0, + "gas": 0, + "magnetic": 0, + "viral": 89, + "corrosive": 0, + "void": 0, + "tau": 0, + "cinematic": 0, + "shieldDrain": 0, + "healthDrain": 0, + "energyDrain": 0, + "true": 0 + }, + "damagePerShot": [57, 55, 61, 0, 0, 0, 0, 0, 0, 0, 0, 89, 0, 0, 0, 0, 0, 0, 0, 0], + "description": "Each strike of this infested glaive infects its target with viral pathogens. Occasionally, it discharges the spores of rabid, enemy-seeking maggots, either in-flight or on contact with the enemy.", + "disposition": 4, + "fireRate": 0.66666669, + "followThrough": 0.69999999, + "heavyAttackDamage": 262, + "heavySlamAttack": 1048, + "heavySlamRadialDamage": 786, + "heavySlamRadius": 6, + "imageName": "pathocyst-7c3a6d4c28.png", + "introduced": { + "name": "Hotfix 25.7.7", + "url": "https://warframe.fandom.com/wiki/Update_25%23Hotfix_25.7.7", + "aliases": [ + "25.7.7" + ], + "parent": "25.7", + "date": "2019-09-26" + }, + "isPrime": false, + "masterable": true, + "masteryReq": 9, + "name": "Pathocyst", + "omegaAttenuation": 1.3, + "patchlogs": [ + { + "name": "Update 30.5: Sisters of Parvos", + "date": "2021-07-06T15:02:10Z", + "url": "https://forums.warframe.com/topic/1269749-update-305-sisters-of-parvos/", + "additions": "", + "changes": "Pathocyst", + "fixes": "" + }, + { + "name": "Orphix Venom: Hotfix 29.6.5", + "date": "2021-01-08T21:15:03Z", + "url": "https://forums.warframe.com/topic/1244435-orphix-venom-hotfix-2965/", + "additions": "", + "changes": "", + "fixes": "Fixed Pathocyst Infested pod sound looping when pods are created but do not spawn a maggot." + }, + { + "name": "Heart of Deimos: TennoGen: 29.3.2", + "date": "2020-11-05T21:04:26Z", + "url": "https://forums.warframe.com/topic/1234372-heart-of-deimos-tennogen-2932/", + "additions": "", + "changes": "", + "fixes": "Fixed a heavy spot-load occurring when equipping the Pathocyst in the Arsenal." + }, + { + "name": "Warframe Revised: Hotfix 27.2.2", + "date": "2020-03-06T20:01:27Z", + "url": "https://forums.warframe.com/topic/1173118-warframe-revised-hotfix-2722/", + "additions": "", + "changes": "Pathocyst: 50%", + "fixes": "" + }, + { + "name": "Atlas Prime: Update 25.8.0 + 25.8.0.1", + "date": "2019-10-01T18:00:28Z", + "url": "https://forums.warframe.com/topic/1131643-atlas-prime-update-2580-25801/", + "additions": "Added new “fast whooshing” sounds to the Pathocyst.", + "changes": "", + "fixes": "" + } + ], + "polarities": [ + "madurai", + "vazarin" + ], + "procChance": 0.30000001, + "productCategory": "Melee", + "range": 1.3, + "releaseDate": "2019-09-26", + "skipBuildTimePrice": 25, + "slamAttack": 786, + "slamRadialDamage": 524, + "slamRadius": 5, + "slideAttack": 524, + "slot": 5, + "stancePolarity": "naramon", + "tags": [ + "Infested" + ], + "totalDamage": 262, + "tradable": false, + "type": "Melee", + "uniqueName": "/Lotus/Weapons/Infested/Melee/InfBoomerang/InfBoomerangWeapon", + "wikiaThumbnail": "https://static.wikia.nocookie.net/warframe/images/e/ec/Pathocyst.png/revision/latest?cb=20220612022533", + "wikiaUrl": "https://warframe.fandom.com/wiki/Pathocyst", + "windUp": 1.2 +} +"# +} diff --git a/src/worldstate/language.rs b/src/worldstate/language.rs index 3ab604b..7ba4066 100644 --- a/src/worldstate/language.rs +++ b/src/worldstate/language.rs @@ -4,7 +4,7 @@ use core::str; use std::fmt::Display; /// An enumeration representing various supported languages. -#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] pub enum Language { /// German (`DE`) DE, @@ -32,19 +32,18 @@ pub enum Language { impl From for String { fn from(value: Language) -> Self { - use Language::*; match value { - DE => "de", - ES => "es", - FR => "fr", - IT => "it", - KO => "ko", - PL => "pl", - PT => "pt", - RU => "ru", - ZH => "zh", - EN => "en", - UK => "uk", + Language::DE => "de", + Language::ES => "es", + Language::FR => "fr", + Language::IT => "it", + Language::KO => "ko", + Language::PL => "pl", + Language::PT => "pt", + Language::RU => "ru", + Language::ZH => "zh", + Language::EN => "en", + Language::UK => "uk", } .into() } @@ -52,19 +51,18 @@ impl From for String { impl From for &'static str { fn from(value: Language) -> Self { - use Language::*; match value { - DE => "de", - ES => "es", - FR => "fr", - IT => "it", - KO => "ko", - PL => "pl", - PT => "pt", - RU => "ru", - ZH => "zh", - EN => "en", - UK => "uk", + Language::DE => "de", + Language::ES => "es", + Language::FR => "fr", + Language::IT => "it", + Language::KO => "ko", + Language::PL => "pl", + Language::PT => "pt", + Language::RU => "ru", + Language::ZH => "zh", + Language::EN => "en", + Language::UK => "uk", } } } diff --git a/src/worldstate/listener.rs b/src/worldstate/listener.rs deleted file mode 100644 index 56ad792..0000000 --- a/src/worldstate/listener.rs +++ /dev/null @@ -1,274 +0,0 @@ -//! # Allows registering listeners. -//! -//! Listeners are functions that will be called when a specific endpoint receives an update. -//! -//! There are 2 types. The 'normal' ones for models like [Cetus](crate::worldstate::models::Cetus), -//! and 'nested' ones for models like [Fissure](crate::worldstate::models::Fissure). -//! -//! ### Demo for the 'normal' listeners -//! ```rust,no_run -//! use std::error::Error; -//! -//! use warframe::worldstate::prelude::*; -//! -//! async fn on_cetus_update(before: &Cetus, after: &Cetus) { -//! println!("BEFORE : {before:?}"); -//! println!("AFTER : {after:?}"); -//! } -//! -//! #[tokio::main] -//! async fn main() -> Result<(), Box> { -//! env_logger::builder() -//! .filter_level(log::LevelFilter::Debug) -//! .init(); -//! -//! let client = Client::new(); -//! -//! client.call_on_update(on_cetus_update); // don't forget to start it as a bg task (or .await it) -//! Ok(()) -//! } -//! ``` -//! -//! ### Demo for the 'nested' listeners -//! ```rust -//! use std::error::Error; -//! -//! use warframe::worldstate::{listener::Change, prelude::*}; -//! -//! /// This function will be called once a fissure updates. -//! /// This will send a request to the corresponding endpoint once every 30s -//! /// and compare the results for changes. -//! async fn on_fissure_update(fissure: &Fissure, change: Change) { -//! match change { -//! Change::Added => println!("Fissure ADDED : {fissure:?}"), -//! Change::Removed => println!("Fissure REMOVED : {fissure:?}"), -//! } -//! } -//! -//! #[tokio::main] -//! async fn main() -> Result<(), Box> { -//! // Logging setup -//! env_logger::builder() -//! .filter_level(log::LevelFilter::Debug) -//! .init(); -//! -//! // initialize a client (included in the prelude) -//! let client = Client::new(); -//! -//! // Pass the function to the handler -//! // (will return a Future) -//! client.call_on_nested_update(on_fissure_update); // don't forget to start it as a bg task (or .await it) -//! Ok(()) -//! } -//! ``` - -use std::future::Future; - -/// Represents what has happened to the nested Item. -#[derive(PartialEq, PartialOrd, Debug, Clone)] -pub enum Change { - /// The Item has been added to the collection - Added, - /// The Item has been removed the collection - Removed, -} - -// ---------- -/// A listener callback that can listen to any model with -/// [`Queryable::Return`](crate::worldstate::models::base::Queryable::Return) = Self -pub trait ListenerCallback<'a, T> -where - T: Sized + 'a, -{ - /// Type of the future - type Fut: Future + Send; - /// The method to call the handler - fn call(&self, before: &'a T, after: &'a T) -> Self::Fut; -} - -impl<'a, T, Fut, Func> ListenerCallback<'a, T> for Func -where - T: Sized + 'a, - Fut: Future + Send, - Func: Fn(&'a T, &'a T) -> Fut, -{ - type Fut = Fut; - fn call(&self, before: &'a T, after: &'a T) -> Self::Fut { - self(before, after) - } -} - -/// A listener callback that can listen to any model with -/// [`Queryable::Return`](crate::worldstate::models::base::Queryable::Return) = Vec -pub trait NestedListenerCallback<'a, T> -where - T: Sized, -{ - /// Type of the future - type Fut: Future + Send; - /// The method to call the handler - fn call(&self, item: &'a T, change: Change) -> Self::Fut; -} - -impl<'a, T, Fut, Func> NestedListenerCallback<'a, T> for Func -where - T: Sized + 'a, - Fut: Future + Send, - Func: Fn(&'a T, Change) -> Fut, -{ - type Fut = Fut; - fn call(&self, item: &'a T, change: Change) -> Self::Fut { - self(item, change) - } -} - -// --------- STATEFUL CALLBACKS -/// A listener callback that can listen to any model with -/// [`Queryable::Return`](crate::worldstate::models::base::Queryable::Return) = Self -/// -/// and a state. -pub trait StatefulListenerCallback<'a, T, S> -where - T: Sized, - S: Sized + Send + Sync, -{ - /// Type of the future - type Fut: Future + Send; - /// The method to call the handler - fn call_with_state(&self, state: S, before: &'a T, after: &'a T) -> Self::Fut; -} - -impl<'a, T, Fut, Func, S> StatefulListenerCallback<'a, T, S> for Func -where - T: Sized + 'a, - S: Sized + Send + Sync, - Fut: Future + Send, - Func: Fn(S, &'a T, &'a T) -> Fut, -{ - type Fut = Fut; - fn call_with_state(&self, state: S, before: &'a T, after: &'a T) -> Self::Fut { - self(state, before, after) - } -} - -/// A listener callback that can listen to any model with -/// [`Queryable::Return`](crate::worldstate::models::base::Queryable::Return) = Vec -/// -/// and a state. -pub trait StatefulNestedListenerCallback<'a, T, S> -where - T: Sized, - S: Sized + Send + Sync, -{ - /// Type of the future - type Fut: Future + Send; - /// The method to call the handler - fn call_with_state(&self, state: S, item: &'a T, change: Change) -> Self::Fut; -} - -impl<'a, T, Fut, Func, S> StatefulNestedListenerCallback<'a, T, S> for Func -where - T: Sized + 'a, - S: Sized + Send + Sync, - Fut: Future + Send, - Func: Fn(S, &'a T, Change) -> Fut, -{ - type Fut = Fut; - fn call_with_state(&self, state: S, item: &'a T, change: Change) -> Self::Fut { - self(state, item, change) - } -} - -/// A type that implements logic to find which items have been added or removed in 2 collections -pub struct CrossDiff<'a, T> -where - T: PartialEq, -{ - current: &'a [T], - incoming: &'a [T], -} - -impl<'a, T> CrossDiff<'a, T> -where - T: PartialEq, -{ - /// Creates a [CrossDiff] - pub fn new(current: &'a [T], incoming: &'a [T]) -> Self { - Self { current, incoming } - } - - /// Gets all the removed items - pub fn removed(&self) -> Vec<(&'a T, Change)> { - self.current - .iter() - .filter(|&item| !self.incoming.contains(item)) - .map(|item| (item, Change::Removed)) - .collect() - } - - /// Gets all the added items - pub fn added(&self) -> Vec<(&'a T, Change)> { - self.incoming - .iter() - .filter(|&item| !self.current.contains(item)) - .map(|item| (item, Change::Added)) - .collect() - } -} - -#[cfg(test)] -mod test { - use std::{ - sync::Arc, - vec, - }; - - use super::{ - Change, - CrossDiff, - }; - use crate::worldstate::prelude::{ - Cetus, - Fissure, - }; - - async fn on_cetus_update(_before: &Cetus, _after: &Cetus) {} - async fn on_cetus_update_stateful(_state: Arc, _before: &Cetus, _after: &Cetus) {} - async fn on_fissure_update_nested(_item: &Fissure, _change: Change) {} - async fn on_fissure_update_stateful_nested(_state: Arc, _item: &Fissure, _change: Change) { - } - - #[tokio::test] - async fn test() { - use crate::worldstate::prelude::*; - let client = Arc::new(Client::new()); - - let cloned = client.clone(); - tokio::task::spawn(async move { cloned.call_on_update(on_cetus_update).await }); - let cloned = client.clone(); - tokio::task::spawn(async move { - cloned - .call_on_update_with_state(on_cetus_update_stateful, Arc::new(4)) - .await - }); - let cloned = client.clone(); - tokio::task::spawn( - async move { cloned.call_on_nested_update(on_fissure_update_nested).await }, - ); - let cloned = client.clone(); - tokio::task::spawn(async move { - cloned - .call_on_nested_update_with_state(on_fissure_update_stateful_nested, Arc::new(4)) - .await - }); - } - - #[test] - fn test_crossdiff() { - let a = vec![1, 2, 3]; - let b = vec![1, 3, 4]; - let cf = CrossDiff::new(&a, &b); - assert_eq!(cf.added(), vec![(&4, Change::Added)]); - assert_eq!(cf.removed(), vec![(&2, Change::Removed)]); - } -} diff --git a/src/worldstate/mod.rs b/src/worldstate/mod.rs index e425224..16aa323 100644 --- a/src/worldstate/mod.rs +++ b/src/worldstate/mod.rs @@ -1,17 +1,24 @@ //! # The worldstate module //! -//! Get information about various different parts of the game. -//! Check [] +//! Get information about various parts of the game. //! //! ## Quickstart //! ```rust,no_run -//! use warframe::worldstate::prelude as wf; +//! use warframe::worldstate::{ +//! Client, +//! Error, +//! queryable::{ +//! Cetus, +//! Fissure, +//! }, +//! }; +//! //! #[tokio::main] -//! async fn main() -> Result<(), wf::ApiError> { -//! let client = wf::Client::new(); +//! async fn main() -> Result<(), Error> { +//! let client = Client::new(); //! -//! let cetus: wf::Cetus = client.fetch::().await?; -//! let fissures: Vec = client.fetch::().await?; +//! let cetus: Cetus = client.fetch::().await?; +//! let fissures: Vec = client.fetch::().await?; //! //! Ok(()) //! } @@ -19,24 +26,88 @@ pub mod client; pub mod error; -pub mod models; +mod models; +pub mod utils; -#[cfg(feature = "multilangual")] pub mod language; -#[cfg(feature = "worldstate_listeners")] -pub mod listener; +#[cfg(test)] +pub(crate) mod fixtures; -/// The prelude which contains most things you need. -pub mod prelude { - #[cfg(feature = "multilangual")] - pub use crate::worldstate::language::Language; - pub use crate::worldstate::{ - client::Client, - error::{ - ApiError, - ApiErrorResponse, - }, - models::*, // most of `base.rs` is included here +/// A module that re-exports every type that is queryable +pub mod queryable { + pub use super::models::{ + alert::Alert, + arbitration::Arbitration, + archon_hunt::ArchonHunt, + cambion_drift::CambionDrift, + cetus::Cetus, + construction_progress::ConstructionProgress, + daily_deal::DailyDeal, + deep_archimedea::DeepArchimedea, + event::Event, + fissure::Fissure, + flash_sale::FlashSale, + global_upgrades::GlobalUpgrade, + invasion::Invasion, + news::News, + nightwave::Nightwave, + orb_vallis::OrbVallis, + sortie::Sortie, + steel_path::SteelPath, + syndicate::Syndicate, + void_trader::VoidTrader, }; } + +pub use client::Client; +pub use error::{ + ApiErrorResponse, + Error, +}; +pub use language::Language; +pub use models::{ + archon_hunt::ArchonHuntMission, + base::{ + Endpoint, + Opposite, + Queryable, + TimedEvent, + }, + cambion_drift::CambionDriftState, + cetus::CetusState, + damage_type::{ + CombinedElementalDamage, + DamageType, + ElementalDamage, + PhysicalDamage, + }, + deep_archimedea::{ + DeepArchimedeaMission, + DeepArchimedeaModifier, + }, + faction::Faction, + fissure::Tier, + invasion::InvasionMember, + items, + mission::Mission, + mission_type::MissionType, + nightwave::{ + NightwaveChallenge, + NightwaveChallengeType, + }, + orb_vallis::OrbVallisState, + reward::Reward, + reward_type::RewardType, + sortie::SortieMission, + steel_path::SteelPathShopItem, + syndicate_mission::{ + SyndicateJob, + SyndicateMission, + }, + void_trader::VoidTraderInventoryItem, +}; +pub use utils::Change; +/// This is a re-export of the `model` macro in case you want to use it in your own code. +/// To implement a, for example, missing model. +pub use warframe_macros::model; diff --git a/src/worldstate/models/alert.rs b/src/worldstate/models/alert.rs index 980c1f3..e7f2bcb 100644 --- a/src/worldstate/models/alert.rs +++ b/src/worldstate/models/alert.rs @@ -1,54 +1,46 @@ +use warframe_macros::model; + use super::{ - macros::model_builder, - Mission, - RewardType, + mission::Mission, + reward_type::RewardType, }; -model_builder! { - :"An alert in Warframe" - Alert: "/alerts", - rt = array, - timed = false; - - :"ID of this event" +/// An alert in Warframe +#[model(endpoint = "/alerts", return_style = Array)] +pub struct Alert { + /// ID of this event pub id: String, - :"The mission associated with the alert" + /// The mission associated with the alert pub mission: Mission, - :"The reward type of the alert" - pub reward_types: Vec + /// The reward type of the alert + pub reward_types: Vec, } #[cfg(test)] -mod test { +mod test_alert { + use rstest::rstest; + use serde_json::from_str; + use super::Alert; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::alert::{ + alert, + alert_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_alert() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_alerts) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(alert_en: &str) { + from_str::(alert_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_alert_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_alerts) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(alert: &str) { + from_str::(alert).unwrap(); } } diff --git a/src/worldstate/models/arbitration.rs b/src/worldstate/models/arbitration.rs index d849b74..a0913fb 100644 --- a/src/worldstate/models/arbitration.rs +++ b/src/worldstate/models/arbitration.rs @@ -6,11 +6,12 @@ use serde::{ Deserialize, Deserializer, }; +use warframe_macros::model; use super::{ base::TimedEvent, - Faction, - MissionType, + faction::Faction, + mission_type::MissionType, }; fn deserialize_expiry<'de, D>(deserializer: D) -> Result, D::Error> @@ -18,170 +19,89 @@ where D: Deserializer<'de>, { let s: &str = Deserialize::deserialize(deserializer)?; - match DateTime::parse_from_rfc3339(s) { - Ok(dt) => Ok(dt.with_timezone(&Utc)), - Err(err) => { - if let chrono::format::ParseErrorKind::OutOfRange - | chrono::format::ParseErrorKind::Invalid = err.kind() - { + DateTime::parse_from_rfc3339(s) + .map(|dt| dt.with_timezone(&Utc)) + .or_else(|err| { + if matches!( + err.kind(), + chrono::format::ParseErrorKind::OutOfRange + | chrono::format::ParseErrorKind::Invalid + ) { Ok(DateTime::::MAX_UTC) } else { Err(serde::de::Error::custom(err.to_string())) } - } - } + }) } -// model_builder! { -// :"Information about an arbitration" -// Arbitration: "/arbitration", -// rt = obj, -// timed = true; - -// :"The i18n of the node" -// pub node: String, - -// :"The name of the node" -// pub node_key: String, - -// :"The i18n faction you are up against" -// pub faction: Faction = "enemy", - -// :"The faction you are up against" -// pub faction_key: Option = "enemyKey", - -// :"The i18n type of the mission" -// pub mission_type: String = "type", - -// :"The type of the mission" -// pub mission_type_key: MissionType = "typeKey", - -// :"Whether this mission requires archwing" -// pub archwing: bool, - -// :"Whether this mission requires sharkwing" -// pub sharkwing: bool, -// } - -// FROM THE MACRO -// Need custom deserializer for expiry -#[derive(Debug, serde::Deserialize, PartialEq, PartialOrd, Clone)] -#[serde(rename_all = "camelCase")] -#[doc = "Information about an arbitration"] +/// Information about an arbitration +#[model( + endpoint = "/arbitration", + return_style = Object, + timed, + expiry(serde(deserialize_with = "deserialize_expiry")), +)] pub struct Arbitration { - #[doc = "The i18n of the node"] + /// The i18n of the node pub node: String, - #[doc = "The name of the node"] + + /// The name of the node pub node_key: String, + + /// The i18n faction you are up against #[serde(rename(deserialize = "enemy"))] - #[doc = "The i18n faction you are up against"] pub faction: Faction, + + /// The faction you are up against #[serde(rename(deserialize = "enemyKey"))] - #[doc = "The faction you are up against"] pub faction_key: Option, + + /// The i18n type of the mission #[serde(rename(deserialize = "type"))] - #[doc = "The i18n type of the mission"] pub mission_type: String, + + /// The type of the mission #[serde(rename(deserialize = "typeKey"))] - #[doc = "The type of the mission"] pub mission_type_key: MissionType, - #[doc = "Whether this mission requires archwing"] + + /// Whether this mission requires archwing pub archwing: bool, - #[doc = "Whether this mission requires sharkwing"] - pub sharkwing: bool, - activation: chrono::DateTime, - #[serde(deserialize_with = "deserialize_expiry")] - expiry: chrono::DateTime, + /// Whether this mission requires sharkwing + pub sharkwing: bool, } impl Arbitration { /// Whether the arbitration is still valid. + #[must_use] pub fn is_valid(&self) -> bool { self.expiry() != DateTime::::MAX_UTC } } -impl crate::ws::TimedEvent for Arbitration { - #[doc = "Returns the time when this event began"] - fn activation(&self) -> chrono::DateTime { - self.activation - } - #[doc = "Returns the time when this event ends"] - fn expiry(&self) -> chrono::DateTime { - self.expiry - } -} -impl crate::ws::Endpoint for Arbitration { - fn endpoint_en() -> &'static str { - "https://api.warframestat.us/pc/arbitration/?language=en" - } - #[cfg(feature = "multilangual")] - fn endpoint(language: crate::ws::Language) -> String { - format!( - "https://api.warframestat.us/pc/arbitration/?language={}", - >::into(language), - ) - } -} -impl crate::ws::Queryable for Arbitration { - type Return = Arbitration; -} - -impl crate::ws::TypeDocumentation for Arbitration { - fn docs() -> &'static str { - "Information about an arbitration" - } -} - #[cfg(test)] -mod test { +mod test_arbitration { + use rstest::rstest; + use serde_json::from_str; + use super::Arbitration; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::arbitration::{ + arbitration, + arbitration_en, + }, }; - #[tokio::test] - async fn test_arbitration() -> Result<(), ApiError> { - let client = Client::new(); - - match client.fetch::().await { - Ok(_arbitration) => Ok(()), - Err(why) => { - if let ApiError::ApiError(error) = why { - if error.code == 404 { - Ok(()) - } else { - Err(ApiError::ApiError(error)) - } - } else { - Err(why) - } - } - } + type R = ::Return; + + #[rstest] + fn test(arbitration_en: &str) { + from_str::(arbitration_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_arbitration_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_arbitration) => Ok(()), - Err(why) => { - if let ApiError::ApiError(error) = why { - if error.code == 404 { - Ok(()) - } else { - Err(ApiError::ApiError(error)) - } - } else { - Err(why) - } - } - } + #[rstest] + fn test_ml(arbitration: &str) { + from_str::(arbitration).unwrap(); } } diff --git a/src/worldstate/models/archon_hunt.rs b/src/worldstate/models/archon_hunt.rs index b21a4b0..a7abb65 100644 --- a/src/worldstate/models/archon_hunt.rs +++ b/src/worldstate/models/archon_hunt.rs @@ -1,101 +1,86 @@ +use warframe_macros::model; + use super::{ - macros::model_builder, - Faction, - MissionType, + faction::Faction, + mission_type::MissionType, }; -model_builder! { - :"An archon hunt mission" - ArchonHuntMission, - rt = obj, - timed = false; - - :"The i18n of the node" +/// An archon hunt mission +#[model] +pub struct ArchonHuntMission { + /// The i18n of the node pub node: String, - :"The name of the node" + /// The name of the node pub node_key: String, - :"The i18n type of the mission" + /// The i18n type of the mission pub r#type: String, - :"The type of the mission" + /// The type of the mission pub type_key: MissionType, - // Given by the API, but Archon Hunt missions cannot be nightmare - // :"Whether the mission is a nightmare mission" - // pub nightmare: bool, - - :"Whether the mission requires an archwing" + /// Whether the mission requires an archwing pub archwing_required: bool, - :"Whether the mission is a sharkwing mission" + /// Whether the mission is a sharkwing mission pub is_sharkwing: bool, - :"Any additional spawners" + /// Any additional spawners pub advanced_spawners: Vec, - :"Items required to enter the mission" + /// Items required to enter the mission pub required_items: Vec, - :"Affectors of this mission" + /// Affectors of this mission pub level_auras: Vec, } -model_builder! { - :"An alert in Warframe" - ArchonHunt: "/archonHunt", - rt = obj, - timed = true; - - :"ID of this event" +/// An alert in Warframe +#[model(endpoint = "/archonHunt", return_style = Object, timed)] +pub struct ArchonHunt { + /// ID of this event pub id: String, - :"The Archon you are up against" + /// The Archon you are up against pub boss: String, - :"The Reward Pool of this event" + /// The Reward Pool of this event pub reward_pool: String, - :"The i18n of the faction you are up against" + /// The i18n of the faction you are up against pub faction: String, - :"The faction you are up against" + /// The faction you are up against pub faction_key: Option, - :"The missions associated with this week's Archon Hunt" - pub missions: [ArchonHuntMission; 3] + /// The missions associated with this week's Archon Hunt + pub missions: [ArchonHuntMission; 3], } #[cfg(test)] -mod test { +mod test_archonhunt { + use rstest::rstest; + use serde_json::from_str; + use super::ArchonHunt; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::archon_hunt::{ + archon_hunt, + archon_hunt_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_archonhunt() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_archonhunt) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(archon_hunt_en: &str) { + from_str::(archon_hunt_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_archonhunt_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_archonhunt) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(archon_hunt: &str) { + from_str::(archon_hunt).unwrap(); } } diff --git a/src/worldstate/models/base.rs b/src/worldstate/models/base.rs index 160e399..ebbc40d 100644 --- a/src/worldstate/models/base.rs +++ b/src/worldstate/models/base.rs @@ -1,8 +1,11 @@ //! Here lies what powers the models. -use std::ops::{ - Div, - Rem, +use std::{ + fmt::Write, + ops::{ + Div, + Rem, + }, }; use chrono::{ @@ -10,10 +13,12 @@ use chrono::{ Utc, }; use serde::{ - de::DeserializeOwned, Deserialize, + de::DeserializeOwned, }; +use crate::worldstate::language::Language; + /// Types implementing this have an actual endpoint on the API. pub trait Endpoint { /// Returns the URL to the english endpoint. @@ -24,7 +29,6 @@ pub trait Endpoint { /// Returns the URL to the endpoint of the specified language. /// /// Getting this endpoint is __NOT__ free, as concatenating is done at runtime. - #[cfg(feature = "multilangual")] fn endpoint(language: crate::worldstate::language::Language) -> String; } @@ -38,15 +42,12 @@ pub trait TimedEvent { /// Short-time-formatted duration string representing the start of the event fn start_string(&self) -> String { - format!( - "-{}", - super::base::get_short_format_time_string(self.activation()) - ) + format!("-{}", get_short_format_time_string(self.activation())) } /// Short-time-formatted duration string representing the end of the event fn eta(&self) -> String { - super::base::get_short_format_time_string(self.expiry()) + get_short_format_time_string(self.expiry()) } /// Whether the event is expired or not @@ -73,10 +74,11 @@ pub trait Queryable: Endpoint { /// The Type returned by the [query](Queryable::query). type Return: DeserializeOwned; - /// Queries a model and returns an instance of ['itself'](Queryable::Return). + /// Queries a model and returns an instance of [`itself`](Queryable::Return). + #[must_use] fn query( request_executor: &reqwest::Client, - ) -> impl std::future::Future> + Send { + ) -> impl std::future::Future> + Send { async { Ok(request_executor .get(Self::endpoint_en()) @@ -88,12 +90,12 @@ pub trait Queryable: Endpoint { } /// Queries a model with the specified language and returns an instance of - /// ['itself'](Queryable::Return). - #[cfg(feature = "multilangual")] + /// [`itself`](Queryable::Return). + #[must_use] fn query_with_language( request_executor: &reqwest::Client, - language: crate::worldstate::prelude::Language, - ) -> impl std::future::Future> + Send { + language: Language, + ) -> impl std::future::Future> + Send { async move { Ok(request_executor .get(Self::endpoint(language)) @@ -142,7 +144,7 @@ pub(crate) fn get_short_format_time_string(dt: DateTime) -> String { for &(suffix, divisor) in &components { let (div_time, mod_time) = divmod(time_in_between, divisor); if div_time > 0 { - formatted_time.push_str(&format!("{}{} ", div_time, suffix)); + write!(formatted_time, "{div_time}{suffix} ").expect("Error `write!`-ing into string"); time_in_between = mod_time; } } @@ -150,25 +152,14 @@ pub(crate) fn get_short_format_time_string(dt: DateTime) -> String { formatted_time.trim().to_string() } -/// A trait allowing to get the documentation of an enum variant - so you don't have to write it. -pub trait VariantDocumentation { - /// Gets the documentation for this variant - fn docs(&self) -> &'static str; -} - -/// A trait allowing to get the documentation of a type - so you don't have to write it. -pub trait TypeDocumentation { - /// Gets the documentation for this Enum - fn docs() -> &'static str; -} - /// A trait that allows enums with 2 variants to easily access the other variant. pub trait Opposite { /// Returns the opposite of this state + #[must_use] fn opposite(&self) -> Self; } -use crate::worldstate::error::ApiError; +use crate::worldstate::error::Error; #[cfg(test)] mod tests { @@ -187,6 +178,6 @@ mod tests { let assert_result = formatted_time == "5h 29m 59s" || formatted_time == "5h 29m 58s" || formatted_time == "5h 30m"; - assert!(assert_result) + assert!(assert_result); } } diff --git a/src/worldstate/models/cambion_drift.rs b/src/worldstate/models/cambion_drift.rs index 8699783..a7f0610 100644 --- a/src/worldstate/models/cambion_drift.rs +++ b/src/worldstate/models/cambion_drift.rs @@ -1,60 +1,48 @@ -use super::macros::{ - enum_builder, - model_builder, -}; - -enum_builder! { - :"The State of the Cambion Drift" - CambionDriftState; - - :"The 'Vome' state" - Vome = "vome", - :"The 'Fass' state" - Fass = "fass" +use warframe_macros::model; + +/// The State of the Cambion Drift +#[model] +#[serde(rename_all = "lowercase")] +pub enum CambionDriftState { + /// The 'Vome' state + Vome, + /// The 'Fass' state + Fass, } -model_builder! { - :"Cambion Drift info" - CambionDrift: "/cambionCycle", - rt = obj, - timed = true; - - :"The id of the cycle" +/// Cambion Drift info +#[model(endpoint = "/cambionCycle", return_style = Object, timed)] +pub struct CambionDrift { + /// The id of the cycle pub id: String, - :"The state of the cambion drift (vome/fass)" - pub state: CambionDriftState + /// The state of the cambion drift (vome/fass) + pub state: CambionDriftState, } #[cfg(test)] -mod test { +mod test_cambion_drift { + use rstest::rstest; + use serde_json::from_str; + use super::CambionDrift; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::cambion_drift::{ + cambion_drift, + cambion_drift_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_cambiondrift() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_cambiondrift) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(cambion_drift_en: &str) { + from_str::(cambion_drift_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_cambiondrift_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_cambiondrift) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(cambion_drift: &str) { + from_str::(cambion_drift).unwrap(); } } diff --git a/src/worldstate/models/cetus.rs b/src/worldstate/models/cetus.rs index c449fc0..f3504bb 100644 --- a/src/worldstate/models/cetus.rs +++ b/src/worldstate/models/cetus.rs @@ -1,69 +1,48 @@ -use super::macros::{ - enum_builder, - model_builder, -}; - -enum_builder! { - :"Represents the current state on cetus" - CetusState; - - :"Represents Cetus' day state" - Day = "day", - - :"Rpresents Cetus' night state" - Night = "night", +use warframe_macros::model; + +/// Represents the current state on cetus +#[model] +#[serde(rename_all = "lowercase")] +pub enum CetusState { + /// Represents Cetus' day state + Day, + /// Represents Cetus' night state + Night, } -model_builder! { - :"The Information about cetus" - Cetus: "/cetusCycle", - rt = obj, - timed = true; - - :"The id of the cycle" +/// The Information about cetus +#[model(endpoint = "/cetusCycle", return_style = Object, timed)] +pub struct Cetus { + /// The id of the cycle pub id: String, - :"The state of Cetus (day/night)" + /// The state of Cetus (day/night) pub state: CetusState, } #[cfg(test)] -mod test { +mod test_cetus { + use rstest::rstest; + use serde_json::from_str; + use super::Cetus; use crate::worldstate::{ - client::Client, - error::ApiError, - prelude::{ - CetusState, - Opposite, + Queryable, + fixtures::cetus::{ + cetus, + cetus_en, }, }; - #[tokio::test] - async fn test_cetus() -> Result<(), ApiError> { - let client = Client::new(); - - match client.fetch::().await { - Ok(_cetus) => Ok(()), - Err(why) => Err(why), - } - } - - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_cetus_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); + type R = ::Return; - match client.fetch_using_lang::(Language::ZH).await { - Ok(_cetus) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(cetus_en: &str) { + from_str::(cetus_en).unwrap(); } - #[test] - fn test_cetus_state_opposite() { - assert_eq!(CetusState::Day.opposite(), CetusState::Night) + #[rstest] + fn test_ml(cetus: &str) { + from_str::(cetus).unwrap(); } } diff --git a/src/worldstate/models/construction_progress.rs b/src/worldstate/models/construction_progress.rs index 275a98f..c227abc 100644 --- a/src/worldstate/models/construction_progress.rs +++ b/src/worldstate/models/construction_progress.rs @@ -1,56 +1,46 @@ -use super::{ - base::deserialize_f32_from_string, - macros::model_builder, -}; +use warframe_macros::model; -model_builder! { - :"Construction percentages for showing how far constructed the enemy fleets are" - ConstructionProgress: "/constructionProgress", - rt = obj, - timed = false; +use super::base::deserialize_f32_from_string; - :"The progress of the Fomorian" - pub fomorian_progress: f32 => "deserialize_f32_from_string", +/// Construction percentages for showing how far constructed the enemy fleets are +#[model(endpoint = "/constructionProgress", return_style = Object)] +pub struct ConstructionProgress { + /// The progress of the Fomorian + #[serde(deserialize_with = "deserialize_f32_from_string")] + pub fomorian_progress: f32, - :"The progress of the Razorback" - pub razorback_progress: f32 => "deserialize_f32_from_string", + /// The progress of the Razorback + #[serde(deserialize_with = "deserialize_f32_from_string")] + pub razorback_progress: f32, - :"No clue what this is tbh" - pub unknown_progress: f32 => "deserialize_f32_from_string", + /// No clue what this is tbh + #[serde(deserialize_with = "deserialize_f32_from_string")] + pub unknown_progress: f32, } #[cfg(test)] -mod test { +mod test_construction_progress { + use rstest::rstest; + use serde_json::from_str; + use super::ConstructionProgress; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::construction_progress::{ + construction_progress, + construction_progress_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_constructionprogress() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_constructionprogress) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(construction_progress_en: &str) { + from_str::(construction_progress_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_constructionprogress_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client - .fetch_using_lang::(Language::ZH) - .await - { - Ok(_constructionprogress) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(construction_progress: &str) { + from_str::(construction_progress).unwrap(); } } diff --git a/src/worldstate/models/daily_deal.rs b/src/worldstate/models/daily_deal.rs index 4fe688f..aca07f6 100644 --- a/src/worldstate/models/daily_deal.rs +++ b/src/worldstate/models/daily_deal.rs @@ -1,63 +1,55 @@ -use super::macros::model_builder; +use warframe_macros::model; -model_builder! { - :"Info about the Daily Deal(s)" - DailyDeal: "/dailyDeals", - rt = array, - timed = true; +use super::ItemStringWrapper; +/// Info about the Daily Deal(s) +#[model(endpoint = "/dailyDeals", return_style = Array, timed)] +pub struct DailyDeal { + /// The Item being sold + pub item: ItemStringWrapper, - :"The Item being sold" - pub item: String, - - :"The unique name of the Item" + /// The unique name of the Item pub unique_name: String, - :"The original price of the Item" + /// The original price of the Item pub original_price: i32, - :"The discounted price" + /// The discounted price pub sale_price: i32, - :"The total amount of items available" + /// The total amount of items available pub total: i32, - :"The number of items sold" + /// The number of items sold pub sold: i32, - :"The discount % of the item" + /// The discount % of the item pub discount: i32, } #[cfg(test)] -mod test { +mod test_daily_deal { + use rstest::rstest; + use serde_json::from_str; + use super::DailyDeal; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::daily_deal::{ + daily_deal, + daily_deal_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_dailydeal() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_dailydeals) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(daily_deal_en: &str) { + from_str::(daily_deal_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_dailydeal_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_dailydeals) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(daily_deal: &str) { + from_str::(daily_deal).unwrap(); } } diff --git a/src/worldstate/models/damage_type.rs b/src/worldstate/models/damage_type.rs index 24164e5..cf0781b 100644 --- a/src/worldstate/models/damage_type.rs +++ b/src/worldstate/models/damage_type.rs @@ -7,7 +7,9 @@ macro_rules! unordered_pattern { }; } -#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, derive_more::From, Hash)] +#[derive( + Clone, Copy, Debug, Deserialize, PartialEq, Eq, derive_more::From, Hash, derive_more::Display, +)] #[serde(untagged)] pub enum DamageType { // Physical Damage @@ -44,9 +46,22 @@ impl ElementalDamage { /// Combines two Primary Elements into their Combined Element. /// /// Returns [None] if both `a` and `b` are equal. + #[must_use] pub const fn combine(a: Self, b: Self) -> Option { - use CombinedElementalDamage::*; - use ElementalDamage::*; + use CombinedElementalDamage::{ + Blast, + Corrosive, + Gas, + Magnetic, + Radiation, + Viral, + }; + use ElementalDamage::{ + Cold, + Electricity, + Heat, + Toxin, + }; let combined_element = match (a, b) { unordered_pattern!(Heat, Cold) => Blast, @@ -74,12 +89,26 @@ pub enum CombinedElementalDamage { } impl CombinedElementalDamage { - /// Breaks down a combined element into both of its [PrimaryElement]s. + /// Breaks down a combined element into both of its + /// [`ElementalDamage`](crate::worldstate::ElementalDamage) components. /// /// The order in which they are returned follows classic HCET. + #[must_use] pub const fn break_down(self) -> (ElementalDamage, ElementalDamage) { - use CombinedElementalDamage::*; - use ElementalDamage::*; + use CombinedElementalDamage::{ + Blast, + Corrosive, + Gas, + Magnetic, + Radiation, + Viral, + }; + use ElementalDamage::{ + Cold, + Electricity, + Heat, + Toxin, + }; match self { Radiation => (Heat, Electricity), diff --git a/src/worldstate/models/deep_archimedea.rs b/src/worldstate/models/deep_archimedea.rs new file mode 100644 index 0000000..34455ab --- /dev/null +++ b/src/worldstate/models/deep_archimedea.rs @@ -0,0 +1,92 @@ +use warframe_macros::model; + +use crate::worldstate::MissionType; + +#[model(endpoint = "/deepArchimedea", return_style = Object, timed)] +pub struct DeepArchimedea { + pub id: String, + pub missions: [DeepArchimedeaMission; 3], + pub personal_modifiers: Vec, +} + +#[model] +pub struct DeepArchimedeaMission { + #[serde(rename = "mission")] + pub r#type: MissionType, + pub deviation: DeepArchimedeaModifier, + pub risk_variables: Vec, +} + +#[model] +pub struct DeepArchimedeaModifier { + pub key: String, + pub name: String, + pub description: String, +} + +// COMMENTED OUT FOR NOW: unsure how they're related. Sticking to String fields for now + +// #[model] +// pub enum Deviation { +// /// Enemy guns launch large, slow moving orbs instead of their usual ordnance. +// ArcadeAutomata, + +// /// Drones fly above Flare, spraying them with Efervon gas. +// ChemicalNoise, + +// /// -50% melee combo chance +// DullBlades, + +// /// Consequences of opening a Supply Cache are active from the start and will intensify once +// it /// is opened. Failure to open a Supply Cache doubles the kill count required to finish +// the /// mission. +// EscalateImmediately, + +// /// Enemies take 95% less damage from non-heavy weapons. Enemies will drop heavy ammo packs +// and /// heavy weapon recall time reduced to 5s. +// HeavyWarfare, + +// /// Within the underground, hostile overgrowths will attack if players stops moving. +// HostileOvergrowth, + +// /// Jade Wisps haunt the region. If approached, they chase down the player responsible and +// /// transform into Jade Light beams. +// JadeSpring, + +// /// Techrot Miasmites swarm out of the shadows through the mission. +// MiasmiteHive, + +// /// Duration of negative Status Effects is tripled. +// OverSensitive, + +// /// Techrot enemies attempt to melee attack Hell-Scrubbers, bursting on contact and +// increasing /// scrubber contamination by 33%. +// TechrotConjunction, +// } + +#[cfg(test)] +mod test_deep_archimedea { + use rstest::rstest; + use serde_json::from_str; + + use super::DeepArchimedea; + use crate::worldstate::{ + Queryable, + fixtures::deep_archimedea::{ + deep_archimedea, + deep_archimedea_en, + }, + }; + + type R = ::Return; + + #[rstest] + fn test(deep_archimedea_en: &str) { + from_str::(deep_archimedea_en).unwrap(); + } + + #[rstest] + fn test_ml(deep_archimedea: &str) { + from_str::(deep_archimedea).unwrap(); + } +} diff --git a/src/worldstate/models/event.rs b/src/worldstate/models/event.rs index 08c95d3..f1fc42a 100644 --- a/src/worldstate/models/event.rs +++ b/src/worldstate/models/event.rs @@ -1,88 +1,80 @@ +use warframe_macros::model; + use super::{ - macros::model_builder, - Faction, - Reward, - Syndicate, + faction::Faction, + reward::Reward, + syndicate::Syndicate, }; -model_builder! { - :"An Event in Warframe" - Event: "/events", - rt = array, - timed = true; - - :"Maximum score to complete the event" +/// An Event in Warframe +#[model(endpoint = "/events", return_style = Array, timed)] +pub struct Event { + /// Maximum score to complete the event pub maximum_score: Option, - :"The current score for the event" + /// The current score for the event pub current_score: Option, - :"Interval for the first goal" + /// Interval for the first goal pub small_interval: Option, - :"Interval for the second intermediate score" + /// Interval for the second intermediate score pub large_interval: Option, - :"The faction you're up against" + /// The faction you're up against pub faction: Option, - :r"The description for the event" + /// The description for the event pub description: Option, - :"Tooltip for the event" + /// Tooltip for the event pub tooltip: Option, - :"Node that the event is taking place on" + /// Node that the event is taking place on pub node: Option, - :"Nodes that the event is happening concurrently on" + /// Nodes that the event is happening concurrently on pub concurrent_nodes: Vec, - :"Node that is being attacked & defended in the event" + /// Node that is being attacked & defended in the event pub victim_node: Option, - :"Localized tag for the event score" + /// Localized tag for the event score pub score_loc_tag: Option, - :"The rewards to earn" + /// The rewards to earn pub rewards: Vec, - :"Amount of health remaining for the target" + /// Amount of health remaining for the target pub health: Option, - :"The associated Syndicate" + /// The associated Syndicate pub affiliated_with: Option, } #[cfg(test)] -mod test { +mod test_event { + use rstest::rstest; + use serde_json::from_str; + use super::Event; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::event::{ + event, + event_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_event() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_events) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(event_en: &str) { + from_str::(event_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_event_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_events) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(event: &str) { + from_str::(event).unwrap(); } } diff --git a/src/worldstate/models/faction.rs b/src/worldstate/models/faction.rs index 94982de..37792d6 100644 --- a/src/worldstate/models/faction.rs +++ b/src/worldstate/models/faction.rs @@ -1,3 +1,5 @@ +use warframe_macros::model; + use super::damage_type::{ CombinedElementalDamage, DamageType, @@ -5,8 +7,8 @@ use super::damage_type::{ PhysicalDamage, }; -#[derive(Debug, serde::Deserialize, PartialEq, PartialOrd, Clone, Eq, Copy)] /// A Faction in Warframe +#[model] pub enum Faction { /// Orokin Orokin, @@ -33,37 +35,39 @@ pub enum Faction { ManInTheWall, } -impl crate::ws::VariantDocumentation for Faction { - fn docs(&self) -> &'static str { - match self { - Faction::Orokin => "Orokin", - Faction::Corrupted => "Corrupted", - Faction::Infested => "Infested", - Faction::Corpus => "Corpus", - Faction::Grineer => "Grineer", - Faction::Tenno => "Tenno", - Faction::Narmer => "Narmer", - Faction::Crossfire => "Crossfire, which is Faction-less", - Faction::ManInTheWall => { - "This is a placeholder faction. For example, it was used during" - } - Faction::Murmur => "Murmur", - } - } -} -impl crate::ws::TypeDocumentation for Faction { - fn docs() -> &'static str { - "A Faction in Warframe" - } -} - impl Faction { - pub fn vulnerable_to(self) -> Vec { - use CombinedElementalDamage::*; - use DamageType::*; - use ElementalDamage::*; - use Faction::*; - use PhysicalDamage::*; + #[must_use] + pub fn vulnerable_to(self) -> Vec { + use CombinedElementalDamage::{ + Corrosive, + Magnetic, + Radiation, + Viral, + }; + use DamageType::{ + Combined, + Elemental, + Physical, + }; + use ElementalDamage::{ + Electricity, + Heat, + Toxin, + }; + use Faction::{ + Corpus, + Corrupted, + Grineer, + Infested, + Murmur, + Narmer, + Orokin, + }; + use PhysicalDamage::{ + Impact, + Puncture, + Slash, + }; match self { Orokin | Corrupted => vec![Physical(Puncture), Combined(Viral)], @@ -72,27 +76,30 @@ impl Faction { Grineer => vec![Physical(Impact), Combined(Corrosive)], Narmer => vec![Physical(Slash), Elemental(Toxin)], Murmur => vec![Elemental(Electricity), Combined(Radiation)], - Tenno => vec![], - Crossfire => vec![], - ManInTheWall => vec![], + _ => vec![], } } + #[must_use] pub fn resistant_to(self) -> Option { - use CombinedElementalDamage::*; - use DamageType::*; - use Faction::*; + use CombinedElementalDamage::{ + Magnetic, + Radiation, + Viral, + }; + use DamageType::Combined; + use Faction::{ + Corrupted, + Murmur, + Narmer, + Orokin, + }; match self { Orokin | Corrupted => Some(Combined(Radiation)), Narmer => Some(Combined(Magnetic)), Murmur => Some(Combined(Viral)), - Grineer => None, - Corpus => None, - Infested => None, - Tenno => None, - Crossfire => None, - ManInTheWall => None, + _ => None, } } } diff --git a/src/worldstate/models/fissure.rs b/src/worldstate/models/fissure.rs index 0c1ff22..884d096 100644 --- a/src/worldstate/models/fissure.rs +++ b/src/worldstate/models/fissure.rs @@ -1,97 +1,90 @@ +use warframe_macros::model; + use super::{ faction::Faction, - macros::{ - enum_builder, - model_builder, - }, mission_type::MissionType, }; -enum_builder! { - :"Represents Relic tiers" - Tier; - :"Lith" - Lith: 1, - :"Meso" - Meso: 2, - :"Neo" - Neo: 3, - :"Axi" - Axi: 4, - :"Requiem" - Requiem: 5, - :"Omnia" - Omnia: 6, +/// Represents Relic tiers +#[model] +pub enum Tier { + /// Lith + Lith = 1, + /// Meso + Meso = 2, + /// Neo + Neo = 3, + /// Axi + Axi = 4, + /// Requiem + Requiem = 5, + /// Omnia + Omnia = 6, } -model_builder! { - :"A Fissure Mission in which you can crack Void Relics" - Fissure: "/fissures", - rt = array, - timed = true; - - :"The id of the fissure" +/// A Fissure Mission in which you can crack Void Relics +#[model(endpoint = "/fissures", return_style = Array, timed)] +pub struct Fissure { + /// The id of the fissure pub id: String, - :"The i18n of the mission" + /// The i18n of the mission pub mission_type: String, - :"The type of the mission" + /// The type of the mission pub mission_key: MissionType, - :"The i18n of the node" + /// The i18n of the node pub node: String, - :"The name of the node" + /// The name of the node pub node_key: String, - :"The tier i18n of the relic" - pub tier_name: String = "tier", + /// The tier i18n of the relic + #[serde(rename = "tier")] + pub tier_name: String, - :"The Tier of the relic" - pub tier: Tier = "tierNum", + /// The Tier of the relic + #[serde(rename = "tierNum")] + pub tier: Tier, - :"The i18n name of the enemy" + /// The i18n name of the enemy pub enemy: String, - :"The type of the enemy" - pub faction: Faction = "enemyKey", + /// The type of the enemy + #[serde(rename = "enemyKey")] + pub faction: Faction, - :"Whether the fissure is a storm" + /// Whether the fissure is a storm pub is_storm: bool, - :"Whether the the fissure is hard (Steel Path)" - pub is_hard: bool + /// Whether the the fissure is hard (Steel Path) + pub is_hard: bool, } #[cfg(test)] -mod test { +mod test_fissure { + use rstest::rstest; + use serde_json::from_str; + use super::Fissure; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::fissure::{ + fissure, + fissure_en, + }, }; - #[tokio::test] - async fn test_fissure() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_fissures) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(fissure_en: &str) { + from_str::(fissure_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_fissure_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_fissures) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(fissure: &str) { + from_str::(fissure).unwrap(); } } diff --git a/src/worldstate/models/flash_sale.rs b/src/worldstate/models/flash_sale.rs index 5cde7f0..e2c3cd6 100644 --- a/src/worldstate/models/flash_sale.rs +++ b/src/worldstate/models/flash_sale.rs @@ -1,59 +1,52 @@ -use super::macros::model_builder; +use warframe_macros::model; -model_builder! { - :"Popular Deals, discounts, featured deals" - FlashSale: "/flashSales", - rt = array, - timed = true; +use super::ItemStringWrapper; - :"The item being sold" - pub item: String, +/// Popular Deals, discounts, featured deals +#[model(endpoint = "/flashSales", return_style = Array, timed)] +pub struct FlashSale { + /// The item being sold + pub item: ItemStringWrapper, - :"The discount of the Item" + /// The discount of the Item pub discount: i32, - :"The PLATINUM price of this item" + /// The PLATINUM price of this item pub premium_override: i32, - :"The CREDIT price of this item" + /// The CREDIT price of this item pub regular_override: i32, - :"Whether the item is popular or not" + /// Whether the item is popular or not pub is_popular: Option, - :"Whether the item is featured or not" - pub is_featured: Option + /// Whether the item is featured or not + pub is_featured: Option, } #[cfg(test)] -mod test { +mod test_flash_sale { + use rstest::rstest; + use serde_json::from_str; + use super::FlashSale; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::flash_sale::{ + flash_sale, + flash_sale_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_flashsale() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_flashsales) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(flash_sale_en: &str) { + from_str::(flash_sale_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_flashsale_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_flashsales) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(flash_sale: &str) { + from_str::(flash_sale).unwrap(); } } diff --git a/src/worldstate/models/global_upgrades.rs b/src/worldstate/models/global_upgrades.rs index 3eb16ef..28834c1 100644 --- a/src/worldstate/models/global_upgrades.rs +++ b/src/worldstate/models/global_upgrades.rs @@ -1,66 +1,47 @@ -use chrono::Utc; +use warframe_macros::model; -use super::macros::model_builder; - -type DateTime = chrono::DateTime; - -model_builder! { - :"[POSSIBLY UNSTABLE] Any current modifiers applied to all users, such as double drops, double XP, etc." - GlobalUpgrade: "/globalUpgrades", - rt = array, - timed = true; - - :"The start of the upgrade" - pub start: DateTime, - - :"The end of the upgrade" - pub end: DateTime, - - :"What kind of upgrade" +/// Any current modifiers applied to all users, such as double drops, double XP, etc. +#[model(endpoint = "/globalUpgrades", return_style = Array, timed)] +pub struct GlobalUpgrade { + /// What kind of upgrade pub upgrade: String, - :"Operation descriptor" + /// Operation descriptor pub operation: String, - :"Symbol corresponding to operation" + /// Symbol corresponding to operation pub operation_symbol: String, - :"Value corresponding to performing the operation" + /// Value corresponding to performing the operation pub upgrade_operation_value: i32, - :"Whether the upgrade has expired" + /// Whether the upgrade has expired pub expired: bool, - - :"Formatted short string designating when the upgrade will expire" - pub eta: String, } #[cfg(test)] -mod test { - use super::GlobalUpgrade; - use crate::worldstate::{client::Client, error::ApiError}; - - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_globalupgrade() -> Result<(), ApiError> { - let client = Client::new(); +mod test_global_upgrade { + use rstest::rstest; + use serde_json::from_str; - match client.fetch::().await { - Ok(_globalupgrades) => Ok(()), - Err(why) => Err(why), - } + use super::GlobalUpgrade; + use crate::worldstate::{ + Queryable, + fixtures::global_upgrade::{ + global_upgrade, + global_upgrade_en, + }, + }; + + type R = ::Return; + + #[rstest] + fn test(global_upgrade_en: &str) { + from_str::(global_upgrade_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_globalupgrade_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_globalupgrades) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(global_upgrade: &str) { + from_str::(global_upgrade).unwrap(); } } diff --git a/src/worldstate/models/invasion.rs b/src/worldstate/models/invasion.rs index 4633eef..db74fbb 100644 --- a/src/worldstate/models/invasion.rs +++ b/src/worldstate/models/invasion.rs @@ -1,106 +1,96 @@ +use warframe_macros::model; + use super::{ - macros::model_builder, - Faction, - Reward, - RewardType, + faction::Faction, + reward::Reward, + reward_type::RewardType, }; type DateTime = chrono::DateTime; -model_builder! { - :"An defender/attacker of an Invasion" - InvasionMember, - rt = obj, - timed = false; - - :"The reward of the mission." +/// An defender/attacker of an Invasion +#[model] +pub struct InvasionMember { + /// The reward of the mission. pub reward: Option, - :"The localized faction that houses the node/mission" + /// The localized faction that houses the node/mission pub faction: String, - :"The faction that houses the node/mission" + /// The faction that houses the node/mission pub faction_key: Faction, } -model_builder! { - :"An Invasion" - Invasion: "/invasions", - rt = array, - timed = false; - - :"The time the Invasion began" +/// An Invasion +#[model(endpoint = "/invasions", return_style = Array)] +pub struct Invasion { + /// The time the Invasion began pub activation: DateTime, - :"Whether the Invasion is over" + /// Whether the Invasion is over pub completed: bool, - :"Percantage of the Invasion's completion" + /// Percentage of the Invasion's completion pub completion: f32, - :"How many fights have happened" + /// How many fights have happened pub count: i32, - :"The Invasion's description" - pub description: String = "desc", + /// The Invasion's description + #[serde(rename = "desc")] + pub description: String, - :"Short-formatted string estimating the time until the Invasion is closed" + /// Short-formatted string estimating the time until the Invasion is closed pub eta: String, - :"The i18n of the node" + /// The i18n of the node pub node: String, - :"The name of the node" + /// The name of the node pub node_key: String, - :"The amount of runs required to qualify for the reward. (most likely 3)" + /// The amount of runs required to qualify for the reward. (most likely 3) pub required_runs: i32, - :"Whether the fight is against infested enemies" + /// Whether the fight is against infested enemies pub vs_infestation: bool, - :"The invading faction information" + /// The invading faction information pub attacker: InvasionMember, - :"The defending faction information" + /// The defending faction information pub defender: InvasionMember, - :"Short-time-formatted duration string of the start of the Invasion" + /// Short-time-formatted duration string of the start of the Invasion pub start_string: String, - :"A list of reward types" + /// A list of reward types pub reward_types: Vec, } #[cfg(test)] -mod test { +mod test_invasion { + use rstest::rstest; + use serde_json::from_str; + use super::Invasion; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::invasion::{ + invasion, + invasion_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_invasion() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_invasions) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(invasion_en: &str) { + from_str::(invasion_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_invasion_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_invasions) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(invasion: &str) { + from_str::(invasion).unwrap(); } } diff --git a/src/worldstate/models/items/arcane.rs b/src/worldstate/models/items/arcane.rs index 5297d37..6fc4d8e 100644 --- a/src/worldstate/models/items/arcane.rs +++ b/src/worldstate/models/items/arcane.rs @@ -3,7 +3,6 @@ use serde::Deserialize; use super::{ - Category, Drop, LevelStat, Rarity, @@ -13,8 +12,6 @@ use super::{ #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Arcane { - pub category: Category, - pub drops: Vec, pub image_name: String, @@ -31,12 +28,3 @@ pub struct Arcane { pub unique_name: String, } - -#[tokio::test] -async fn test_arcane_query() -> Result<(), Box> { - let _arcane = reqwest::get("https://api.warframestat.us/items/arcane%20energize/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/archwing.rs b/src/worldstate/models/items/archwing.rs index 6d7cdae..ad562a2 100644 --- a/src/worldstate/models/items/archwing.rs +++ b/src/worldstate/models/items/archwing.rs @@ -3,11 +3,11 @@ use serde::Deserialize; use super::{ - warframe::Ability, - Category, Component, + warframe::Ability, }; +#[allow(clippy::struct_excessive_bools)] #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Archwing { @@ -21,8 +21,6 @@ pub struct Archwing { pub build_time: i64, - pub category: Category, - pub components: Vec, pub consume_on_build: bool, @@ -57,12 +55,3 @@ pub struct Archwing { pub unique_name: String, } - -#[tokio::test] -async fn test_archwing_query() -> Result<(), Box> { - let _archwing = reqwest::get("https://api.warframestat.us/items/amesha/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/fish.rs b/src/worldstate/models/items/fish.rs deleted file mode 100644 index cfeb16a..0000000 --- a/src/worldstate/models/items/fish.rs +++ /dev/null @@ -1,33 +0,0 @@ -use serde::Deserialize; - -use super::{ - Category, - Drop, -}; - -#[derive(Clone, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "camelCase")] -pub struct Fish { - pub category: Category, - - pub description: String, - - pub drops: Vec, - - pub image_name: String, - - pub name: String, - - pub tradable: bool, - - pub unique_name: String, -} - -#[tokio::test] -async fn test_fish_query() -> Result<(), Box> { - let _fish = reqwest::get("https://api.warframestat.us/items/mawfish/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/gear.rs b/src/worldstate/models/items/gear.rs index 3a0d67e..eb66143 100644 --- a/src/worldstate/models/items/gear.rs +++ b/src/worldstate/models/items/gear.rs @@ -1,9 +1,6 @@ use serde::Deserialize; -use super::{ - Category, - Component, -}; +use super::Component; #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] @@ -14,8 +11,6 @@ pub struct Gear { pub build_time: i64, - pub category: Category, - pub components: Vec, pub description: String, @@ -32,12 +27,3 @@ pub struct Gear { pub unique_name: String, } - -#[tokio::test] -async fn test_gear_query() -> Result<(), Box> { - let _gear = reqwest::get("https://api.warframestat.us/items/lanzo%20fishing%20spear/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/glyph.rs b/src/worldstate/models/items/glyph.rs deleted file mode 100644 index 842018f..0000000 --- a/src/worldstate/models/items/glyph.rs +++ /dev/null @@ -1,30 +0,0 @@ -use serde::Deserialize; - -use super::Category; - -#[derive(Clone, Debug, Deserialize, PartialEq, Eq)] -#[serde(rename_all = "camelCase")] -pub struct Glyph { - pub category: Category, - - pub description: String, - - pub image_name: String, - - pub masterable: bool, - - pub name: String, - - pub tradable: bool, - - pub unique_name: String, -} - -#[tokio::test] -async fn test_glyph_query() -> Result<(), Box> { - let _glyph = reqwest::get("https://api.warframestat.us/items/Accessiblegamer%20Glyph/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/minimal_item.rs b/src/worldstate/models/items/minimal_item.rs new file mode 100644 index 0000000..d740464 --- /dev/null +++ b/src/worldstate/models/items/minimal_item.rs @@ -0,0 +1,17 @@ +use serde::Deserialize; + +#[derive(Clone, Debug, Deserialize, PartialEq, Eq)] +#[serde(rename_all = "camelCase")] +pub struct MinimalItem { + pub description: String, + + pub image_name: String, + + pub masterable: bool, + + pub name: String, + + pub tradable: bool, + + pub unique_name: String, +} diff --git a/src/worldstate/models/items/misc.rs b/src/worldstate/models/items/misc.rs index d9669b2..d6d9e41 100644 --- a/src/worldstate/models/items/misc.rs +++ b/src/worldstate/models/items/misc.rs @@ -1,12 +1,8 @@ use serde::Deserialize; -use super::Category; - #[derive(Clone, Debug, Deserialize, PartialEq, Eq)] #[serde(rename_all = "camelCase")] pub struct Misc { - pub category: Category, - pub description: String, pub image_name: String, @@ -17,17 +13,7 @@ pub struct Misc { pub tradable: bool, - #[serde(rename = "type")] - pub misc_type: String, + pub r#type: String, pub unique_name: String, } - -#[tokio::test] -async fn test_misc_query() -> Result<(), Box> { - let _misc = reqwest::get("https://api.warframestat.us/items/Amethyst%20Nexifera%20Tag/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/mod.rs b/src/worldstate/models/items/mod.rs index da00d0a..1ec1e43 100644 --- a/src/worldstate/models/items/mod.rs +++ b/src/worldstate/models/items/mod.rs @@ -1,41 +1,37 @@ //! Everything to do with the item type - whether it's Warframes, Weapons, Mods, everything. -use arcane::Arcane; -use archwing::Archwing; -use chrono::NaiveDate; -use fish::Fish; -use gear::Gear; -use glyph::Glyph; -use misc::Misc; -use modification::Mod; -use node::Node; -use pet::Pet; -use quest::Quest; -use relic::Relic; -use resource::Resource; -use sentinel::Sentinel; -use serde::Deserialize; -use sigil::Sigil; -use skin::Skin; -use warframe::Warframe; +pub use arcane::Arcane; +pub use archwing::Archwing; +pub use chrono::NaiveDate; +pub use gear::Gear; +pub use minimal_item::MinimalItem; +pub use misc::Misc; +pub use modification::Mod; +pub use node::Node; +pub use pet::Pet; +pub use relic::Relic; +pub use resource::Resource; +pub use sentinel::Sentinel; +pub use serde::Deserialize; +pub use warframe::{ + Ability, + Sex, + Warframe, +}; use weapon::Weapon; -pub mod arcane; -pub mod archwing; -pub mod fish; -pub mod gear; -pub mod glyph; -pub mod misc; -pub mod modification; -pub mod node; -pub mod pet; -pub mod quest; -pub mod relic; -pub mod resource; -pub mod sentinel; -pub mod sigil; -pub mod skin; -pub mod warframe; +mod arcane; +mod archwing; +mod gear; +mod minimal_item; +mod misc; +mod modification; +mod node; +mod pet; +mod relic; +mod resource; +mod sentinel; +mod warframe; pub mod weapon; /// Represents a polarity @@ -123,7 +119,7 @@ pub struct Introduced { } /// An Item's category -#[derive(Clone, Debug, Deserialize, PartialEq, Eq)] +#[derive(Deserialize, Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] pub enum Category { /// Arcanes Arcanes, @@ -163,7 +159,7 @@ pub enum Category { Primary, /// Secondary Weapons Secondary, - /// ArchGun Weapons + /// `ArchGun` Weapons #[serde(rename = "Arch-Gun")] ArchGun, @@ -171,7 +167,7 @@ pub enum Category { /// Melee Weapons Melee, #[serde(rename = "Arch-Melee")] - /// ArchMelee Weapons + /// `ArchMelee` Weapons ArchMelee, } @@ -189,82 +185,66 @@ pub enum Rarity { } #[derive(Clone, Debug, Deserialize, PartialEq)] -#[serde(untagged)] +#[serde(tag = "category")] pub enum Item { + #[serde(rename = "Arcanes")] Arcane(Arcane), Archwing(Archwing), - Fish(Fish), + Fish(MinimalItem), Gear(Gear), - Glyph(Glyph), + #[serde(rename = "Glyphs")] + Glyph(MinimalItem), Misc(Misc), + #[serde(rename = "Mods")] Mod(Mod), Node(Node), + #[serde(rename = "Pets")] Pet(Pet), - Quest(Quest), + #[serde(rename = "Quests")] + Quest(MinimalItem), + #[serde(rename = "Relics")] Relic(Relic), + #[serde(rename = "Resources")] Resource(Resource), + #[serde(rename = "Sentinels")] Sentinel(Sentinel), - Sigil(Sigil), - Skin(Skin), + #[serde(rename = "Sigils")] + Sigil(MinimalItem), + #[serde(rename = "Skins")] + Skin(MinimalItem), // boxed because it's fairly large - enums always take as much space as the largest element + #[serde(rename = "Warframes")] Warframe(Box), - Weapon(Box), -} - -pub(crate) fn map_category_to_item( - category: Category, - json: &str, -) -> Result { - use serde_json::from_str; - let item = match category { - Category::Arcanes => Item::Arcane(from_str::(json)?), - Category::Archwing => Item::Archwing(from_str::(json)?), - Category::Fish => Item::Fish(from_str::(json)?), - Category::Gear => Item::Gear(from_str::(json)?), - Category::Glyphs => Item::Glyph(from_str::(json)?), - Category::Misc => Item::Misc(from_str::(json)?), - Category::Mods => Item::Mod(from_str::(json)?), - Category::Node => Item::Node(from_str::(json)?), - Category::Pets => Item::Pet(from_str::(json)?), - Category::Quests => Item::Quest(from_str::(json)?), - Category::Relics => Item::Relic(from_str::(json)?), - Category::Resources => Item::Resource(from_str::(json)?), - Category::Sentinels => Item::Sentinel(from_str::(json)?), - Category::Sigils => Item::Sigil(from_str::(json)?), - Category::Skins => Item::Skin(from_str::(json)?), - Category::Warframes => Item::Warframe(Box::new(from_str::(json)?)), - Category::Primary - | Category::Secondary - | Category::ArchGun - | Category::Melee - | Category::ArchMelee => Item::Weapon(Box::new(from_str::(json)?)), - }; - Ok(item) + #[serde( + alias = "Primary", + alias = "Secondary", + alias = "Melee", + alias = "Arch-Gun", + alias = "Arch-Melee" + )] + Weapon(Box), } - #[cfg(test)] mod test { - use items::Item; + use rstest::rstest; use crate::worldstate::{ - error::ApiError, - prelude::*, + fixtures::item::{ + item_sigil_en, + nanospores_de, + }, + models::items::Item, }; - #[tokio::test] - async fn test_item_query() -> Result<(), ApiError> { - let client = Client::new(); - - let sigil = client.query_item("Accord Sigil").await?; - assert!(matches!(sigil, Some(Item::Sigil(_)))); + #[rstest] + fn test_item_query(item_sigil_en: &str, nanospores_de: &str) { + let sigil = serde_json::from_str::(item_sigil_en).unwrap(); - let nano_spores_de = client - .query_item_using_lang("Nanosporen", Language::DE) - .await?; + assert!(matches!(sigil, Item::Sigil(_))); - assert!(matches!(nano_spores_de, Some(Item::Misc(_)))); + let nanospores = serde_json::from_str::(nanospores_de).unwrap(); - Ok(()) + assert!(matches!(nanospores, Item::Misc(_))); } } diff --git a/src/worldstate/models/items/modification.rs b/src/worldstate/models/items/modification.rs index d58ee48..0d7c696 100644 --- a/src/worldstate/models/items/modification.rs +++ b/src/worldstate/models/items/modification.rs @@ -2,20 +2,18 @@ use chrono::NaiveDate; use serde::Deserialize; use super::{ - Category, Introduced, LevelStat, Polarity, Rarity, }; +#[allow(clippy::struct_excessive_bools)] #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Mod { pub base_drain: i64, - pub category: Category, - pub compat_name: String, pub fusion_limit: i64, @@ -97,12 +95,3 @@ pub enum ModType { #[serde(rename = "Posture Mod")] Posture, } - -#[tokio::test] -async fn test_mod_query() -> Result<(), Box> { - let _mod = reqwest::get("https://api.warframestat.us/items/primed%20sure%20footed/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/node.rs b/src/worldstate/models/items/node.rs index 579ff8e..544bbd8 100644 --- a/src/worldstate/models/items/node.rs +++ b/src/worldstate/models/items/node.rs @@ -1,12 +1,9 @@ use serde::Deserialize; -use super::Category; #[derive(Clone, Debug, Deserialize, PartialEq, Eq)] #[serde(rename_all = "camelCase")] pub struct Node { - pub category: Category, - pub faction_index: i64, pub masterable: bool, @@ -35,12 +32,3 @@ pub struct Node { pub unique_name: String, } - -#[tokio::test] -async fn test_node_query() -> Result<(), Box> { - let _node = reqwest::get("https://api.warframestat.us/items/oro/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/pet.rs b/src/worldstate/models/items/pet.rs index 7a9a3d5..1cbcdd2 100644 --- a/src/worldstate/models/items/pet.rs +++ b/src/worldstate/models/items/pet.rs @@ -1,14 +1,10 @@ use serde::Deserialize; -use super::Category; - #[derive(Clone, Debug, Deserialize, PartialEq, Eq)] #[serde(rename_all = "camelCase")] pub struct Pet { pub armor: i64, - pub category: Category, - pub description: String, pub health: i64, @@ -34,12 +30,3 @@ pub struct Pet { pub unique_name: String, } - -#[tokio::test] -async fn test_pet_query() -> Result<(), Box> { - let _pet = reqwest::get("https://api.warframestat.us/items/smeeta%20kavat/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/quest.rs b/src/worldstate/models/items/quest.rs deleted file mode 100644 index 32570b3..0000000 --- a/src/worldstate/models/items/quest.rs +++ /dev/null @@ -1,33 +0,0 @@ -use serde::Deserialize; - -use super::Category; - -#[derive(Clone, Debug, Deserialize, PartialEq, Eq)] -#[serde(rename_all = "camelCase")] -pub struct Quest { - pub category: Category, - - pub description: String, - - pub image_name: String, - - pub masterable: bool, - - pub name: String, - - pub tradable: bool, - - #[serde(rename = "type")] - pub quest_type: String, - - pub unique_name: String, -} - -#[tokio::test] -async fn test_quest_query() -> Result<(), Box> { - let _quest = reqwest::get("https://api.warframestat.us/items/second%20dream/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/relic.rs b/src/worldstate/models/items/relic.rs index 05fd6e5..343078f 100644 --- a/src/worldstate/models/items/relic.rs +++ b/src/worldstate/models/items/relic.rs @@ -1,12 +1,8 @@ use serde::Deserialize; -use super::Category; - #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Relic { - pub category: Category, - pub description: String, pub image_name: String, @@ -55,12 +51,3 @@ pub struct RewardItem { pub warframe_market: MarketInfo, } - -#[tokio::test] -async fn test_relic_query() -> Result<(), Box> { - let _relic = reqwest::get("https://api.warframestat.us/items/axi%20a1/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/resource.rs b/src/worldstate/models/items/resource.rs index a8b7a75..a5950ed 100644 --- a/src/worldstate/models/items/resource.rs +++ b/src/worldstate/models/items/resource.rs @@ -1,15 +1,10 @@ use serde::Deserialize; -use super::{ - Category, - Drop, -}; +use super::Drop; #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Resource { - category: Category, - description: String, drops: Vec, @@ -26,17 +21,7 @@ pub struct Resource { tradable: bool, - #[serde(rename = "type")] - resource_type: String, + r#type: String, unique_name: String, } - -#[tokio::test] -async fn test_resource_query() -> Result<(), Box> { - let _resource = reqwest::get("https://api.warframestat.us/items/nano%20spores/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/sentinel.rs b/src/worldstate/models/items/sentinel.rs index 112aa8b..7fdea53 100644 --- a/src/worldstate/models/items/sentinel.rs +++ b/src/worldstate/models/items/sentinel.rs @@ -1,10 +1,8 @@ use serde::Deserialize; -use super::{ - Category, - Component, -}; +use super::Component; +#[allow(clippy::struct_excessive_bools)] #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Sentinel { @@ -16,8 +14,6 @@ pub struct Sentinel { pub build_time: i64, - pub category: Category, - pub components: Vec, pub consume_on_build: bool, @@ -46,17 +42,7 @@ pub struct Sentinel { pub tradable: bool, - #[serde(rename = "type")] - pub sentinel_type: String, + pub r#type: String, pub unique_name: String, } - -#[tokio::test] -async fn test_sentinel_query() -> Result<(), Box> { - let _sentinel = reqwest::get("https://api.warframestat.us/items/nautilus%20prime/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/sigil.rs b/src/worldstate/models/items/sigil.rs deleted file mode 100644 index ff00199..0000000 --- a/src/worldstate/models/items/sigil.rs +++ /dev/null @@ -1,33 +0,0 @@ -use serde::Deserialize; - -use super::Category; - -#[derive(Clone, Debug, Deserialize, PartialEq, Eq)] -#[serde(rename_all = "camelCase")] -pub struct Sigil { - category: Category, - - description: String, - - image_name: String, - - masterable: bool, - - name: String, - - tradable: bool, - - #[serde(rename = "type")] - sigil_type: String, - - unique_name: String, -} - -#[tokio::test] -async fn test_sigil_query() -> Result<(), Box> { - let _sigil = reqwest::get("https://api.warframestat.us/items/Accord%20Sigil/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/skin.rs b/src/worldstate/models/items/skin.rs deleted file mode 100644 index dabb839..0000000 --- a/src/worldstate/models/items/skin.rs +++ /dev/null @@ -1,33 +0,0 @@ -use serde::Deserialize; - -use super::Category; - -#[derive(Clone, Debug, Deserialize, PartialEq, Eq)] -#[serde(rename_all = "camelCase")] -pub struct Skin { - pub category: Category, - - pub description: String, - - pub image_name: String, - - pub masterable: bool, - - pub name: String, - - pub tradable: bool, - - #[serde(rename = "type")] - pub skin_type: String, - - pub unique_name: String, -} - -#[tokio::test] -async fn test_skin_query() -> Result<(), Box> { - let _skin = reqwest::get("https://api.warframestat.us/items/Academe%20Ink/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/warframe.rs b/src/worldstate/models/items/warframe.rs index 9f947fa..8d6100f 100644 --- a/src/worldstate/models/items/warframe.rs +++ b/src/worldstate/models/items/warframe.rs @@ -9,6 +9,7 @@ use super::{ Polarity, }; +#[allow(clippy::struct_excessive_bools)] /// A Warframe #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] @@ -113,12 +114,3 @@ pub enum Sex { #[serde(rename(deserialize = "Non-binary (Pluriform)"))] Neutral, } - -#[tokio::test] -async fn test_warframe_query() -> Result<(), Box> { - let _warframe = reqwest::get("https://api.warframestat.us/items/koumei/") - .await? - .json::() - .await?; - Ok(()) -} diff --git a/src/worldstate/models/items/weapon.rs b/src/worldstate/models/items/weapon.rs index cd70c4d..08dc1e7 100644 --- a/src/worldstate/models/items/weapon.rs +++ b/src/worldstate/models/items/weapon.rs @@ -9,7 +9,7 @@ use super::{ Introduced, Polarity, }; -use crate::worldstate::models::DamageType; +use crate::worldstate::models::damage_type::DamageType; fn as_f64<'de, D>(deserializer: D) -> Result where @@ -32,12 +32,27 @@ where } #[derive(Clone, Debug, Deserialize, PartialEq)] -#[serde(untagged)] +#[serde(tag = "type")] pub enum Weapon { + Rifle(RangedWeapon), + + Shotgun(RangedWeapon), + + Pistol(RangedWeapon), + + #[serde(rename = "Arch-Gun")] + ArchGun(RangedWeapon), + Melee(MeleeWeapon), - Ranged(RangedWeapon), + + #[serde(rename = "Arch-Melee")] + ArchMelee(MeleeWeapon), + + #[serde(rename = "Companion Weapon")] + CompanionWeapon(RangedWeapon), } +#[allow(clippy::struct_excessive_bools)] #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct RangedWeapon { @@ -113,12 +128,9 @@ pub struct RangedWeapon { pub trigger: Trigger, - #[serde(rename = "type")] - pub weapon_type: String, - pub unique_name: String, - /// This will be [Some], if [RangedWeapon::is_prime] is true + /// This will be [Some], if [`RangedWeapon::is_prime`] is true pub vaulted: Option, pub wikia_thumbnail: String, @@ -155,6 +167,7 @@ pub struct RangedAttack { pub falloff: Option, } +#[allow(clippy::struct_excessive_bools)] #[derive(Clone, Debug, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct MeleeWeapon { @@ -219,12 +232,9 @@ pub struct MeleeWeapon { pub tradable: bool, - #[serde(rename = "type")] - pub weapon_type: String, - pub unique_name: String, - /// This will be [Some], if [MeleeWeapon::is_prime] is true + /// This will be [Some], if [`MeleeWeapon::is_prime`] is true pub vaulted: Option, pub wikia_thumbnail: String, @@ -340,26 +350,34 @@ pub enum ShotType { Thrown, } -#[tokio::test] -async fn test_weapon_query_primary() -> Result<(), Box> { - let weapon = reqwest::get("https://api.warframestat.us/items/acceltra%20prime/") - .await? - .json::() - .await?; +#[cfg(test)] +mod test_weapon { + use rstest::rstest; + use serde_json::from_str; - assert!(matches!(weapon, Weapon::Ranged(_))); + use crate::worldstate::{ + fixtures::weapon::{ + melee_weapon_en, + ranged_weapon_en, + }, + models::items::weapon::Weapon, + }; - Ok(()) -} + #[rstest] + fn test_weapon_query_primary(ranged_weapon_en: &str) -> Result<(), Box> { + let weapon = from_str::(ranged_weapon_en)?; + + assert!(matches!(weapon, Weapon::Rifle(_))); -#[tokio::test] -async fn test_weapon_query_melee() -> Result<(), Box> { - let weapon = reqwest::get("https://api.warframestat.us/items/pathocyst/") - .await? - .json::() - .await?; + Ok(()) + } + + #[rstest] + fn test_weapon_query_melee(melee_weapon_en: &str) -> Result<(), Box> { + let weapon = from_str::(melee_weapon_en)?; - assert!(matches!(weapon, Weapon::Melee(_))); + assert!(matches!(weapon, Weapon::Melee(_))); - Ok(()) + Ok(()) + } } diff --git a/src/worldstate/models/macros.rs b/src/worldstate/models/macros.rs deleted file mode 100644 index 382080c..0000000 --- a/src/worldstate/models/macros.rs +++ /dev/null @@ -1,253 +0,0 @@ -macro_rules! model_builder { - ( - $(:$struct_doc:literal)? $struct_name:ident $(: $endpoint:literal)?, - rt = $rt:ident, - timed = $timed:tt; - $($(:$field_doc:literal)? $visibility:vis $field:ident : $field_type:ty $(= $rename:literal)? $(=> $deserialize_func:literal)?),*$(,)? - ) => { - $crate::ws::impl_model_struct!(@timed = $timed $(:$struct_doc)? $struct_name; $($(:$field_doc)? $visibility $field : $field_type $(= $rename)? $(=> $deserialize_func)?),*); - $crate::ws::impl_timed_event!($timed, $struct_name); - $( $crate::ws::impl_queryable!($rt, $struct_name, $endpoint); )? - - - - $( - impl $crate::ws::TypeDocumentation for $struct_name { - fn docs() -> &'static str { - $struct_doc - } - } - )? - }; -} - -// --------------------------------- -macro_rules! impl_model_struct { - ( - @timed = false :$struct_doc:literal $struct_name:ident; - $(:$field_doc:literal $visibility:vis $field:ident : $field_type:ty $(= $rename:literal)? $(=> $deserialize_func:literal)?),*) => { - #[derive(Debug, serde::Deserialize, PartialEq, PartialOrd, Clone)] - #[serde(rename_all = "camelCase")] - #[doc = $struct_doc] - pub struct $struct_name { - $( - $(#[serde(rename(deserialize = $rename))])? - $(#[serde(deserialize_with = $deserialize_func)])? - #[doc = $field_doc] - $visibility $field : $field_type, - )* - } - }; - - ( - @timed = true :$struct_doc:literal $struct_name:ident; - $(:$field_doc:literal $visibility:vis $field:ident : $field_type:ty $(= $rename:literal)? $(=> $deserialize_func:literal)?),*) => { - #[derive(Debug, serde::Deserialize, PartialEq, PartialOrd, Clone)] - #[serde(rename_all = "camelCase")] - #[doc = $struct_doc] - pub struct $struct_name { - $( - $(#[serde(rename(deserialize = $rename))])? - $(#[serde(deserialize_with = stringify!($deserialize_func))])? - #[doc = $field_doc] - $visibility $field : $field_type, - )* - - activation: chrono::DateTime, - - expiry: chrono::DateTime, - } - }; -} - -// --------------------------------- -macro_rules! impl_timed_event { - (true, $struct_name:ident) => { - impl $crate::ws::TimedEvent for $struct_name { - #[doc = "Returns the time when this event began"] - fn activation(&self) -> chrono::DateTime { - self.activation - } - - #[doc = "Returns the time when this event ends"] - fn expiry(&self) -> chrono::DateTime { - self.expiry - } - } - }; - - (false, $struct_name:ident) => {}; -} - -// --------------------------------- -macro_rules! enum_builder { - ($(:$enum_doc:literal)? $enum_name:ident; $(:$option_doc1:literal)? $enum_option1:ident $(= $enum_option_deserialize1:literal)?, $(:$option_doc2:literal)? $enum_option2:ident $(= $enum_option_deserialize2:literal)? $(,)?) => { - #[derive(Debug, serde::Deserialize, PartialEq, PartialOrd, Clone, Eq, Copy)] - $(#[doc = $enum_doc])? - pub enum $enum_name { - $( - #[doc = $option_doc1] - )? - $( - #[serde(rename(deserialize = $enum_option_deserialize1))] - )? - $enum_option1, - $( - #[doc = $option_doc2] - )? - $( - #[serde(rename(deserialize = $enum_option_deserialize2))] - )? - $enum_option2, - } - - impl std::fmt::Display for $enum_name { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - $enum_name::$enum_option1 => write!(f, stringify!($enum_option1)), - $enum_name::$enum_option2 => write!(f, stringify!($enum_option2)), - } - } - } - - impl $crate::ws::VariantDocumentation for $enum_name { - fn docs(&self) -> &'static str { - match self { - $enum_name::$enum_option1 =>concat!("", $($option_doc1)?), - $enum_name::$enum_option2 => concat!("", $($option_doc2)?) - } - } - } - - impl $crate::ws::TypeDocumentation for $enum_name { - fn docs() -> &'static str { - concat!("", $($enum_doc)?) - } - } - - impl $crate::ws::Opposite for $enum_name { - fn opposite(&self) -> Self { - match self { - $enum_name::$enum_option1 => $enum_name::$enum_option2, - $enum_name::$enum_option2 => $enum_name::$enum_option1 - } - } - } - }; - - ($(:$enum_doc:literal)? $enum_name:ident; $($(:$option_doc:literal)? $enum_option:ident $(= $enum_option_deserialize:literal)?),*$(,)?) => { - #[derive(Debug, serde::Deserialize, PartialEq, PartialOrd, Clone, Eq, Copy)] - $(#[doc = $enum_doc])? - pub enum $enum_name { - $( - $( - #[doc = $option_doc] - )? - $( - #[serde(rename(deserialize = $enum_option_deserialize))] - )? - $enum_option, - )* - } - - impl std::fmt::Display for $enum_name { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - $($enum_name::$enum_option => write!(f, stringify!($enum_option))),* - } - } - } - - impl $crate::ws::VariantDocumentation for $enum_name { - fn docs(&self) -> &'static str { - match self { - $($enum_name::$enum_option => concat!("", $($option_doc)?)),* - } - } - } - - impl $crate::ws::TypeDocumentation for $enum_name { - fn docs() -> &'static str { - concat!("", $($enum_doc)?) - } - } - }; - - ($(:$enum_doc:literal)? $enum_name:ident; $($(:$option_doc:literal)? $enum_option:ident $(= $enum_option_deserialize:literal)? $(: $enum_option_num_value:expr)?),*$(,)?) => { - #[derive(Debug, serde_repr::Deserialize_repr, PartialEq, PartialOrd, Clone, Eq, Copy)] - #[repr(u8)] - $(#[doc = $enum_doc])? - pub enum $enum_name { - $( - $( - #[doc = $option_doc] - )? - $( - #[serde(rename(deserialize = $enum_option_deserialize))] - )? - $enum_option $(= $enum_option_num_value)?, - )* - } - - impl std::fmt::Display for $enum_name { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - $($enum_name::$enum_option => write!(f, stringify!($enum_option))),* - } - } - } - - impl $crate::ws::VariantDocumentation for $enum_name { - fn docs(&self) -> &'static str { - match self { - $($enum_name::$enum_option => concat!("", $($option_doc)?)),* - } - } - } - - impl $crate::ws::TypeDocumentation for $enum_name { - fn docs() -> &'static str { - concat!("", $($enum_doc)?) - } - } - } -} - -macro_rules! impl_queryable { - (array, $type:ty, $endpoint:literal) => { - $crate::ws::impl_queryable!(@endpoint $type, $endpoint); - impl $crate::ws::Queryable for $type { - type Return = Vec<$type>; - } - }; - - (obj, $type:ty, $endpoint:literal) => { - $crate::ws::impl_queryable!(@endpoint $type, $endpoint); - impl $crate::ws::Queryable for $type { - type Return = $type; - } - }; - - (@endpoint $struct_name:ty, $endpoint:literal) => { - impl $crate::ws::Endpoint for $struct_name { - fn endpoint_en() -> &'static str { - concat!("https://api.warframestat.us/pc", $endpoint, "/?language=en") - } - - #[cfg(feature = "multilangual")] - fn endpoint(language: $crate::ws::Language) -> String { - format!( - "https://api.warframestat.us/pc{}/?language={}", - $endpoint, - language - ) - } - } - }; -} - -pub(crate) use enum_builder; -pub(crate) use impl_model_struct; -pub(crate) use impl_queryable; -pub(crate) use impl_timed_event; -pub(crate) use model_builder; diff --git a/src/worldstate/models/mission.rs b/src/worldstate/models/mission.rs index 9e8c6e2..725fa29 100644 --- a/src/worldstate/models/mission.rs +++ b/src/worldstate/models/mission.rs @@ -1,73 +1,71 @@ +use warframe_macros::model; + use super::{ - macros::model_builder, - Faction, - MissionType, - Reward, + faction::Faction, + mission_type::MissionType, + reward::Reward, }; -model_builder! { - :"A mission" - Mission, - rt = obj, - timed = false; - - :"The reward of this mission" +/// A mission +#[model] +pub struct Mission { + /// The reward of this mission pub reward: Reward, - :"The i18n of the node" + /// The i18n of the node pub node: String, - :"The name of the node" + /// The name of the node pub node_key: String, - :"The i18n faction you are up against" + /// The i18n faction you are up against pub faction: String, - :"The faction you are up against" + /// The faction you are up against pub faction_key: Faction, - :"The minimum level of the enemy" + /// The minimum level of the enemy pub min_enemy_level: i32, - :"The maximum level of the enemy" + /// The maximum level of the enemy pub max_enemy_level: i32, - :"The maximum wave you can get to" + /// The maximum wave you can get to pub max_wave_num: Option, - :"The i18n type of the mission" + /// The i18n type of the mission pub r#type: String, - :"The type of the mission" + /// The type of the mission pub type_key: MissionType, - :"Whether the mission is a nightmare mission" + /// Whether the mission is a nightmare mission pub nightmare: bool, - :"Whether the mission requires an archwing" + /// Whether the mission requires an archwing pub archwing_required: bool, - :"Whether the mission is a sharkwing mission" + /// Whether the mission is a sharkwing mission pub is_sharkwing: bool, - :"The enemy spec" + /// The enemy spec pub enemy_spec: String, - :"Any level override" + /// Any level override pub level_override: String, - :"Any additional spawners" + /// Any additional spawners pub advanced_spawners: Vec, - :"Items required to enter the mission" + /// Items required to enter the mission pub required_items: Vec, - :"Whether the required items are consumed" + /// Whether the required items are consumed pub consume_required_items: Option, - :"Affectors of this mission" + /// Affectors of this mission pub level_auras: Vec, - :"Description of the mission" - pub description: Option + /// Description of the mission + pub description: Option, } diff --git a/src/worldstate/models/mission_type.rs b/src/worldstate/models/mission_type.rs index 741be22..c5e02d7 100644 --- a/src/worldstate/models/mission_type.rs +++ b/src/worldstate/models/mission_type.rs @@ -1,89 +1,108 @@ -use super::macros::enum_builder; -enum_builder! { - :"A Mission Type in Warframe" - MissionType; - :"AncientRetribution" - AncientRetribution = "Ancient Retribution", - :"Arena" +use warframe_macros::model; + +/// A Mission Type in Warframe +#[model] +pub enum MissionType { + /// AncientRetribution + #[serde(rename = "Ancient Retribution")] + AncientRetribution, + /// Arena Arena, - :"Assassination" + /// Assassination Assassination, - :"Assault" + /// Assault Assault, - :"Capture" + /// Capture Capture, - :"Conclave" + /// Conclave Conclave, - :"DarkSectorDefection" - DarkSectorDefection = "Dark Sector Defection", - :"DarkSectorDefense" - DarkSectorDefense = "Dark Sector Defense", - :"DarkSectorDisruption" - DarkSectorDisruption = "Dark Sector Disruption", - :"DarkSectorExcavation" - DarkSectorExcavation = "Dark Sector Excavation", - :"DarkSectorSabotage" - DarkSectorSabotage = "Dark Sector Sabotage", - :"DarkSectorSurvival" - DarkSectorSurvival = "Dark Sector Survival", - :"Defense" + /// DarkSectorDefection + #[serde(rename = "Dark Sector Defection")] + DarkSectorDefection, + /// DarkSectorDefense + #[serde(rename = "Dark Sector Defense")] + DarkSectorDefense, + /// DarkSectorDisruption + #[serde(rename = "Dark Sector Disruption")] + DarkSectorDisruption, + /// DarkSectorExcavation + #[serde(rename = "Dark Sector Excavation")] + DarkSectorExcavation, + /// DarkSectorSabotage + #[serde(rename = "Dark Sector Sabotage")] + DarkSectorSabotage, + /// DarkSectorSurvival + #[serde(rename = "Dark Sector Survival")] + DarkSectorSurvival, + /// Defense Defense, - :"Disruption" + /// Disruption Disruption, - :"Excavation" + /// Excavation Excavation, - :"ExterminationArchwing" - ExterminationArchwing = "Extermination (Archwing)", - :"Extermination" + /// ExterminationArchwing + #[serde(rename = "Extermination (Archwing)")] + ExterminationArchwing, + /// Extermination Extermination, - :"FreeRoam" - FreeRoam = "Free Roam", - :"Hijack" + /// FreeRoam + #[serde(rename = "Free Roam")] + FreeRoam, + /// Hijack Hijack, - :"Hive" + /// Hive Hive, - :"HiveSabotage" - HiveSabotage = "Hive Sabotage", - :"Interception" + /// HiveSabotage + #[serde(rename = "Hive Sabotage")] + HiveSabotage, + /// Interception Interception, - :"InterceptionArchwing" - InterceptionArchwing = "Interception (Archwing)", - :"MobileDefense" - MobileDefense = "Mobile Defense", - :"MobileDefenseArchwing" - MobileDefenseArchwing = "Mobile Defense (Archwing)", - :"OrokinSabotage" - OrokinSabotage = "Orokin Sabotage", - :"Orphix" + /// InterceptionArchwing + #[serde(rename = "Interception (Archwing)")] + InterceptionArchwing, + /// MobileDefense + #[serde(rename = "Mobile Defense")] + MobileDefense, + /// MobileDefenseArchwing + #[serde(rename = "Mobile Defense (Archwing)")] + MobileDefenseArchwing, + /// OrokinSabotage + #[serde(rename = "Orokin Sabotage")] + OrokinSabotage, + /// Orphix Orphix, - :"PursuitArchwing" - PursuitArchwing = "Pursuit (Archwing)", - :"Relay" + /// PursuitArchwing + #[serde(rename = "Pursuit (Archwing)")] + PursuitArchwing, + /// Relay Relay, - :"Rescue" + /// Rescue Rescue, - :"RushArchwing" - RushArchwing = "Rush (Archwing)", - :"Sabotage" + /// RushArchwing + #[serde(rename = "Rush (Archwing)")] + RushArchwing, + /// Sabotage Sabotage, - :"SabotageArchwing" - SabotageArchwing = "Sabotage (Archwing)", - :"Skirmish" + /// SabotageArchwing + #[serde(rename = "Sabotage (Archwing)")] + SabotageArchwing, + /// Skirmish Skirmish, - :"Spy" + /// Spy Spy, - :"Survival" + /// Survival Survival, - :"Volatile" + /// Volatile Volatile, - :"Alchemy" + /// Alchemy Alchemy, - :"Corruption" + /// Corruption Corruption, - :"VoidCascade" - VoidCascade = "Void Cascade", - :"Defection" + /// VoidCascade + #[serde(rename = "Void Cascade")] + VoidCascade, + /// Defection Defection, - :"Unknown" + /// Unknown Unknown, } diff --git a/src/worldstate/models/mod.rs b/src/worldstate/models/mod.rs index 23fe7c8..e8e7d1c 100644 --- a/src/worldstate/models/mod.rs +++ b/src/worldstate/models/mod.rs @@ -4,7 +4,7 @@ //! //! You can query every model that implements //! [Queryable](crate::worldstate::models::base::Queryable) -//! [CLient](crate::worldstate::client::Client). # Querying... +//! [`Client`](crate::worldstate::client::Client). # Querying... //! //! ### ...through the client //! To query models through the provided client, see [Client](crate::worldstate::client::Client) @@ -12,130 +12,125 @@ //! ### ...via the [Queryable] trait //! ```rust //! use warframe::worldstate::{ -//! prelude as wf, -//! prelude::Queryable, +//! Client, +//! Error, +//! Queryable, +//! queryable::{ +//! Cetus, +//! Fissure, +//! }, //! }; //! #[tokio::main] -//! async fn main() -> Result<(), wf::ApiError> { +//! async fn main() -> Result<(), Error> { //! let reqwest_client = reqwest::Client::new(); //! -//! let cetus: wf::Cetus = wf::Cetus::query(&reqwest_client).await?; -//! let fissures: Vec = wf::Fissure::query(&reqwest_client).await?; +//! let cetus: Cetus = Cetus::query(&reqwest_client).await?; +//! let fissures: Vec = Fissure::query(&reqwest_client).await?; //! //! Ok(()) //! } //! ``` -mod alert; -mod arbitration; -mod archon_hunt; +pub mod alert; +pub mod arbitration; +pub mod archon_hunt; pub mod base; -mod cambion_drift; -mod cetus; -mod construction_progress; -mod daily_deal; -mod event; -mod faction; -mod fissure; -mod flash_sale; +pub mod cambion_drift; +pub mod cetus; +pub mod construction_progress; +pub mod daily_deal; +pub mod event; +pub mod faction; +pub mod fissure; +pub mod flash_sale; pub mod items; // mod global_upgrades; -mod damage_type; -mod invasion; -pub(crate) mod macros; -mod mission; -mod mission_type; -mod news; -mod nightwave; -mod orb_vallis; -mod reward; -mod reward_type; -mod sortie; -mod steel_path; -mod syndicate; -mod syndicate_mission; -mod void_trader; +pub mod damage_type; +pub mod deep_archimedea; +pub mod global_upgrades; +pub mod invasion; +pub mod mission; +pub mod mission_type; +pub mod news; +pub mod nightwave; +pub mod orb_vallis; +pub mod reward; +pub mod reward_type; +pub mod sortie; +pub mod steel_path; +pub mod syndicate; +pub mod syndicate_mission; +pub mod void_trader; -pub use alert::Alert; -pub use arbitration::Arbitration; -pub use archon_hunt::{ - ArchonHunt, - ArchonHuntMission, -}; -pub use base::*; -pub use cambion_drift::{ - CambionDrift, - CambionDriftState, -}; -pub use cetus::{ - Cetus, - CetusState, -}; -// pub use global_upgrades::GlobalUpgrade; -pub use construction_progress::ConstructionProgress; -pub use daily_deal::DailyDeal; -pub use damage_type::{ - CombinedElementalDamage, - DamageType, - ElementalDamage, - PhysicalDamage, -}; -pub use faction::Faction; -pub use fissure::{ - Fissure, - Tier, -}; -pub use flash_sale::FlashSale; -pub use invasion::{ - Invasion, - InvasionMember, -}; -pub use mission::Mission; -pub use mission_type::MissionType; -pub use news::News; -pub use nightwave::{ - Nightwave, - NightwaveChallenge, - NightwaveChallengeType, -}; -pub use orb_vallis::{ - OrbVallis, - OrbVallisState, -}; -pub use reward::{ - CountedItem, - Reward, -}; -pub use reward_type::RewardType; -pub use sortie::{ - Sortie, - SortieMission, -}; -pub use steel_path::{ - SteelPath, - SteelPathShopItem, -}; -pub use syndicate::Syndicate; -pub use syndicate_mission::{ - SyndicateJob, - SyndicateMission, -}; -pub use void_trader::{ - VoidTrader, - VoidTraderInventoryItem, +use items::Item; + +use super::{ + client::Client, + error::Error, + language::Language, }; -#[tokio::test] -async fn test_doc_example() -> Result<(), crate::worldstate::prelude::ApiError> { - use crate::worldstate::{ - prelude as wf, - prelude::Queryable, - }; +#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, serde::Deserialize)] +pub struct ItemStringWrapper(String); + +impl ItemStringWrapper { + /// Queries an item using the provided client. + /// + /// This is a convenience function. + /// + /// # Arguments + /// + /// * `client` - The client used to query the item. + /// + /// # Returns + /// + /// A `Result` containing an `Option` if the query is successful, or an `Error` if it + /// fails. + /// + /// # Errors + /// + /// This function will return an error if the client fails to query the item. + pub async fn query(&self, client: Client) -> Result, Error> { + client.query_item(&self.0).await + } - let client = reqwest::Client::new(); + /// Queries an item using the provided client with the provided localization + /// + /// This is a convenience function. + /// + /// # Arguments + /// + /// * `client` - The client used to query the item. + /// + /// # Returns + /// + /// A `Result` containing an `Option` if the query is successful, or an `Error` if it + /// fails. + /// + /// # Errors + /// + /// This function will return an error if the client fails to query the item. + pub async fn query_using_lang( + &self, + client: Client, + language: Language, + ) -> Result, Error> { + client.query_item_using_lang(&self.0, language).await + } - let _cetus: wf::Cetus = Cetus::query(&client).await?; - let _fissures: Vec = Fissure::query(&client).await?; + #[must_use] + pub fn inner(&self) -> &str { + &self.0 + } + + #[must_use] + pub fn into_inner(self) -> String { + self.0 + } +} - Ok(()) +impl AsRef for ItemStringWrapper { + fn as_ref(&self) -> &str { + &self.0 + } } diff --git a/src/worldstate/models/news.rs b/src/worldstate/models/news.rs index 4a3990c..67a148d 100644 --- a/src/worldstate/models/news.rs +++ b/src/worldstate/models/news.rs @@ -2,75 +2,65 @@ use chrono::{ DateTime, Utc, }; +use warframe_macros::model; -use super::macros::model_builder; - -model_builder! { - :"A news item" - News: "/news", - rt = array, - timed = false; - - :"The id of the News" +/// A news item +#[model(endpoint = "/news", return_style = Array)] +pub struct News { + /// The id of the News pub id: String, - :"The message associated to the News" + /// The message associated to the News pub message: String, - :"The link to the image associated with the News" + /// The link to the image associated with the News pub image_link: String, - :"Whether the News are prioritized" + /// Whether the News are prioritized pub priority: bool, - :"Whether the News are related to an update" + /// Whether the News are related to an update pub update: bool, - :"Whether the News are related to a stream" + /// Whether the News are related to a stream pub stream: bool, - :"A string describing this element" + /// A string describing this element pub as_string: String, - :"The date the News were posted" + /// The date the News were posted pub date: DateTime, - :"When the event that is associated with the News begins" + /// When the event that is associated with the News begins pub start_date: Option>, - :"When the event that is associated with the News ends" + /// When the event that is associated with the News ends pub end_date: Option>, } #[cfg(test)] -mod test { +mod test_news { + use rstest::rstest; + use serde_json::from_str; + use super::News; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::news::{ + news, + news_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_news() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_newss) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(news_en: &str) { + from_str::(news_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_news_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_newss) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(news: &str) { + from_str::(news).unwrap(); } } diff --git a/src/worldstate/models/nightwave.rs b/src/worldstate/models/nightwave.rs index 3110e50..3229a76 100644 --- a/src/worldstate/models/nightwave.rs +++ b/src/worldstate/models/nightwave.rs @@ -1,56 +1,56 @@ -use super::{ - macros::{ - enum_builder, - model_builder, - }, - RewardType, -}; - -enum_builder! { - :"Represents the difficulty of a [Nightwave Challenge](NightwaveChallenge)" - NightwaveChallengeType; - :"Easy" +use warframe_macros::model; + +use super::reward_type::RewardType; + +/// Represents the difficulty of a [Nightwave Challenge](NightwaveChallenge) +#[model] +pub enum NightwaveChallengeType { + /// Easy Easy, - :"Medium" + /// Medium Medium, - :"Hard" + /// Hard Hard, - :"Unknown" + /// Unknown Unknown, } -model_builder! { - :"A Nightwave challenge" - NightwaveChallenge, - rt = obj, - timed = true; - - :"The ID of this challenge" +/// A Nightwave challenge +#[model(timed)] +pub struct NightwaveChallenge { + /// The ID of this challenge pub id: String, - :"Whether it is a daily mission or not" + /// Whether it is a daily mission or not pub is_daily: bool, - :"Whether it is an elite mission or not" + /// Whether it is an elite mission or not pub is_elite: bool, - :"The Description of this challenge (what you need to do in order to complete it)" - description: String = "desc", + /// The Description of this challenge (what you need to do in order to complete it) + #[serde(rename = "desc")] + pub description: String, - :"The Title of this Challenge" + /// The Title of this Challenge pub title: String, - :"The amount of reputation (aka standing) you get by completing this mission" + /// The amount of reputation (aka standing) you get by completing this mission pub reputation: i32, - :"Whether it is permanent or not" + /// Whether it is permanent or not pub is_permanent: bool, } impl NightwaveChallenge { /// Gets the difficulty for this challenge + #[must_use] pub fn challenge_type(&self) -> NightwaveChallengeType { - use NightwaveChallengeType::*; + use NightwaveChallengeType::{ + Easy, + Hard, + Medium, + Unknown, + }; if self.is_permanent { return Unknown; } @@ -64,60 +64,51 @@ impl NightwaveChallenge { } } -model_builder! { - :"The Current cycle and challenges of Nightwave, a battle-pass-esque rotation and challenge system" - Nightwave: "/nightwave", - rt = obj, - timed = true; - - :"The ID of the Nightwave" +/// The Current cycle and challenges of Nightwave, a battle-pass-esque rotation and challenge system +#[model(endpoint = "/nightwave", return_style = Object, timed)] +pub struct Nightwave { + /// The ID of the Nightwave pub id: String, - :"The Season of this Nightwave" + /// The Season of this Nightwave pub season: i32, - :"The Tag of this Nightwave" + /// The Tag of this Nightwave pub tag: String, - :"The phase of the nightwave" + /// The phase of the nightwave pub phase: i32, - :"The reward types" + /// The reward types pub reward_types: Vec, - :"The active challenges (most likely the weekly rotation)" - pub active_challenges: Vec + /// The active challenges (most likely the weekly rotation) + pub active_challenges: Vec, } #[cfg(test)] -mod test { +mod test_nightwave { + use rstest::rstest; + use serde_json::from_str; + use super::Nightwave; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::nightwave::{ + nightwave, + nightwave_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_nightwave() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_nightwave) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(nightwave_en: &str) { + from_str::(nightwave_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_nightwave_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_nightwave) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(nightwave: &str) { + from_str::(nightwave).unwrap(); } } diff --git a/src/worldstate/models/orb_vallis.rs b/src/worldstate/models/orb_vallis.rs index 19c08db..e1aa272 100644 --- a/src/worldstate/models/orb_vallis.rs +++ b/src/worldstate/models/orb_vallis.rs @@ -1,60 +1,48 @@ -use super::macros::{ - enum_builder, - model_builder, -}; - -enum_builder! { - :"Represents the state on Orb Vallis" - OrbVallisState; - - :"Warm" - Warm = "warm", - :"Cold" - Cold = "cold" +use warframe_macros::model; + +/// Represents the state on Orb Vallis +#[model] +#[serde(rename_all = "lowercase")] +pub enum OrbVallisState { + /// Warm + Warm, + /// Cold + Cold, } -model_builder! { - :"The current cycle of the Orb Vallis warm/cold cycle" - OrbVallis: "/vallisCycle", - rt = obj, - timed = true; - - :"Unique identifier for this object/event/thing" +/// The current cycle of the Orb Vallis warm/cold cycle +#[model(endpoint = "/vallisCycle", return_style = Object, timed)] +pub struct OrbVallis { + /// Unique identifier for this object/event/thing pub id: String, - :"The state of the orb vallis (warm/cold)" - pub state: OrbVallisState + /// The state of the orb vallis (warm/cold) + pub state: OrbVallisState, } #[cfg(test)] -mod test { +mod test_orb_vallis { + use rstest::rstest; + use serde_json::from_str; + use super::OrbVallis; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::orb_vallis::{ + orb_vallis, + orb_vallis_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_orbvallis() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_orbvallis) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(orb_vallis_en: &str) { + from_str::(orb_vallis_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_orbvallis_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_orbvallis) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(orb_vallis: &str) { + from_str::(orb_vallis).unwrap(); } } diff --git a/src/worldstate/models/reward.rs b/src/worldstate/models/reward.rs index a5ca36a..c04eabc 100644 --- a/src/worldstate/models/reward.rs +++ b/src/worldstate/models/reward.rs @@ -1,42 +1,36 @@ -use super::macros::model_builder; +use warframe_macros::model; -model_builder! { - :"Small info about how many of which items are given" - CountedItem, - rt = array, - timed = false; - - :"How many of this item" +/// Small info about how many of which items are given +#[model] +pub struct CountedItem { + /// How many of this item pub count: i32, - :"The item type" - pub r#type: String + /// The item type + pub r#type: String, } -model_builder! { - :"The reward of this event" - Reward, - rt = obj, - timed = false; - - :"Items that have a quantity attached" +/// The reward of this event +#[model] +pub struct Reward { + /// Items that have a quantity attached pub counted_items: Vec, - :"Thumbnail URL" + /// Thumbnail URL pub thumbnail: String, - :"RGB value as an int assigned to this reward" + /// RGB value as an int assigned to this reward pub color: i32, - :"Amount of credits awarded" + /// Amount of credits awarded pub credits: i32, - :"string representation of the reward" + /// string representation of the reward pub as_string: String, - :"Items' names possible to be won" + /// Items' names possible to be won pub items: Vec, - :"formatted string describing all included items" + /// formatted string describing all included items pub item_string: String, } diff --git a/src/worldstate/models/reward_type.rs b/src/worldstate/models/reward_type.rs index 1ec86fa..a5dc3d8 100644 --- a/src/worldstate/models/reward_type.rs +++ b/src/worldstate/models/reward_type.rs @@ -1,92 +1,135 @@ -use super::macros::enum_builder; - -enum_builder! { - :"Represents different reward types" - RewardType; - :"Vauban" - Vauban = "vauban", - :"Vandal" - Vandal = "vandal", - :"Wraith" - Wraith = "wraith", - :"Skin" - Skin = "skin", - :"Helmet" - Helmet = "helmet", - :"Nitain" - Nitain = "nitain", - :"Mutalist" - Mutalist = "mutalist", - :"Weapon" - Weapon = "weapon", - :"Fieldron" - Fieldron = "fieldron", - :"Detonite" - Detonite = "detonite", - :"Mutagen" - Mutagen = "mutagen", - :"Aura" - Aura = "aura", - :"NeuralSensors" - NeuralSensors = "neuralSensors", - :"OrokinCell" - OrokinCell = "orokinCell", - :"AlloyPlate" - AlloyPlate = "alloyPlate", - :"Circuits" - Circuits = "circuits", - :"ControlModule" - ControlModule = "controlModule", - :"Ferrite" - Ferrite = "ferrite", - :"Gallium" - Gallium = "gallium", - :"Morphics" - Morphics = "morphics", - :"NanoSpores" - NanoSpores = "nanoSpores", - :"Oxium" - Oxium = "oxium", - :"Rubedo" - Rubedo = "rubedo", - :"Salvage" - Salvage = "salvage", - :"Plastids" - Plastids = "plastids", - :"PolymerBundle" - PolymerBundle = "polymerBundle", - :"ArgonCrystal" - ArgonCrystal = "argonCrystal", - :"Cryotic" - Cryotic = "cryotic", - :"Tellurium" - Tellurium = "tellurium", - :"Neurodes" - Neurodes = "neurodes", - :"Nightmare" - Nightmare = "nightmare", - :"Endo" - Endo = "endo", - :"Reactor" - Reactor = "reactor", - :"Catalyst" - Catalyst = "catalyst", - :"Forma" - Forma = "forma", - :"Synthula" - Synthula = "synthula", - :"Exilus" - Exilus = "exilus", - :"Riven" - Riven = "riven", - :"KavatGene" - KavatGene = "kavatGene", - :"KubrowEgg" - KubrowEgg = "kubrowEgg", - :"Traces" - Traces = "traces", - :"Other" - Other = "other", - :"Credits" - Credits = "credits", +use warframe_macros::model; + +/// Represents different reward types +#[model] +#[serde(rename_all = "camelCase")] +pub enum RewardType { + /// Vauban + Vauban, + + /// Vandal + Vandal, + + /// Wraith + Wraith, + + /// Skin + Skin, + + /// Helmet + Helmet, + + /// Nitain + Nitain, + + /// Mutalist + Mutalist, + + /// Weapon + Weapon, + + /// Fieldron + Fieldron, + + /// Detonite + Detonite, + + /// Mutagen + Mutagen, + + /// Aura + Aura, + + /// NeuralSensors + NeuralSensors, + + /// OrokinCell + OrokinCell, + + /// AlloyPlate + AlloyPlate, + + /// Circuits + Circuits, + + /// ControlModule + ControlModule, + + /// Ferrite + Ferrite, + + /// Gallium + Gallium, + + /// Morphics + Morphics, + + /// NanoSpores + NanoSpores, + + /// Oxium + Oxium, + + /// Rubedo + Rubedo, + + /// Salvage + Salvage, + + /// Plastids + Plastids, + + /// PolymerBundle + PolymerBundle, + + /// ArgonCrystal + ArgonCrystal, + + /// Cryotic + Cryotic, + + /// Tellurium + Tellurium, + + /// Neurodes + Neurodes, + + /// Nightmare + Nightmare, + + /// Endo + Endo, + + /// Reactor + Reactor, + + /// Catalyst + Catalyst, + + /// Forma + Forma, + + /// Synthula + Synthula, + + /// Exilus + Exilus, + + /// Riven + Riven, + + /// KavatGene + KavatGene, + + /// KubrowEgg + KubrowEgg, + + /// Traces + Traces, + + /// Other + Other, + + /// Credits + Credits, } diff --git a/src/worldstate/models/sortie.rs b/src/worldstate/models/sortie.rs index 91976bc..6ed5786 100644 --- a/src/worldstate/models/sortie.rs +++ b/src/worldstate/models/sortie.rs @@ -1,75 +1,64 @@ -use super::{ - macros::model_builder, - Faction, -}; +use warframe_macros::model; -model_builder! { - :"A Mission corresponding to a Sortie" - SortieMission, - rt = obj, - timed = false; +use super::faction::Faction; - :"The i18n Mission type of this mission" +/// A Mission corresponding to a Sortie +#[model] +pub struct SortieMission { + /// The i18n Mission type of this mission pub mission_type: String, - :"The Modifier of this mission (e.g. Augmented Enemy Armor)" + /// The Modifier of this mission (e.g. Augmented Enemy Armor) pub modifier: String, - :"The description of the modifier of this mission (e.g. Enemies have Improved/Added armor. Corrosive Projection effects are halved.)" + /// The description of the modifier of this mission (e.g. Enemies have Improved/Added armor. + /// Corrosive Projection effects are halved.) pub modifier_description: String, - :"The i18n of the name" + /// The i18n of the name pub node: String, } -model_builder! { - :"Data about the missions for the current sortie" - Sortie: "/sortie", - rt = obj, - timed = true; - - :"Unique identifier for this object/event/thing" +/// Data about the missions for the current sortie +#[model(endpoint = "/sortie", return_style = Object, timed)] +pub struct Sortie { + /// Unique identifier for this object/event/thing pub id: String, - :"The name of the boss" + /// The name of the boss pub boss: String, - :"The faction you are up against" + /// The faction you are up against pub faction: Faction, - :"The 3 missions corresponding to this sortie" - pub missions: [SortieMission; 3] = "variants", + /// The 3 missions corresponding to this sortie + #[serde(rename = "variants")] + pub missions: [SortieMission; 3], } #[cfg(test)] -mod test { +mod test_sortie { + use rstest::rstest; + use serde_json::from_str; + use super::Sortie; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::sortie::{ + sortie, + sortie_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_sortie() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_sortie) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(sortie_en: &str) { + from_str::(sortie_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_sortie_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_sortie) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(sortie: &str) { + from_str::(sortie).unwrap(); } } diff --git a/src/worldstate/models/steel_path.rs b/src/worldstate/models/steel_path.rs index 4eae183..82fdb7a 100644 --- a/src/worldstate/models/steel_path.rs +++ b/src/worldstate/models/steel_path.rs @@ -1,30 +1,52 @@ -use super::macros::model_builder; +use warframe_macros::model; -model_builder! { - :"An Item in Teshin's Shop" - SteelPathShopItem, - rt = obj, - timed = false; - - :"The i18n Name of the Item" +/// An Item in Teshin's Shop +#[model] +pub struct SteelPathShopItem { + /// The i18n Name of the Item pub name: String, - :"The amount of Steel Essence this Item costs" + /// The amount of Steel Essence this Item costs pub cost: i32, } -model_builder! { - :"Data about the missions for the current sortie" - SteelPath: "/steelPath", - rt = obj, - timed = true; - - :"The current weekly offer" - pub current_offer: SteelPathShopItem = "currentReward", +/// Data about steel path offerings +#[model(endpoint = "/steelPath", return_style = Object, timed)] +pub struct SteelPath { + /// The current weekly offer + #[serde(rename = "currentReward")] + pub current_offer: SteelPathShopItem, - :"The Rotation of Items Teshin offers" + /// The Rotation of Items Teshin offers pub rotation: Vec, - :"Items that are always available" - pub evergreens: Vec + /// Items that are always available + pub evergreens: Vec, +} + +#[cfg(test)] +mod test_steel_path { + use rstest::rstest; + use serde_json::from_str; + + use super::SteelPath; + use crate::worldstate::{ + Queryable, + fixtures::steel_path::{ + steel_path, + steel_path_en, + }, + }; + + type R = ::Return; + + #[rstest] + fn test(steel_path_en: &str) { + from_str::(steel_path_en).unwrap(); + } + + #[rstest] + fn test_ml(steel_path: &str) { + from_str::(steel_path).unwrap(); + } } diff --git a/src/worldstate/models/syndicate.rs b/src/worldstate/models/syndicate.rs index 9dca394..de661ba 100644 --- a/src/worldstate/models/syndicate.rs +++ b/src/worldstate/models/syndicate.rs @@ -1,40 +1,55 @@ -use super::macros::enum_builder; +use warframe_macros::model; -enum_builder! { - :"A Syndicate in Warframe" - Syndicate; - :"ArbitersOfHexis" - ArbitersOfHexis = "Arbiters of Hexis", - :"CephalonSuda" - CephalonSuda = "Cephalon Suda", - :"Assassins" - Assassins = "Assassins", - :"Nightwave" - Nightwave = "Nightwave", - :"Ostrons" - Ostrons = "Ostrons", - :"VoxSolaris" - VoxSolaris = "Vox Solaris", - :"SolarisUnited" - SolarisUnited = "Solaris United", - :"PerrinSequence" - PerrinSequence = "Perrin Sequence", - :"SteelMeridian" - SteelMeridian = "Steel Meridian", - :"RedVeil" - RedVeil = "Red Veil", - :"NewLoka" - NewLoka = "New Loka", - :"Holdfasts" - Holdfasts = "The Holdfasts", - :"Entrati" +/// A Syndicate in Warframe +#[model] +pub enum Syndicate { + /// ArbitersOfHexis + #[serde(rename = "Arbiters of Hexis")] + ArbitersOfHexis, + /// CephalonSuda + #[serde(rename = "Cephalon Suda")] + CephalonSuda, + /// Assassins + #[serde(rename = "Assassins")] + Assassins, + /// Nightwave + #[serde(rename = "Nightwave")] + Nightwave, + /// Ostrons + #[serde(rename = "Ostrons")] + Ostrons, + /// VoxSolaris + #[serde(rename = "Vox Solaris")] + VoxSolaris, + /// SolarisUnited + #[serde(rename = "Solaris United")] + SolarisUnited, + /// PerrinSequence + #[serde(rename = "Perrin Sequence")] + PerrinSequence, + /// SteelMeridian + #[serde(rename = "Steel Meridian")] + SteelMeridian, + /// RedVeil + #[serde(rename = "Red Veil")] + RedVeil, + /// NewLoka + #[serde(rename = "New Loka")] + NewLoka, + /// Holdfasts + #[serde(rename = "The Holdfasts")] + Holdfasts, + /// Entrati Entrati, - :"Cavia" - Cavia = "EntratiLabSyndicate", - :"VentKids" - VentKids = "Operations Syndicate", - :"KahlsGarrison" - KahlsGarrison = "Kahl's Garrison", - :"Necraloid" + /// Cavia + #[serde(rename = "EntratiLabSyndicate")] + Cavia, + /// VentKids + #[serde(rename = "Operations Syndicate")] + VentKids, + /// KahlsGarrison + #[serde(rename = "Kahl's Garrison")] + KahlsGarrison, + /// Necraloid Necraloid, } diff --git a/src/worldstate/models/syndicate_mission.rs b/src/worldstate/models/syndicate_mission.rs index 5640fe1..22f7b53 100644 --- a/src/worldstate/models/syndicate_mission.rs +++ b/src/worldstate/models/syndicate_mission.rs @@ -1,89 +1,77 @@ -use super::macros::model_builder; +use warframe_macros::model; type DateTime = chrono::DateTime; -model_builder! { - :"A Syndicate Job (aka Bounty)" - SyndicateJob, - rt = obj, - timed = false; - - :"Unique identifier for this object/event/thing" +/// A Syndicate Job (aka Bounty) +#[model] +pub struct SyndicateJob { + /// Unique identifier for this object/event/thing pub id: String, - :"The Reward Pool of the Bounty" + /// The Reward Pool of the Bounty pub reward_pool: Vec, - :"The type (or name) of the syndicate job" - pub job_type: String = "type", + /// The type (or name) of the syndicate job + #[serde(rename = "type")] + pub job_type: String, - :"The level of the Enemies in this job" + /// The level of the Enemies in this job pub enemy_levels: Vec, - :"The amount of standing you get after completing each stage" + /// The amount of standing you get after completing each stage pub standing_stages: Vec, - :"The minimum Mastery Rank required for this job" - pub minimum_mr: i32 = "minMR", + /// The minimum Mastery Rank required for this job + #[serde(rename = "minMR")] + pub minimum_mr: i32, - :"Expiry when this mission expires/disappears" - pub expiry: DateTime + /// Expiry when this mission expires/disappears + pub expiry: DateTime, } -model_builder! { - :"All Syndicate Missions (including Cetus, etc.)\nNote that they *may* be empty, in which case they are not valid." - SyndicateMission: "/syndicateMissions", - rt = array, - timed = true; - - :"Unique identifier for this object/event/thing" +/// All Syndicate Missions (including Cetus, etc.)\nNote that they *may* be empty, in which case +/// they are not valid. +#[model(endpoint = "/syndicateMissions", return_style = Array, timed)] +pub struct SyndicateMission { + /// Unique identifier for this object/event/thing pub id: String, - :"The i18n of the syndicate" + /// The i18n of the syndicate pub syndicate: String, - :"The Syndicate TYPE" + /// The Syndicate TYPE pub syndicate_key: String, - :"The Nodes some missions related to the syndicate are on" + /// The Nodes some missions related to the syndicate are on pub nodes: Vec, - :"The jobs this syndicate has to offer" - pub jobs: Vec + /// The jobs this syndicate has to offer + pub jobs: Vec, } #[cfg(test)] -mod test { +mod test_syndicate_mission { + use rstest::rstest; + use serde_json::from_str; + use super::SyndicateMission; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::syndicate_mission::{ + syndicate_mission, + syndicate_mission_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_syndicate() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_syndicates) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(syndicate_mission_en: &str) { + from_str::(syndicate_mission_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_syndicate_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client - .fetch_using_lang::(Language::ZH) - .await - { - Ok(_syndicates) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(syndicate_mission: &str) { + from_str::(syndicate_mission).unwrap(); } } diff --git a/src/worldstate/models/void_trader.rs b/src/worldstate/models/void_trader.rs index d506412..28f7f6e 100644 --- a/src/worldstate/models/void_trader.rs +++ b/src/worldstate/models/void_trader.rs @@ -1,66 +1,56 @@ -use super::macros::model_builder; +use warframe_macros::model; -model_builder! { - :"An Item in Baro's inventory" - VoidTraderInventoryItem, - rt = obj, - timed = false; +use super::ItemStringWrapper; - :"The item that is being sold" - pub item: String, +/// An Item in Baro's inventory +#[model] +pub struct VoidTraderInventoryItem { + /// The item that is being sold + pub item: ItemStringWrapper, - :"The Ducat cost of this item" + /// The Ducat cost of this item pub ducats: i32, - :"The Credit cost of this item" + /// The Credit cost of this item pub credits: i32, } -model_builder! { - :"Information on the current Void Trader offerings, or when he will arrive" - VoidTrader: "/voidTrader", - rt = obj, - timed = true; - - :"Unique identifier for this object/event/thing" +/// Information on the current Void Trader offerings, or when he will arrive +#[model(endpoint = "/voidTrader", return_style = Object, timed)] +pub struct VoidTrader { + /// Unique identifier for this object/event/thing pub id: String, - :"The i18n of the Node Baro will appear on" + /// The i18n of the Node Baro will appear on pub location: String, - :"Baro's Inventory" - pub inventory: Vec + /// Baro's Inventory + pub inventory: Vec, } #[cfg(test)] -mod test { +mod test_void_trader { + use rstest::rstest; + use serde_json::from_str; + use super::VoidTrader; use crate::worldstate::{ - client::Client, - error::ApiError, + Queryable, + fixtures::void_trader::{ + void_trader, + void_trader_en, + }, }; - #[cfg(not(feature = "multilangual"))] - #[tokio::test] - async fn test_voidtrader() -> Result<(), ApiError> { - let client = Client::new(); + type R = ::Return; - match client.fetch::().await { - Ok(_voidtrader) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test(void_trader_en: &str) { + from_str::(void_trader_en).unwrap(); } - #[cfg(feature = "multilangual")] - #[tokio::test] - async fn test_voidtrader_ml() -> Result<(), ApiError> { - use crate::worldstate::prelude::Language; - - let client = Client::new(); - - match client.fetch_using_lang::(Language::ZH).await { - Ok(_voidtrader) => Ok(()), - Err(why) => Err(why), - } + #[rstest] + fn test_ml(void_trader: &str) { + from_str::(void_trader).unwrap(); } } diff --git a/src/worldstate/utils.rs b/src/worldstate/utils.rs new file mode 100644 index 0000000..50b3b95 --- /dev/null +++ b/src/worldstate/utils.rs @@ -0,0 +1,44 @@ +/// Represents what has happened to the nested Item. +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] +pub enum Change { + /// The Item has been added to the collection + Added, + /// The Item has been removed the collection + Removed, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] +pub(crate) struct CrossDiff<'a, T> { + current: &'a [T], + incoming: &'a [T], +} + +impl<'a, T> CrossDiff<'a, T> +where + T: PartialEq, +{ + /// Creates a [`CrossDiff`] + pub fn new(current: &'a [T], incoming: &'a [T]) -> Self { + Self { current, incoming } + } + + /// Gets all the removed items + #[must_use] + pub fn removed(&self) -> Vec<(&'a T, Change)> { + self.current + .iter() + .filter(|&item| !self.incoming.contains(item)) + .map(|item| (item, Change::Removed)) + .collect() + } + + /// Gets all the added items + #[must_use] + pub fn added(&self) -> Vec<(&'a T, Change)> { + self.incoming + .iter() + .filter(|&item| !self.current.contains(item)) + .map(|item| (item, Change::Added)) + .collect() + } +} diff --git a/warframe-macros/Cargo.toml b/warframe-macros/Cargo.toml new file mode 100644 index 0000000..62321fb --- /dev/null +++ b/warframe-macros/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "warframe-macros" +version = "6.2.0" +edition = "2024" +description = "Macros for the `warframe` crate." +readme = "../README.md" +documentation = "https://docs.rs/warframe" +homepage = "https://docs.rs/warframe" +repository = "https://github.com/Mettwasser/warframe.rs" +license = "MIT" +rust-version = "1.85" + +[lib] +proc-macro = true + +[dependencies] +heck = "0.5.0" +manyhow = { version = "0.11.4" } +proc-macro2 = { version = "1.0.93" } +quote = { version = "1.0.38" } +syn = { version = "2.0.98", features = ["full"] } diff --git a/warframe-macros/src/lib.rs b/warframe-macros/src/lib.rs new file mode 100644 index 0000000..5aa1228 --- /dev/null +++ b/warframe-macros/src/lib.rs @@ -0,0 +1,23 @@ +mod model; + +use manyhow::manyhow; +use proc_macro::TokenStream; + +/// This is a macro to model a worldstate (api) object. +/// +/// Note that this macro will automatically put `#[serde(rename_all = "camelCase")]` on your struct. +/// +/// Additionally, it will derive `Debug, Clone, PartialEq, PartialOrd, serde::Deserialize` for +/// structs, and `Debug, PartialEq, PartialOrd, Clone, Eq, Copy, Hash, derive_more::Display` for +/// enums. +/// +/// # Args +/// - `endpoint = "/endpoint"` the endpoint to request +/// - `return_style = Array/Object` the JSON format returned by the API +/// - `timed (= true/false)` defaults to false. Adds an `activation` / `expiry` field and implements +/// [TimedEvent](../warframe/worldstate/trait.TimedEvent.html) +#[manyhow] +#[proc_macro_attribute] +pub fn model(args: TokenStream, item: TokenStream) -> syn::Result { + model::expand(args.into(), item.into()).map(Into::into) +} diff --git a/warframe-macros/src/model/enum_impl.rs b/warframe-macros/src/model/enum_impl.rs new file mode 100644 index 0000000..a1194b2 --- /dev/null +++ b/warframe-macros/src/model/enum_impl.rs @@ -0,0 +1,72 @@ +use std::collections::VecDeque; + +use proc_macro2::TokenStream; +use quote::quote; +use syn::{ + Expr, + ExprLit, + ItemEnum, + Lit, + spanned::Spanned, +}; + +pub fn parse_enum(_args: TokenStream, mut item: ItemEnum) -> syn::Result { + // this is here to be able to have the derives at the very top + let mut vdq = VecDeque::from(item.attrs.clone()); + vdq.push_front(syn::parse_quote!( #[derive(Debug, PartialEq, PartialOrd, Clone, Eq, Copy, Hash, derive_more::Display)] )); + + // check whether the enum has a discriminant, and maybe implement Deserialize_repr + match item + .variants + .first() + .ok_or_else(|| syn::Error::new(item.span(), "Needs at least 1 variant"))? + .discriminant + { + Some(( + _, + Expr::Lit(ExprLit { + lit: Lit::Int(_), .. + }), + )) => { + // repr(u32) for potentially needed flexibility + vdq.push_front(syn::parse_quote! { + #[derive(serde_repr::Deserialize_repr)] + }); + vdq.push_front(syn::parse_quote! { + #[repr(u32)] + }); + } + _ => vdq.push_front(syn::parse_quote!( #[derive(serde::Deserialize)] )), + }; + + let opposite_trait_impl = match item.variants.len() { + 2 => { + let (a, b) = ( + &item.variants.first().unwrap().ident, + &item.variants.last().unwrap().ident, + ); + + let type_name = &item.ident; + + Some(quote! { + impl crate::worldstate::models::base::Opposite for #type_name { + fn opposite(&self) -> Self { + match self { + #type_name::#a => #type_name::#b, + #type_name::#b => #type_name::#a, + } + } + } + }) + } + _ => None, + }; + + item.attrs = vdq.into(); + + Ok(quote! { + #item + + #opposite_trait_impl + }) +} diff --git a/warframe-macros/src/model/mod.rs b/warframe-macros/src/model/mod.rs new file mode 100644 index 0000000..f38029e --- /dev/null +++ b/warframe-macros/src/model/mod.rs @@ -0,0 +1,21 @@ +use enum_impl::parse_enum; +use proc_macro2::TokenStream; +use struct_impl::parse_struct; +use syn::{ + Item, + spanned::Spanned, +}; + +mod enum_impl; +mod struct_impl; + +pub fn expand(args: TokenStream, item: TokenStream) -> syn::Result { + match syn::parse2::(item)? { + Item::Enum(enum_item) => parse_enum(args, enum_item), + Item::Struct(struct_item) => parse_struct(args, struct_item), + item => Err(syn::Error::new( + item.span(), + "Only structs and enums are supported", + )), + } +} diff --git a/warframe-macros/src/model/struct_impl/args.rs b/warframe-macros/src/model/struct_impl/args.rs new file mode 100644 index 0000000..dd7179d --- /dev/null +++ b/warframe-macros/src/model/struct_impl/args.rs @@ -0,0 +1,186 @@ +use proc_macro2::{ + Span, + TokenStream, +}; +use quote::quote; +use syn::{ + Error, + Ident, + LitBool, + LitStr, + Meta, + Token, + parenthesized, + parse::{ + Parse, + ParseStream, + Parser, + }, + punctuated::Punctuated, + spanned::Spanned, +}; + +use super::return_style::ReturnStyle; + +pub struct QueryableParams { + endpoint: LitStr, + return_style: ReturnStyle, +} + +pub struct QueryableImpl { + pub impl_endpoint: Option, + pub impl_queryable: Option, +} + +fn get_endpoint_impl(struct_name: &Ident, endpoint: &LitStr) -> syn::Result { + let endpoint_value = endpoint.value(); + + let endpoint_en = format!( + "https://api.warframestat.us/pc{}/?language=en", + endpoint.value() + ); + + Ok(quote! { + impl crate::worldstate::models::base::Endpoint for #struct_name { + fn endpoint_en() -> &'static str { + #endpoint_en + } + fn endpoint(language: crate::worldstate::language::Language) -> String { + format!( + "https://api.warframestat.us/pc{}/?language={}", + #endpoint_value, + language + ) + } + } + }) +} + +fn get_queryable_impl(struct_name: &Ident, return_style: ReturnStyle) -> syn::Result { + let ret_type = match return_style { + ReturnStyle::Array => quote! { Vec<#struct_name> }, + ReturnStyle::Object => quote! { #struct_name }, + }; + + Ok(quote! { + impl crate::worldstate::models::base::Queryable for #struct_name { + type Return = #ret_type; + } + }) +} + +impl QueryableImpl { + pub fn try_from_queryable_params( + struct_name: &Ident, + params: &QueryableParams, + ) -> syn::Result { + Ok(Self { + impl_endpoint: Some(get_endpoint_impl(struct_name, ¶ms.endpoint)?), + impl_queryable: Some(get_queryable_impl(struct_name, params.return_style)?), + }) + } +} + +pub struct Args { + pub queryable_params: Option, + pub timed: syn::LitBool, + pub expiry_attrs: Option>, + pub activation_attrs: Option>, +} + +impl Parse for Args { + fn parse(input: ParseStream) -> syn::Result { + let mut endpoint = None::; + let mut return_style = None::; + let mut timed = LitBool::new(false, Span::call_site()); + let mut expiry_attrs = None::>; + let mut activation_attrs = None::>; + + let model_parser = syn::meta::parser(|meta| match &meta.path { + path if path.is_ident("endpoint") => { + let lit: LitStr = meta.value()?.parse()?; + if !lit.value().starts_with('/') { + return Err(syn::Error::new_spanned( + lit, + "endpoint must start with a `/`", + )); + } + endpoint = Some(lit); + Ok(()) + } + path if path.is_ident("return_style") => { + return_style = Some(meta.value()?.parse()?); + Ok(()) + } + path if path.is_ident("timed") => { + if let Ok(val) = meta.value() { + timed = val.parse()?; + } else { + timed = LitBool::new(true, path.span()); + } + Ok(()) + } + + path if path.is_ident("expiry") => { + let content; + parenthesized!(content in *meta.input); + + expiry_attrs = Some( + Punctuated::::parse_terminated(&content)? + .into_iter() + .collect(), + ); + + Ok(()) + } + + path if path.is_ident("activation") => { + let content; + parenthesized!(content in *meta.input); + + activation_attrs = Some( + Punctuated::::parse_terminated(&content)? + .into_iter() + .collect(), + ); + + Ok(()) + } + + path => Err(syn::Error::new_spanned( + path, + format!("unexpected key: {}", path.get_ident().unwrap()), + )), + }); + + Parser::parse2(model_parser, input.parse()?)?; + + let queryable_params = match (endpoint, return_style) { + (Some(endpoint), Some(return_style)) => Some(QueryableParams { + endpoint, + return_style, + }), + (None, None) => None, + (_, _) => { + return Err(Error::new( + Span::call_site(), + "`endpoint` and `return_style` can only be used together", + )); + } + }; + + if !timed.value && (expiry_attrs.is_some() || activation_attrs.is_some()) { + return Err(Error::new( + Span::call_site(), + "`expiry` and `activation` can only be used when `timed` is set to true.", + )); + } + + Ok(Self { + queryable_params, + timed, + expiry_attrs, + activation_attrs, + }) + } +} diff --git a/warframe-macros/src/model/struct_impl/mod.rs b/warframe-macros/src/model/struct_impl/mod.rs new file mode 100644 index 0000000..940ebfc --- /dev/null +++ b/warframe-macros/src/model/struct_impl/mod.rs @@ -0,0 +1,118 @@ +mod args; +mod return_style; + +use std::collections::VecDeque; + +use args::{ + Args, + QueryableImpl, +}; +use proc_macro2::{ + Span, + TokenStream, +}; +use quote::quote; +use syn::{ + Error, + Field, + FieldMutability, + Fields, + FieldsNamed, + Ident, + ItemStruct, + Meta, + Visibility, + parse_quote, + token::Colon, +}; + +fn append_activation_and_expiry( + fields: &mut FieldsNamed, + activation_attrs: Vec, + expiry_attrs: Vec, +) { + let activation = Field { + ident: Some(Ident::new("activation", Span::call_site())), + colon_token: Some(Colon::default()), + mutability: FieldMutability::None, + ty: syn::parse_str("chrono::DateTime").unwrap(), + vis: Visibility::Inherited, + attrs: parse_quote!( #( #[#activation_attrs] )* ), + }; + + let expiry = Field { + ident: Some(Ident::new("expiry", Span::call_site())), + colon_token: Some(Colon::default()), + mutability: FieldMutability::None, + ty: syn::parse_str("chrono::DateTime").unwrap(), + vis: Visibility::Inherited, + attrs: parse_quote!( #( #[#expiry_attrs] )* ), + }; + + fields.named.push(activation); + fields.named.push(expiry); +} + +pub fn parse_struct(args: TokenStream, mut item: ItemStruct) -> syn::Result { + let mut vdq = VecDeque::from(item.attrs.clone()); + vdq.push_front(syn::parse_quote!(#[serde(rename_all = "camelCase")])); + vdq.push_front( + syn::parse_quote!(#[derive(Debug, Clone, PartialEq, PartialOrd, serde::Deserialize)]), + ); + item.attrs = vdq.into(); + + // panic!("{:?}", item.attrs); + + let struct_name = &item.ident; + + let args: Args = syn::parse2(args)?; + + if args.timed.value { + let fields = match &mut item.fields { + Fields::Named(fields_named) => fields_named, + _ => { + return Err(Error::new_spanned( + &item, + "Only Named Fields are supported!", + )); + } + }; + + append_activation_and_expiry( + fields, + args.activation_attrs.unwrap_or_default(), + args.expiry_attrs.unwrap_or_default(), + ); + } + + let timed_event_trait_impl = args.timed.value.then(|| { + quote! { + impl crate::worldstate::models::base::TimedEvent for #struct_name { + #[doc = "Returns the time when this event began"] + fn activation(&self) -> chrono::DateTime { + self.activation + } + #[doc = "Returns the time when this event ends"] + fn expiry(&self) -> chrono::DateTime { + self.expiry + } + } + } + }); + + let (endpoint_trait_impl, queryable_trait_impl) = match args.queryable_params { + None => (None, None), + Some(params) => QueryableImpl::try_from_queryable_params(struct_name, ¶ms) + .map(|impls| (impls.impl_endpoint, impls.impl_queryable))?, + }; + + Ok(quote! { + #item + + #timed_event_trait_impl + + #endpoint_trait_impl + + #queryable_trait_impl + }) +} diff --git a/warframe-macros/src/model/struct_impl/return_style.rs b/warframe-macros/src/model/struct_impl/return_style.rs new file mode 100644 index 0000000..1b6de7e --- /dev/null +++ b/warframe-macros/src/model/struct_impl/return_style.rs @@ -0,0 +1,37 @@ +use syn::{ + Expr, + parse::{ + self, + Parse, + }, +}; + +#[derive(Debug, Clone, Copy)] +pub enum ReturnStyle { + Object, + Array, +} + +impl Parse for ReturnStyle { + fn parse(input: parse::ParseStream) -> syn::Result { + let path = input.parse::()?; + let path = match path { + Expr::Path(path) => path, + _ => return Err(syn::Error::new_spanned(path, "expected path")), + }; + + let ident = path + .path + .get_ident() + .ok_or_else(|| syn::Error::new_spanned(path.clone(), "expected ident"))?; + + match ident.to_string().as_str() { + "Object" => Ok(Self::Object), + "Array" => Ok(Self::Array), + _ => Err(syn::Error::new_spanned( + ident, + "expected `Object` or `Array`", + )), + } + } +}