From 9264fe77b16091e51bd6f8b397fd5c6a7af0870b Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Tue, 9 Jan 2024 12:06:31 +0200 Subject: [PATCH 01/13] Add veloren-common-i18n - Move common::comp::chat::Content to its own place --- Cargo.lock | 12 ++- Cargo.toml | 1 + client/i18n/Cargo.toml | 2 +- client/i18n/src/lib.rs | 2 +- common/Cargo.toml | 1 + common/i18n/Cargo.toml | 10 +++ common/i18n/src/lib.rs | 120 ++++++++++++++++++++++++++++ common/src/comp/body.rs | 2 +- common/src/comp/body/biped_large.rs | 3 +- common/src/comp/chat.rs | 117 +-------------------------- common/src/comp/compass.rs | 2 +- common/src/comp/mod.rs | 4 +- common/src/rtsim.rs | 7 +- common/src/terrain/sprite.rs | 2 +- common/src/terrain/structure.rs | 2 +- 15 files changed, 156 insertions(+), 131 deletions(-) create mode 100644 common/i18n/Cargo.toml create mode 100644 common/i18n/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index 86350ff101..5d10af247c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6946,8 +6946,8 @@ dependencies = [ "serde", "tracing", "unic-langid", - "veloren-common", "veloren-common-assets", + "veloren-common-i18n", ] [[package]] @@ -6994,6 +6994,7 @@ dependencies = [ "vek 0.15.8", "veloren-common-assets", "veloren-common-base", + "veloren-common-i18n", ] [[package]] @@ -7054,6 +7055,15 @@ dependencies = [ "veloren-common-base", ] +[[package]] +name = "veloren-common-i18n" +version = "0.1.0" +dependencies = [ + "hashbrown 0.13.2", + "rand 0.8.5", + "serde", +] + [[package]] name = "veloren-common-net" version = "0.10.0" diff --git a/Cargo.toml b/Cargo.toml index 53665a2a94..4ed1120afa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ resolver = "2" members = [ "common", "common/assets", + "common/i18n", "common/base", "common/dynlib", "common/ecs", diff --git a/client/i18n/Cargo.toml b/client/i18n/Cargo.toml index be93a45c1c..4584e09f48 100644 --- a/client/i18n/Cargo.toml +++ b/client/i18n/Cargo.toml @@ -7,8 +7,8 @@ version = "0.13.0" [dependencies] # Assets -common = {package = "veloren-common", path = "../../common"} common-assets = {package = "veloren-common-assets", path = "../../common/assets"} +common-i18n = { package = "veloren-common-i18n", path = "../../common/i18n" } serde = { workspace = true } # Localization unic-langid = { version = "0.9"} diff --git a/client/i18n/src/lib.rs b/client/i18n/src/lib.rs index cb104fbf5c..c6ec4c70ac 100644 --- a/client/i18n/src/lib.rs +++ b/client/i18n/src/lib.rs @@ -19,8 +19,8 @@ use std::{borrow::Cow, io}; use assets::{source::DirEntry, AssetExt, AssetGuard, AssetHandle, ReloadWatcher, SharedString}; use tracing::warn; // Re-export because I don't like prefix -use common::comp::{Content, LocalizationArg}; use common_assets as assets; +use common_i18n::{Content, LocalizationArg}; // Re-export for argument creation pub use fluent::{fluent_args, FluentValue}; diff --git a/common/Cargo.toml b/common/Cargo.toml index c889e6d8f1..10fdb3830a 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -20,6 +20,7 @@ default = ["simd"] [dependencies] common-base = { package = "veloren-common-base", path = "base" } +common-i18n = { package = "veloren-common-i18n", path = "i18n" } # inline_tweak = { workspace = true } # Serde diff --git a/common/i18n/Cargo.toml b/common/i18n/Cargo.toml new file mode 100644 index 0000000000..0197bf77ed --- /dev/null +++ b/common/i18n/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "veloren-common-i18n" +version = "0.1.0" +edition = "2021" +description = "Crate for structs and methods that acknowledge the need for localization of the game" + +[dependencies] +serde = { workspace = true, features = ["rc"] } +hashbrown = { workspace = true } +rand = { workspace = true } diff --git a/common/i18n/src/lib.rs b/common/i18n/src/lib.rs new file mode 100644 index 0000000000..cf41ea015b --- /dev/null +++ b/common/i18n/src/lib.rs @@ -0,0 +1,120 @@ +use hashbrown::HashMap; +use serde::{Deserialize, Serialize}; + +/// The type to represent generic localization request, to be sent from server +/// to client and then localized (or internationalized) there. +// TODO: This could be generalised to *any* in-game text, not just chat messages (hence it not being +// called `ChatContent`). A few examples: +// +// - Signposts, both those appearing as overhead messages and those displayed 'in-world' on a shop +// sign +// - UI elements +// - In-game notes/books (we could add a variant that allows structuring complex, novel textual +// information as a syntax tree or some other intermediate format that can be localised by the +// client) +// TODO: We probably want to have this type be able to represent similar things to +// `fluent::FluentValue`, such as numeric values, so that they can be properly localised in whatever +// manner is required. +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] +pub enum Content { + /// The content is a plaintext string that should be shown to the user + /// verbatim. + Plain(String), + /// The content is a localizable message with the given arguments. + Localized { + /// i18n key + key: String, + /// Pseudorandom seed value that allows frontends to select a + /// deterministic (but pseudorandom) localised output + #[serde(default = "random_seed")] + seed: u16, + /// i18n arguments + #[serde(default)] + args: HashMap, + }, +} + +// TODO: Remove impl and make use of `Plain(...)` explicit (to discourage it) +impl From for Content { + fn from(text: String) -> Self { Self::Plain(text) } +} + +// TODO: Remove impl and make use of `Plain(...)` explicit (to discourage it) +impl<'a> From<&'a str> for Content { + fn from(text: &'a str) -> Self { Self::Plain(text.to_string()) } +} + +/// A localisation argument for localised content (see [`Content::Localized`]). +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] +pub enum LocalizationArg { + /// The localisation argument is itself a section of content. + /// + /// Note that this allows [`Content`] to recursively refer to itself. It may + /// be tempting to decide to parameterise everything, having dialogue + /// generated with a compact tree. "It's simpler!", you might say. False. + /// Over-parameterisation is an anti-pattern that hurts translators. Where + /// possible, prefer fewer levels of nesting unless doing so would result + /// in an intractably larger number of combinations. See [here] for the + /// guidance provided by the docs for `fluent`, the localisation library + /// used by clients. + /// + /// [here]: https://github.com/projectfluent/fluent/wiki/Good-Practices-for-Developers#prefer-wet-over-dry + Content(Content), + /// The localisation argument is a natural number + Nat(u64), +} + +impl From for LocalizationArg { + fn from(content: Content) -> Self { Self::Content(content) } +} + +// TODO: Remove impl and make use of `Content(Plain(...))` explicit (to +// discourage it) +impl From for LocalizationArg { + fn from(text: String) -> Self { Self::Content(Content::Plain(text)) } +} + +// TODO: Remove impl and make use of `Content(Plain(...))` explicit (to +// discourage it) +impl<'a> From<&'a str> for LocalizationArg { + fn from(text: &'a str) -> Self { Self::Content(Content::Plain(text.to_string())) } +} + +// TODO: Remove impl and make use of `Content(Plain(...))` explicit (to +// discourage it) +impl From for LocalizationArg { + fn from(n: u64) -> Self { Self::Nat(n) } +} + +fn random_seed() -> u16 { rand::random() } + +impl Content { + pub fn localized(key: impl ToString) -> Self { + Self::Localized { + key: key.to_string(), + seed: random_seed(), + args: HashMap::default(), + } + } + + pub fn localized_with_args<'a, A: Into>( + key: impl ToString, + args: impl IntoIterator, + ) -> Self { + Self::Localized { + key: key.to_string(), + seed: rand::random(), + args: args + .into_iter() + .map(|(k, v)| (k.to_string(), v.into())) + .collect(), + } + } + + pub fn as_plain(&self) -> Option<&str> { + match self { + Self::Plain(text) => Some(text.as_str()), + Self::Localized { .. } => None, + } + } +} diff --git a/common/src/comp/body.rs b/common/src/comp/body.rs index ef58087c45..8011fdb1b1 100644 --- a/common/src/comp/body.rs +++ b/common/src/comp/body.rs @@ -19,11 +19,11 @@ pub mod theropod; use crate::{ assets::{self, Asset}, - comp::Content, consts::{HUMAN_DENSITY, WATER_DENSITY}, make_case_elim, npc::NpcKind, }; +use common_i18n::Content; use serde::{Deserialize, Serialize}; use specs::{Component, DerefFlaggedStorage}; use strum::Display; diff --git a/common/src/comp/body/biped_large.rs b/common/src/comp/body/biped_large.rs index 9c117e1308..85228afbb7 100644 --- a/common/src/comp/body/biped_large.rs +++ b/common/src/comp/body/biped_large.rs @@ -1,4 +1,5 @@ -use crate::{comp::Content, make_case_elim, make_proj_elim}; +use crate::{make_case_elim, make_proj_elim}; +use common_i18n::Content; use rand::{seq::SliceRandom, thread_rng}; use serde::{Deserialize, Serialize}; diff --git a/common/src/comp/chat.rs b/common/src/comp/chat.rs index 07c554d31d..6feaa82d17 100644 --- a/common/src/comp/chat.rs +++ b/common/src/comp/chat.rs @@ -2,7 +2,7 @@ use crate::{ comp::{group::Group, BuffKind}, uid::Uid, }; -use hashbrown::HashMap; +use common_i18n::Content; use serde::{Deserialize, Serialize}; use specs::{Component, DenseVecStorage}; use std::time::{Duration, Instant}; @@ -179,121 +179,6 @@ impl ChatType { } } -/// The content of a chat message. -// TODO: This could be generalised to *any* in-game text, not just chat messages (hence it not being -// called `ChatContent`). A few examples: -// -// - Signposts, both those appearing as overhead messages and those displayed 'in-world' on a shop -// sign -// - UI elements -// - In-game notes/books (we could add a variant that allows structuring complex, novel textual -// information as a syntax tree or some other intermediate format that can be localised by the -// client) -// TODO: We probably want to have this type be able to represent similar things to -// `fluent::FluentValue`, such as numeric values, so that they can be properly localised in whatever -// manner is required. -#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] -pub enum Content { - /// The content is a plaintext string that should be shown to the user - /// verbatim. - Plain(String), - /// The content is a localizable message with the given arguments. - Localized { - /// i18n key - key: String, - /// Pseudorandom seed value that allows frontends to select a - /// deterministic (but pseudorandom) localised output - #[serde(default = "random_seed")] - seed: u16, - /// i18n arguments - #[serde(default)] - args: HashMap, - }, -} - -// TODO: Remove impl and make use of `Plain(...)` explicit (to discourage it) -impl From for Content { - fn from(text: String) -> Self { Self::Plain(text) } -} - -// TODO: Remove impl and make use of `Plain(...)` explicit (to discourage it) -impl<'a> From<&'a str> for Content { - fn from(text: &'a str) -> Self { Self::Plain(text.to_string()) } -} - -/// A localisation argument for localised content (see [`Content::Localized`]). -#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] -pub enum LocalizationArg { - /// The localisation argument is itself a section of content. - /// - /// Note that this allows [`Content`] to recursively refer to itself. It may - /// be tempting to decide to parameterise everything, having dialogue - /// generated with a compact tree. "It's simpler!", you might say. False. - /// Over-parameterisation is an anti-pattern that hurts translators. Where - /// possible, prefer fewer levels of nesting unless doing so would - /// result in an intractably larger number of combinations. See [here](https://github.com/projectfluent/fluent/wiki/Good-Practices-for-Developers#prefer-wet-over-dry) for the - /// guidance provided by the docs for `fluent`, the localisation library - /// used by clients. - Content(Content), - /// The localisation argument is a natural number - Nat(u64), -} - -impl From for LocalizationArg { - fn from(content: Content) -> Self { Self::Content(content) } -} - -// TODO: Remove impl and make use of `Content(Plain(...))` explicit (to -// discourage it) -impl From for LocalizationArg { - fn from(text: String) -> Self { Self::Content(Content::Plain(text)) } -} - -// TODO: Remove impl and make use of `Content(Plain(...))` explicit (to -// discourage it) -impl<'a> From<&'a str> for LocalizationArg { - fn from(text: &'a str) -> Self { Self::Content(Content::Plain(text.to_string())) } -} - -// TODO: Remove impl and make use of `Content(Plain(...))` explicit (to -// discourage it) -impl From for LocalizationArg { - fn from(n: u64) -> Self { Self::Nat(n) } -} - -fn random_seed() -> u16 { rand::random() } - -impl Content { - pub fn localized(key: impl ToString) -> Self { - Self::Localized { - key: key.to_string(), - seed: random_seed(), - args: HashMap::default(), - } - } - - pub fn localized_with_args<'a, A: Into>( - key: impl ToString, - args: impl IntoIterator, - ) -> Self { - Self::Localized { - key: key.to_string(), - seed: rand::random(), - args: args - .into_iter() - .map(|(k, v)| (k.to_string(), v.into())) - .collect(), - } - } - - pub fn as_plain(&self) -> Option<&str> { - match self { - Self::Plain(text) => Some(text.as_str()), - Self::Localized { .. } => None, - } - } -} - // Stores chat text, type #[derive(Debug, Clone, Serialize, Deserialize)] pub struct GenericChatMsg { diff --git a/common/src/comp/compass.rs b/common/src/comp/compass.rs index 7809347dbc..0a867c7f4f 100644 --- a/common/src/comp/compass.rs +++ b/common/src/comp/compass.rs @@ -1,4 +1,4 @@ -use super::Content; +use common_i18n::Content; use vek::Vec2; // TODO: Move this to common/src/, it's not a component diff --git a/common/src/comp/mod.rs b/common/src/comp/mod.rs index 29ff961ce7..dedd41e83d 100644 --- a/common/src/comp/mod.rs +++ b/common/src/comp/mod.rs @@ -62,8 +62,7 @@ pub use self::{ }, character_state::{CharacterActivity, CharacterState, StateUpdate}, chat::{ - ChatMode, ChatMsg, ChatType, Content, Faction, LocalizationArg, SpeechBubble, - SpeechBubbleType, UnresolvedChatMsg, + ChatMode, ChatMsg, ChatType, Faction, SpeechBubble, SpeechBubbleType, UnresolvedChatMsg, }, combo::Combo, controller::{ @@ -107,5 +106,6 @@ pub use self::{ teleport::Teleporting, visual::{LightAnimation, LightEmitter}, }; +pub use common_i18n::{Content, LocalizationArg}; pub use health::{Health, HealthChange}; diff --git a/common/src/rtsim.rs b/common/src/rtsim.rs index dc661ec1e0..5c7b6879e0 100644 --- a/common/src/rtsim.rs +++ b/common/src/rtsim.rs @@ -3,11 +3,8 @@ // `Agent`). When possible, this should be moved to the `rtsim` // module in `server`. -use crate::{ - character::CharacterId, - comp::{dialogue::Subject, Content}, - util::Dir, -}; +use crate::{character::CharacterId, comp::dialogue::Subject, util::Dir}; +use common_i18n::Content; use rand::{seq::IteratorRandom, Rng}; use serde::{Deserialize, Serialize}; use specs::Component; diff --git a/common/src/terrain/sprite.rs b/common/src/terrain/sprite.rs index 381f9eb279..5e92d5a99d 100644 --- a/common/src/terrain/sprite.rs +++ b/common/src/terrain/sprite.rs @@ -2,12 +2,12 @@ use crate::{ comp::{ item::{ItemDefinitionId, ItemDefinitionIdOwned}, tool::ToolKind, - Content, }, lottery::LootSpec, make_case_elim, terrain::Block, }; +use common_i18n::Content; use hashbrown::HashMap; use lazy_static::lazy_static; use num_derive::FromPrimitive; diff --git a/common/src/terrain/structure.rs b/common/src/terrain/structure.rs index 67bdc7c665..7b2a003e01 100644 --- a/common/src/terrain/structure.rs +++ b/common/src/terrain/structure.rs @@ -1,11 +1,11 @@ use super::{BlockKind, SpriteKind}; use crate::{ assets::{self, AssetExt, AssetHandle, BoxedError, DotVoxAsset}, - comp::Content, make_case_elim, vol::{BaseVol, ReadVol, SizedVol, WriteVol}, volumes::dyna::{Dyna, DynaError}, }; +use common_i18n::Content; use dot_vox::DotVoxData; use hashbrown::HashMap; use serde::Deserialize; From 75013cc04a463b93d591715e88a9ad813d6f6c18 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Wed, 10 Jan 2024 18:47:20 +0200 Subject: [PATCH 02/13] Make sfx.ron use ItemKey --- assets/voxygen/audio/sfx.ron | 66 ++++++++++++++-------------- common/src/comp/inventory/mod.rs | 6 +-- server/src/events/inventory_manip.rs | 2 +- voxygen/src/audio/sfx/mod.rs | 11 +++-- 4 files changed, 45 insertions(+), 40 deletions(-) diff --git a/assets/voxygen/audio/sfx.ron b/assets/voxygen/audio/sfx.ron index 893fee2c16..04da7f55dc 100644 --- a/assets/voxygen/audio/sfx.ron +++ b/assets/voxygen/audio/sfx.ron @@ -986,231 +986,231 @@ // // Consumables // - Inventory(Consumed("Minor Potion")): ( + Inventory(Consumed(Simple("common.items.consumable.potion_minor"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.liquid", ], threshold: 0.3, subtitle: "subtitle-consume_potion", ), - Inventory(Consumed("Medium Potion")): ( + Inventory(Consumed(Simple("common.items.consumable.potion_med"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.liquid", ], threshold: 0.3, subtitle: "subtitle-consume_potion", ), - Inventory(Consumed("Large Potion")): ( + Inventory(Consumed(Simple("common.items.consumable.potion_big"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.liquid", ], threshold: 0.3, subtitle: "subtitle-consume_potion", ), - Inventory(Consumed("Apple")): ( + Inventory(Consumed(Simple("common.items.food.apple"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.apple", ], threshold: 0.3, subtitle: "subtitle-consume_apple", ), - Inventory(Consumed("Mushroom")): ( + Inventory(Consumed(Simple("common.items.food.mushroom"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Dwarven Cheese")): ( + Inventory(Consumed(Simple("common.items.food.cheese"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_cheese", ), - Inventory(Consumed("Sunflower Ice Tea")): ( + Inventory(Consumed(Simple("common.items.food.sunflower_icetea"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.liquid", ], threshold: 0.3, subtitle: "subtitle-consume_liquid", ), - Inventory(Consumed("Mushroom Curry")): ( + Inventory(Consumed(Simple("common.items.food.apple_mushroom_curry"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.liquid", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Apple Stick")): ( + Inventory(Consumed(Simple("common.items.food.apple_stick"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Coconut")): ( + Inventory(Consumed(Simple("common.items.food.coconut"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Mushroom Stick")): ( + Inventory(Consumed(Simple("common.items.food.mushroom_stick"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Tomato")): ( + Inventory(Consumed(Simple("common.items.food.tomato"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Carrot")): ( + Inventory(Consumed(Simple("common.items.food.carrot"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Lettuce")): ( + Inventory(Consumed(Simple("common.items.food.lettuce"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Plain Salad")): ( + Inventory(Consumed(Simple("common.items.food.plainsalad"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Tomato Salad")): ( + Inventory(Consumed(Simple("common.items.food.tomatosalad"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Cactus Colada")): ( + Inventory(Consumed(Simple("common.items.food.cactus_colada"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.liquid", ], threshold: 0.3, subtitle: "subtitle-consume_liquid", ), - Inventory(Consumed("Raw Bird Meat")): ( + Inventory(Consumed(Simple("common.items.food.meat.bird_raw"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Cooked Bird Meat")): ( + Inventory(Consumed(Simple("common.items.food.meat.bird_cooked"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Raw Fish")): ( + Inventory(Consumed(Simple("common.items.food.meat.fish_raw"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Cooked Fish")): ( + Inventory(Consumed(Simple("common.items.food.meat.fish_cooked"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Raw Meat Slab")): ( + Inventory(Consumed(Simple("common.items.food.meat.beast_large_raw"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Cooked Meat Slab")): ( + Inventory(Consumed(Simple("common.items.food.meat.beast_large_cooked"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Raw Meat Sliver")): ( + Inventory(Consumed(Simple("common.items.food.meat.beast_small_raw"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Cooked Meat Sliver")): ( + Inventory(Consumed(Simple("common.items.food.meat.beast_small_cooked"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Raw Tough Meat")): ( + Inventory(Consumed(Simple("common.items.food.meat.tough_raw"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Cooked Tough Meat")): ( + Inventory(Consumed(Simple("common.items.food.meat.tough_cooked"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Huge Raw Drumstick")): ( + Inventory(Consumed(Simple("common.items.food.meat.bird_large_raw"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Huge Cooked Drumstick")): ( + Inventory(Consumed(Simple("common.items.food.meat.bird_large_cooked"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Honeycorn")): ( + Inventory(Consumed(Simple("common.items.food.honeycorn"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_food", ), - Inventory(Consumed("Pumpkin Spice Brew")): ( + Inventory(Consumed(Simple("common.items.food.pumpkin_spice_brew"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.liquid", ], threshold: 0.3, subtitle: "subtitle-consume_liquid", ), - Inventory(Consumed("Blue Cheese")): ( + Inventory(Consumed(Simple("common.items.food.blue_cheese"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], threshold: 0.3, subtitle: "subtitle-consume_cheese", ), - Inventory(Consumed("Golden Cheese")): ( + Inventory(Consumed(Simple("common.items.debug.golden_cheese"))): ( files: [ "voxygen.audio.sfx.inventory.consumable.food", ], diff --git a/common/src/comp/inventory/mod.rs b/common/src/comp/inventory/mod.rs index 21cc4c5c68..dacc05b38b 100644 --- a/common/src/comp/inventory/mod.rs +++ b/common/src/comp/inventory/mod.rs @@ -11,8 +11,8 @@ use crate::{ body::Body, inventory::{ item::{ - tool::AbilityMap, ItemDef, ItemDefinitionIdOwned, ItemKind, MaterialStatManifest, - TagExampleInfo, + item_key::ItemKey, tool::AbilityMap, ItemDef, ItemDefinitionIdOwned, ItemKind, + MaterialStatManifest, TagExampleInfo, }, loadout::Loadout, slot::{EquipSlot, Slot, SlotError}, @@ -974,7 +974,7 @@ pub enum CollectFailedReason { pub enum InventoryUpdateEvent { Init, Used, - Consumed(String), + Consumed(ItemKey), Gave, Given, Swapped, diff --git a/server/src/events/inventory_manip.rs b/server/src/events/inventory_manip.rs index 1c67082b17..2d241599fd 100644 --- a/server/src/events/inventory_manip.rs +++ b/server/src/events/inventory_manip.rs @@ -443,7 +443,7 @@ pub fn handle_inventory(server: &mut Server, entity: EcsEntity, manip: comp::Inv match &*item.kind() { ItemKind::Consumable { effects, .. } => { maybe_effect = Some(effects.clone()); - Some(InventoryUpdateEvent::Consumed(item.name().into_owned())) + Some(InventoryUpdateEvent::Consumed((&item).into())) }, ItemKind::Throwable { kind, .. } => { if let Some(pos) = diff --git a/voxygen/src/audio/sfx/mod.rs b/voxygen/src/audio/sfx/mod.rs index c1b1dc29b2..16837b570a 100644 --- a/voxygen/src/audio/sfx/mod.rs +++ b/voxygen/src/audio/sfx/mod.rs @@ -87,7 +87,7 @@ use common::{ assets::{self, AssetExt, AssetHandle}, comp::{ beam, biped_large, biped_small, bird_large, humanoid, - item::{AbilitySpec, ItemDefinitionId, ItemKind, ToolKind}, + item::{item_key::ItemKey, AbilitySpec, ItemDefinitionId, ItemKind, ToolKind}, object, poise::PoiseState, quadruped_low, quadruped_medium, quadruped_small, Body, CharacterAbilityType, Health, @@ -298,7 +298,7 @@ pub enum SfxInventoryEvent { CollectedTool(ToolKind), CollectedItem(String), CollectFailed, - Consumed(String), + Consumed(ItemKey), Debug, Dropped, Given, @@ -317,7 +317,12 @@ impl From<&InventoryUpdateEvent> for SfxEvent { ItemKind::Tool(tool) => { SfxEvent::Inventory(SfxInventoryEvent::CollectedTool(tool.kind)) }, - ItemKind::Ingredient { .. } if matches!(item.item_definition_id(), ItemDefinitionId::Simple(id) if id.contains("mineral.gem.")) => { + ItemKind::Ingredient { .. } + if matches!( + item.item_definition_id(), + ItemDefinitionId::Simple(id) if id.contains("mineral.gem.") + ) => + { SfxEvent::Inventory(SfxInventoryEvent::CollectedItem(String::from( "Gemstone", ))) From 1347a311089e6b8fd1b78257449d23745bc03c4b Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Thu, 11 Jan 2024 10:03:59 +0200 Subject: [PATCH 03/13] Deprecation step of Item::name/description - Mark Item::name() and Item::description() deprecated, along with corresponding ItemDesc methods. - Dummify dialogue code that uses items, as it's not used anyway. In the future it should use common_i18n::Content. - Allow usage of deprecated .name() for Inventory ordering, for now. - Allow usage of deprecated .name() for Inventory ordering for merchants, for now. --- common/src/comp/dialogue.rs | 17 +++++++++++------ common/src/comp/inventory/item/mod.rs | 4 ++++ common/src/comp/inventory/mod.rs | 2 ++ world/src/site/settlement/mod.rs | 2 +- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/common/src/comp/dialogue.rs b/common/src/comp/dialogue.rs index 9ef5b833ae..f646d09fb1 100644 --- a/common/src/comp/dialogue.rs +++ b/common/src/comp/dialogue.rs @@ -92,7 +92,7 @@ pub enum MoodState { Bad(MoodContext), } -// TODO: dialogue localization +// TODO: this should return common_i18n::Content impl MoodState { pub fn describe(&self) -> String { match self { @@ -105,7 +105,7 @@ impl MoodState { } } -// TODO: dialogue localization +// TODO: this should return common_i18n::Content impl MoodContext { pub fn describe(&self) -> String { match &self { @@ -114,11 +114,16 @@ impl MoodContext { format!("{} helped me on {}", hero, quest_desc) }, &MoodContext::EverydayLife => "Life's going as always.".to_string(), - MoodContext::NeedItem { item, quantity } => { - format!("I need {} {}!", quantity, item.name()) + MoodContext::NeedItem { + item: _, + quantity: _, + } => { + // format!("I need {} {}!", quantity, item.name()) + format!("I need some item, not just any item!") }, - &MoodContext::MissingItem { item } => { - format!("Someone robbed my {}!", item.name()) + &MoodContext::MissingItem { item: _ } => { + // format!("Someone robbed my {}!", item.name()) + format!("Someone robbed me of my item!") }, } } diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index 1b2f7f1880..f4e09bc8a5 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -1148,6 +1148,7 @@ impl Item { } /// Generate a human-readable description of the item and amount. + #[deprecated] pub fn describe(&self) -> String { if self.amount() > 1 { format!("{} x {}", self.amount(), self.name()) @@ -1156,6 +1157,7 @@ impl Item { } } + #[deprecated] pub fn name(&self) -> Cow { match &self.item_base { ItemBase::Simple(item_def) => { @@ -1169,6 +1171,7 @@ impl Item { } } + #[deprecated] pub fn description(&self) -> &str { match &self.item_base { ItemBase::Simple(item_def) => &item_def.description, @@ -1395,6 +1398,7 @@ pub fn flatten_counted_items<'a>( /// Provides common methods providing details about an item definition /// for either an `Item` containing the definition, or the actual `ItemDef` pub trait ItemDesc { + #[deprecated] fn description(&self) -> &str; fn name(&self) -> Cow; fn kind(&self) -> Cow; diff --git a/common/src/comp/inventory/mod.rs b/common/src/comp/inventory/mod.rs index dacc05b38b..86bb93e5de 100644 --- a/common/src/comp/inventory/mod.rs +++ b/common/src/comp/inventory/mod.rs @@ -184,6 +184,7 @@ impl Inventory { ) }, Some(CustomOrder::Quality) => cmp = Ord::cmp(&b_quality, &a_quality), + #[allow(deprecated)] Some(CustomOrder::Name) => cmp = Ord::cmp(&a.name(), &b.name()), Some(CustomOrder::Tag) => { cmp = Ord::cmp( @@ -203,6 +204,7 @@ impl Inventory { let mut items: Vec = self.slots_mut().filter_map(mem::take).collect(); items.sort_by(|a, b| match sort_order { + #[allow(deprecated)] InventorySortOrder::Name => Ord::cmp(&a.name(), &b.name()), // Quality is sorted in reverse since we want high quality items first InventorySortOrder::Quality => Ord::cmp(&b.quality(), &a.quality()), diff --git a/world/src/site/settlement/mod.rs b/world/src/site/settlement/mod.rs index 1027e3dd50..4fd78ee19b 100644 --- a/world/src/site/settlement/mod.rs +++ b/world/src/site/settlement/mod.rs @@ -1131,7 +1131,7 @@ fn sort_wares(bag: &mut [Item]) { ) ) // sort by name - .then(Ord::cmp(&a.name(), &b.name())) + .then(#[allow(deprecated)] Ord::cmp(&a.name(), &b.name())) }); } From 8263154a7e121adab8560540fb563c206522ee82 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Thu, 11 Jan 2024 10:38:15 +0200 Subject: [PATCH 04/13] Discourage random i18n and prettify `get_content` - Add the comment that recommends avoiding all `get_variation` methods. - Add the comment that recommends avoiding Content with random i18n. - Improve `get_content` docs. --- client/i18n/src/lib.rs | 107 ++++++++++++++++++++++++++++++++--------- common/i18n/src/lib.rs | 4 ++ 2 files changed, 89 insertions(+), 22 deletions(-) diff --git a/client/i18n/src/lib.rs b/client/i18n/src/lib.rs index c6ec4c70ac..914014250b 100644 --- a/client/i18n/src/lib.rs +++ b/client/i18n/src/lib.rs @@ -17,10 +17,9 @@ use serde::{Deserialize, Serialize}; use std::{borrow::Cow, io}; use assets::{source::DirEntry, AssetExt, AssetGuard, AssetHandle, ReloadWatcher, SharedString}; -use tracing::warn; -// Re-export because I don't like prefix use common_assets as assets; use common_i18n::{Content, LocalizationArg}; +use tracing::warn; // Re-export for argument creation pub use fluent::{fluent_args, FluentValue}; @@ -107,6 +106,8 @@ impl Language { Some(msg) } + /// NOTE: Exists for legacy reasons, avoid. + // Read more in the issue on get_variation at Gitlab fn try_variation<'a>( &'a self, key: &str, @@ -221,12 +222,12 @@ pub struct LocalizationHandle { pub use_english_fallback: bool, } -/// Read [LocalizationGuard] +/// Read [`LocalizationGuard`] // arbitrary choice to minimize changing all of veloren pub type Localization = LocalizationGuard; -/// RAII guard returned from [LocalizationHandle::read()], resembles -/// [AssetGuard] +/// RAII guard returned from [`LocalizationHandle::read()`], resembles +/// [`AssetGuard`] pub struct LocalizationGuard { active: AssetGuard, fallback: Option>, @@ -289,10 +290,13 @@ impl LocalizationGuard { .unwrap_or_else(|| Cow::Owned(key.to_owned())) } + /// NOTE: Exists for legacy reasons, avoid. + /// /// Get a localized text from the variation of given key /// /// First lookup is done in the active language, second in /// the fallback (if present). + // Read more in the issue on get_variation at Gitlab pub fn try_variation(&self, key: &str, seed: u16) -> Option> { self.active.try_variation(key, seed, None).or_else(|| { self.fallback @@ -301,22 +305,28 @@ impl LocalizationGuard { }) } + /// NOTE: Exists for legacy reasons, avoid. + /// /// Get a localized text from the variation of given key /// /// First lookup is done in the active language, second in /// the fallback (if present). /// If the key is not present in the localization object /// then the key itself is returned. + // Read more in the issue on get_variation at Gitlab pub fn get_variation(&self, key: &str, seed: u16) -> Cow { self.try_variation(key, seed) .unwrap_or_else(|| Cow::Owned(key.to_owned())) } + /// NOTE: Exists for legacy reasons, avoid. + /// /// Get a localized text from the variation of given key with given /// arguments /// /// First lookup is done in the active language, second in /// the fallback (if present). + // Read more in the issue on get_variation at Gitlab pub fn try_variation_ctx<'a>( &'a self, key: &str, @@ -332,47 +342,99 @@ impl LocalizationGuard { }) } - /// Localize the given content. + /// Tries its best to localize compound message. + /// + /// # Example + /// ```text + /// Content::Localized { "npc-speech-tell_site", seed, { + /// "dir" => Content::Localized("npc-speech-dir_north", seed, {}) + /// "dist" => Content::Localized("npc-speech-dist_very_far", seed, {}) + /// "site" => Content::Plain(site) + /// }} + /// ``` + /// ```fluent + /// npc-speech-tell_site = + /// .a0 = Have you visited { $site }? It's just { $dir } of here! + /// .a1 = You should visit { $site } some time. + /// .a2 = If you travel { $dist } to the { $dir }, you can get to { $site }. + /// .a3 = To the { $dir } you'll find { $site }, it's { $dist }. + /// + /// npc-speech-dir_north = north + /// # ... other keys + /// + /// npc-speech-dist_very_far = very far away + /// # ... other keys + /// ``` + /// + /// 1) Because content we want is localized itself and has arguments, we + /// iterate over them and localize, recursively. Having that, we localize + /// our content. + /// + /// 2) Now there is a chance that some of args have missing + /// internalization. In that case, we insert arg name as placeholder and + /// mark it as broken. Then we repeat *whole* procedure on fallback + /// language if we have it. + /// + /// 3) Otherwise, return result from (1). + // NOTE: it's important that we only use one language at the time, because + // otherwise we will get partially-translated message. pub fn get_content(&self, content: &Content) -> String { - // On error, produces the localisation but with the missing key inline - fn get_content_inner(lang: &Language, content: &Content) -> Result { + // Function to localize content for given language. + // + // Returns Ok(localized_text) if found no errors. + // Returns Err(broken_text) on failure. + // + // broken_text will have i18n keys in it, just i18n key if it was instant miss + // or text with missed keys inlined if it was missed down the chain. + fn get_content_for_lang(lang: &Language, content: &Content) -> Result { match content { Content::Plain(text) => Ok(text.clone()), Content::Localized { key, seed, args } => { - let mut is_err = false; + // flag to detect failure down the chain + let mut is_arg_failure = false; + let mut fargs = FluentArgs::new(); for (k, arg) in args { - fargs.set(k, match arg { - LocalizationArg::Content(content) => FluentValue::String( - get_content_inner(lang, content) + let arg_val = match arg { + LocalizationArg::Content(content) => { + let arg_res = get_content_for_lang(lang, content) .unwrap_or_else(|broken_text| { - is_err = true; + is_arg_failure = true; broken_text }) - .into(), - ), + .into(); + + FluentValue::String(arg_res) + }, LocalizationArg::Nat(n) => FluentValue::from(n), - }); + }; + fargs.set(k, arg_val); } lang.try_variation(key, *seed, Some(&fargs)) .map(Cow::into_owned) .ok_or_else(|| key.clone()) - .and_then(|text| if is_err { Err(text) } else { Ok(text) }) + .and_then(|text| if is_arg_failure { Err(text) } else { Ok(text) }) }, } } - match get_content_inner(&self.active, content) { + match get_content_for_lang(&self.active, content) { Ok(text) => text, - // If part of the localisation failed, use the fallback language - Err(broken_text) => self.fallback.as_ref() - .and_then(|fb| get_content_inner(fb, content).ok()) - // If all else fails, localise with the active language, but with the missing key included inline + // If localisation or some part of it failed, repeat with fallback. + // If it did fail as well, it's probably because fallback was disabled, + // so we don't have better option other than returning broken text + // we produced earlier. + Err(broken_text) => self + .fallback + .as_ref() + .and_then(|fb| get_content_for_lang(fb, content).ok()) .unwrap_or(broken_text), } } + /// NOTE: Exists for legacy reasons, avoid. + /// /// Get a localized text from the variation of given key with given /// arguments /// @@ -380,6 +442,7 @@ impl LocalizationGuard { /// the fallback (if present). /// If the key is not present in the localization object /// then the key itself is returned. + // Read more in the issue on get_variation at Gitlab pub fn get_variation_ctx<'a>(&'a self, key: &str, seed: u16, args: &'a FluentArgs) -> Cow { self.try_variation_ctx(key, seed, args) .unwrap_or_else(|| Cow::Owned(key.to_owned())) diff --git a/common/i18n/src/lib.rs b/common/i18n/src/lib.rs index cf41ea015b..f4cc717c2b 100644 --- a/common/i18n/src/lib.rs +++ b/common/i18n/src/lib.rs @@ -21,6 +21,10 @@ pub enum Content { /// verbatim. Plain(String), /// The content is a localizable message with the given arguments. + // TODO: reduce usages of random i18n as much as possible + // + // It's ok to have random messages, just not at i18n step. + // Look for issue on `get_vartion` at Gitlab for more. Localized { /// i18n key key: String, From 18e507315f3070070c5910443e020aa838a8a785 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Thu, 11 Jan 2024 18:28:25 +0200 Subject: [PATCH 05/13] Add ItemDesc::l10n method - Add ItemL10n struct that is similar to ItemImgs except it holds i18n description and not items. ItemDesc::l10n uses this struct to provide common_i18n::Content for both names and descriptions. So far it only used in voxygen, but it can be used by rtsim in dialogues. - Introduced new deprecation, ItemKind::Ingredient, because it uses item.name(). It's not deleted, because it's used in inventory sorting, and our inventory sorting is, for some reason, server-side. - Crafting UI also still uses deprecated item.name(), because again, sorting. It's probably will be easier to handle, because it's UI sorting and we can use localized names here, but still, it's a thing to discuss. - Moved Item::describe() to voxygen/hud/util. The most important thing to note is we don't want to completely delete deprecated .name() and .description() along with corresponding fields in ItemDef because ItemDef is now "public" API, exposed in plugins and I don't want to break plugins before we actually implement i18n for them. Otherwise, it would be basically impossible to use items in plugins. What's left is actually fully implementing ItemDesc::l10n, create item_l10n.ron and add fallback on current .name() and .description() implementation. --- common/src/comp/inventory/item/item_key.rs | 2 +- common/src/comp/inventory/item/mod.rs | 54 ++++++++++++++++------ voxygen/src/hud/bag.rs | 29 ++++++++++-- voxygen/src/hud/crafting.rs | 52 ++++++++++++++++++--- voxygen/src/hud/loot_scroller.rs | 14 ++++-- voxygen/src/hud/mod.rs | 36 +++++++++++---- voxygen/src/hud/skillbar.rs | 16 +++++-- voxygen/src/hud/trade.rs | 16 +++++-- voxygen/src/hud/util.rs | 29 +++++++++++- voxygen/src/ui/widgets/item_tooltip.rs | 11 +++-- 10 files changed, 205 insertions(+), 54 deletions(-) diff --git a/common/src/comp/inventory/item/item_key.rs b/common/src/comp/inventory/item/item_key.rs index ea6cc5af88..28e33d2f8e 100644 --- a/common/src/comp/inventory/item/item_key.rs +++ b/common/src/comp/inventory/item/item_key.rs @@ -14,7 +14,7 @@ pub enum ItemKey { Empty, } -impl From<&T> for ItemKey { +impl From<&T> for ItemKey { fn from(item_desc: &T) -> Self { let item_definition_id = item_desc.item_definition_id(); diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index f4e09bc8a5..fe67ab0962 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -14,13 +14,15 @@ use crate::{ recipe::RecipeInput, terrain::Block, }; +use common_i18n::Content; use core::{ convert::TryFrom, mem, num::{NonZeroU32, NonZeroU64}, }; use crossbeam_utils::atomic::AtomicCell; -use hashbrown::Equivalent; +use hashbrown::{Equivalent, HashMap}; +use item_key::ItemKey; use serde::{de, Deserialize, Serialize, Serializer}; use specs::{Component, DenseVecStorage, DerefFlaggedStorage}; use std::{borrow::Cow, collections::hash_map::DefaultHasher, fmt, sync::Arc}; @@ -342,6 +344,7 @@ pub enum ItemKind { }, Ingredient { /// Used to generate names for modular items composed of this ingredient + #[deprecated] descriptor: String, }, TagExamples { @@ -383,6 +386,7 @@ impl ItemKind { }, ItemKind::Throwable { kind } => format!("Throwable: {:?}", kind), ItemKind::Utility { kind } => format!("Utility: {:?}", kind), + #[allow(deprecated)] ItemKind::Ingredient { descriptor } => format!("Ingredient: {}", descriptor), ItemKind::TagExamples { item_ids } => format!("TagExamples: {:?}", item_ids), } @@ -466,11 +470,28 @@ impl Hash for Item { } } +// at the time of writing, we use Fluent, which supports attributes +// and we can get both name and description using them +type I18nId = String; + #[derive(Clone, Debug, Serialize, Deserialize)] -pub enum ItemName { - Direct(String), - Modular, - Component(String), +// TODO: probably make a Resource if used outside of voxygen +// TODO: add hot-reloading similar to how ItemImgs does it? +// TODO: make it work with plugins (via Concatenate?) +/// To be used with ItemDesc::l10n +pub struct ItemL10n { + /// maps ItemKey to i18n identifier + map: HashMap, +} + +impl assets::Asset for ItemL10n { + type Loader = assets::RonLoader; + + const EXTENSION: &'static str = "ron"; +} + +impl ItemL10n { + pub fn new_expect() -> Self { ItemL10n::load_expect("common.item_l10n").read().clone() } } #[derive(Clone, Debug)] @@ -1147,16 +1168,6 @@ impl Item { }) } - /// Generate a human-readable description of the item and amount. - #[deprecated] - pub fn describe(&self) -> String { - if self.amount() > 1 { - format!("{} x {}", self.amount(), self.name()) - } else { - self.name().to_string() - } - } - #[deprecated] pub fn name(&self) -> Cow { match &self.item_base { @@ -1400,6 +1411,7 @@ pub fn flatten_counted_items<'a>( pub trait ItemDesc { #[deprecated] fn description(&self) -> &str; + #[deprecated] fn name(&self) -> Cow; fn kind(&self) -> Cow; fn amount(&self) -> NonZeroU32; @@ -1420,6 +1432,18 @@ pub trait ItemDesc { None } } + + /// Return name's and description's localization descriptors + fn l10n(&self, l10n: &ItemL10n) -> (Content, Content) { + let item_key: ItemKey = self.into(); + + let _key = l10n.map.get(&item_key); + ( + // construct smth like Content::Attr + todo!(), + todo!(), + ) + } } impl ItemDesc for Item { diff --git a/voxygen/src/hud/bag.rs b/voxygen/src/hud/bag.rs index 83c16f5f9e..2c1e50a0a4 100644 --- a/voxygen/src/hud/bag.rs +++ b/voxygen/src/hud/bag.rs @@ -3,7 +3,7 @@ use super::{ img_ids::{Imgs, ImgsRot}, item_imgs::ItemImgs, slots::{ArmorSlot, EquipSlot, InventorySlot, SlotManager}, - HudInfo, Show, CRITICAL_HP_COLOR, LOW_HP_COLOR, TEXT_COLOR, UI_HIGHLIGHT_0, UI_MAIN, + util, HudInfo, Show, CRITICAL_HP_COLOR, LOW_HP_COLOR, TEXT_COLOR, UI_HIGHLIGHT_0, UI_MAIN, }; use crate::{ game_input::GameInput, @@ -21,7 +21,7 @@ use common::{ combat::{combat_rating, perception_dist_multiplier_from_stealth, Damage}, comp::{ inventory::InventorySortOrder, - item::{ItemDef, ItemDesc, MaterialStatManifest, Quality}, + item::{ItemDef, ItemDesc, ItemL10n, MaterialStatManifest, Quality}, Body, Energy, Health, Inventory, Poise, SkillSet, Stats, }, }; @@ -81,6 +81,7 @@ pub struct InventoryScroller<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, show_stats: bool, show_bag_inv: bool, on_right: bool, @@ -105,6 +106,7 @@ impl<'a> InventoryScroller<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, show_stats: bool, show_bag_inv: bool, on_right: bool, @@ -127,6 +129,7 @@ impl<'a> InventoryScroller<'a> { slot_manager, pulse, localized_strings, + item_l10n, show_stats, show_bag_inv, on_right, @@ -365,8 +368,18 @@ impl<'a> InventoryScroller<'a> { items.sort_by_cached_key(|(_, item)| { ( item.is_none(), - item.as_ref() - .map(|i| (std::cmp::Reverse(i.quality()), i.name(), i.amount())), + item.as_ref().map(|i| { + ( + std::cmp::Reverse(i.quality()), + { + // TODO: we do double the work here, optimize? + let (name, _) = + util::item_text(i, self.localized_strings, self.item_l10n); + name + }, + i.amount(), + ) + }), ) }); } @@ -457,7 +470,8 @@ impl<'a> InventoryScroller<'a> { .set(state.ids.inv_slots[i], ui); } if self.details_mode { - Text::new(&item.name()) + let (name, _) = util::item_text(item, self.localized_strings, self.item_l10n); + Text::new(&name) .top_left_with_margins_on( state.ids.inv_alignment, 0.0 + y as f64 * slot_size, @@ -638,6 +652,7 @@ pub struct Bag<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, stats: &'a Stats, skill_set: &'a SkillSet, health: &'a Health, @@ -663,6 +678,7 @@ impl<'a> Bag<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, stats: &'a Stats, skill_set: &'a SkillSet, health: &'a Health, @@ -686,6 +702,7 @@ impl<'a> Bag<'a> { slot_manager, pulse, localized_strings, + item_l10n, stats, skill_set, energy, @@ -805,6 +822,7 @@ impl<'a> Widget for Bag<'a> { self.pulse, self.msm, self.localized_strings, + self.item_l10n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -821,6 +839,7 @@ impl<'a> Widget for Bag<'a> { self.slot_manager, self.pulse, self.localized_strings, + self.item_l10n, self.show.stats, self.show.bag_inv, true, diff --git a/voxygen/src/hud/crafting.rs b/voxygen/src/hud/crafting.rs index 1984985f12..b28a085389 100644 --- a/voxygen/src/hud/crafting.rs +++ b/voxygen/src/hud/crafting.rs @@ -3,7 +3,7 @@ use super::{ img_ids::{Imgs, ImgsRot}, item_imgs::{animate_by_pulse, ItemImgs}, slots::{CraftSlot, CraftSlotInfo, SlotManager}, - HudInfo, Show, TEXT_COLOR, TEXT_DULL_RED_COLOR, TEXT_GRAY_COLOR, UI_HIGHLIGHT_0, UI_MAIN, + util, HudInfo, Show, TEXT_COLOR, TEXT_DULL_RED_COLOR, TEXT_GRAY_COLOR, UI_HIGHLIGHT_0, UI_MAIN, }; use crate::ui::{ fonts::Fonts, @@ -19,8 +19,8 @@ use common::{ item_key::ItemKey, modular::{self, ModularComponent}, tool::{AbilityMap, ToolKind}, - Item, ItemBase, ItemDef, ItemDesc, ItemKind, ItemTag, MaterialStatManifest, Quality, - TagExampleInfo, + Item, ItemBase, ItemDef, ItemDesc, ItemKind, ItemL10n, ItemTag, MaterialStatManifest, + Quality, TagExampleInfo, }, slot::{InvSlotId, Slot}, Inventory, @@ -151,6 +151,7 @@ pub struct Crafting<'a> { imgs: &'a Imgs, fonts: &'a Fonts, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, pulse: f32, rot_imgs: &'a ImgsRot, item_tooltip_manager: &'a mut ItemTooltipManager, @@ -171,6 +172,7 @@ impl<'a> Crafting<'a> { imgs: &'a Imgs, fonts: &'a Fonts, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, pulse: f32, rot_imgs: &'a ImgsRot, item_tooltip_manager: &'a mut ItemTooltipManager, @@ -187,6 +189,7 @@ impl<'a> Crafting<'a> { imgs, fonts, localized_strings, + item_l10n, pulse, rot_imgs, item_tooltip_manager, @@ -355,6 +358,7 @@ impl<'a> Widget for Crafting<'a> { self.pulse, self.msm, self.localized_strings, + self.item_l10n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -594,6 +598,7 @@ impl<'a> Widget for Crafting<'a> { .iter() .filter(|(_, recipe)| match search_filter { SearchFilter::None => { + #[allow(deprecated)] let output_name = recipe.output.0.name().to_lowercase(); search_keys .iter() @@ -608,9 +613,11 @@ impl<'a> Widget for Crafting<'a> { }; match input { + #[allow(deprecated)] RecipeInput::Item(def) => search(&def.name()), RecipeInput::Tag(tag) => search(tag.name()), RecipeInput::TagSameItem(tag) => search(tag.name()), + #[allow(deprecated)] RecipeInput::ListSameItem(defs) => { defs.iter().any(|def| search(&def.name())) }, @@ -667,6 +674,7 @@ impl<'a> Widget for Crafting<'a> { !is_craftable, !has_materials, recipe.output.0.quality(), + #[allow(deprecated)] recipe.output.0.name(), ) }); @@ -1214,6 +1222,8 @@ impl<'a> Widget for Crafting<'a> { }; if let Some(output_item) = output_item { + let (name, _) = + util::item_text(&output_item, self.localized_strings, self.item_l10n); Button::image(animate_by_pulse( &self .item_imgs @@ -1221,7 +1231,7 @@ impl<'a> Widget for Crafting<'a> { self.pulse, )) .w_h(55.0, 55.0) - .label(&output_item.name()) + .label(&name) .label_color(TEXT_COLOR) .label_font_size(self.fonts.cyri.scale(14)) .label_font_id(self.fonts.cyri.conrod_id) @@ -1926,6 +1936,7 @@ impl<'a> Widget for Crafting<'a> { .was_clicked() { events.push(Event::ChangeCraftingTab(CraftingTab::All)); + #[allow(deprecated)] events.push(Event::SearchRecipe(Some(item_def.name().to_string()))); } // Item image @@ -1963,7 +1974,13 @@ impl<'a> Widget for Crafting<'a> { .font_size(self.fonts.cyri.scale(14)) .color(TEXT_COLOR) .set(state.ids.req_text[i], ui); - Text::new(&item_def.name()) + + let (name, _) = util::item_text( + item_def.as_ref(), + self.localized_strings, + self.item_l10n, + ); + Text::new(&name) .right_from(state.ids.ingredient_frame[i], 10.0) .font_id(self.fonts.cyri.conrod_id) .font_size(self.fonts.cyri.scale(14)) @@ -1972,14 +1989,35 @@ impl<'a> Widget for Crafting<'a> { } else { // Ingredients let name = match recipe_input { - RecipeInput::Item(_) => item_def.name().to_string(), + RecipeInput::Item(_) => { + let (name, _) = util::item_text( + item_def.as_ref(), + self.localized_strings, + self.item_l10n, + ); + + name + }, RecipeInput::Tag(tag) | RecipeInput::TagSameItem(tag) => { + // TODO: Localize! format!("Any {} item", tag.name()) }, RecipeInput::ListSameItem(item_defs) => { + // TODO: Localize! format!( "Any of {}", - item_defs.iter().map(|def| def.name()).collect::() + item_defs + .iter() + .map(|def| { + let (name, _) = util::item_text( + def.as_ref(), + self.localized_strings, + self.item_l10n, + ); + + name + }) + .collect::() ) }, }; diff --git a/voxygen/src/hud/loot_scroller.rs b/voxygen/src/hud/loot_scroller.rs index 8799f2f8be..232dbe8c6b 100644 --- a/voxygen/src/hud/loot_scroller.rs +++ b/voxygen/src/hud/loot_scroller.rs @@ -2,11 +2,11 @@ use super::{ animate_by_pulse, get_quality_col, img_ids::{Imgs, ImgsRot}, item_imgs::ItemImgs, - HudInfo, Show, Windows, TEXT_COLOR, + util, HudInfo, Show, Windows, TEXT_COLOR, }; use crate::ui::{fonts::Fonts, ImageFrame, ItemTooltip, ItemTooltipManager, ItemTooltipable}; use client::Client; -use common::comp::inventory::item::{Item, ItemDesc, MaterialStatManifest, Quality}; +use common::comp::inventory::item::{Item, ItemDesc, ItemL10n, MaterialStatManifest, Quality}; use conrod_core::{ color, position::Dimension, @@ -58,6 +58,7 @@ pub struct LootScroller<'a> { rot_imgs: &'a ImgsRot, fonts: &'a Fonts, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, msm: &'a MaterialStatManifest, item_tooltip_manager: &'a mut ItemTooltipManager, pulse: f32, @@ -76,6 +77,7 @@ impl<'a> LootScroller<'a> { rot_imgs: &'a ImgsRot, fonts: &'a Fonts, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, msm: &'a MaterialStatManifest, item_tooltip_manager: &'a mut ItemTooltipManager, pulse: f32, @@ -90,6 +92,7 @@ impl<'a> LootScroller<'a> { rot_imgs, fonts, localized_strings, + item_l10n, msm, item_tooltip_manager, pulse, @@ -153,6 +156,7 @@ impl<'a> Widget for LootScroller<'a> { self.pulse, self.msm, self.localized_strings, + self.item_l10n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -351,7 +355,11 @@ impl<'a> Widget for LootScroller<'a> { &i18n::fluent_args! { "actor" => taken_by, "amount" => amount, - "item" => item.name(), + "item" => { + let (name, _) = + util::item_text(&item, self.localized_strings, self.item_l10n); + name + }, }, ); let label_font_size = 20; diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index f25efa52ef..e6b6edc18b 100755 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -98,7 +98,7 @@ use common::{ }, item::{ tool::{AbilityContext, ToolKind}, - ItemDesc, MaterialStatManifest, Quality, + ItemDefinitionIdOwned, ItemDesc, ItemL10n, MaterialStatManifest, Quality, }, loot_owner::LootOwnerKind, pet::is_mountable, @@ -1286,6 +1286,7 @@ pub struct Hud { world_map: (/* Id */ Vec, Vec2), imgs: Imgs, item_imgs: ItemImgs, + item_l10n: ItemL10n, fonts: Fonts, rot_imgs: ImgsRot, failed_block_pickups: HashMap, @@ -1341,6 +1342,8 @@ impl Hud { let rot_imgs = ImgsRot::load(&mut ui).expect("Failed to load rot images!"); // Load item images. let item_imgs = ItemImgs::new(&mut ui, imgs.not_found); + // Load item text ("reference" to name and description) + let item_l10n = ItemL10n::new_expect(); // Load fonts. let fonts = Fonts::load(global_state.i18n.read().fonts(), &mut ui) .expect("Impossible to load fonts!"); @@ -1380,6 +1383,7 @@ impl Hud { world_map, rot_imgs, item_imgs, + item_l10n, fonts, ids, failed_block_pickups: HashMap::default(), @@ -2008,7 +2012,7 @@ impl Hud { // Item overitem::Overitem::new( - item.describe().into(), + util::describe(item, i18n, &self.item_l10n).into(), quality, distance, fonts, @@ -2091,20 +2095,27 @@ impl Hud { )] }, BlockInteraction::Unlock(kind) => { + let item_name = |item_id: &ItemDefinitionIdOwned| { + item_id + .as_ref() + .itemdef_id() + .map(|id| { + let item = Item::new_from_asset_expect(id); + util::describe(&item, i18n, &self.item_l10n) + }) + .unwrap_or_else(|| "modular item".to_string()) + }; + vec![(Some(GameInput::Interact), match kind { UnlockKind::Free => i18n.get_msg("hud-open").to_string(), - UnlockKind::Requires(item) => i18n + UnlockKind::Requires(item_id) => i18n .get_msg_ctx("hud-unlock-requires", &i18n::fluent_args! { - "item" => item.as_ref().itemdef_id() - .map(|id| Item::new_from_asset_expect(id).describe()) - .unwrap_or_else(|| "modular item".to_string()), + "item" => item_name(item_id), }) .to_string(), - UnlockKind::Consumes(item) => i18n + UnlockKind::Consumes(item_id) => i18n .get_msg_ctx("hud-unlock-requires", &i18n::fluent_args! { - "item" => item.as_ref().itemdef_id() - .map(|id| Item::new_from_asset_expect(id).describe()) - .unwrap_or_else(|| "modular item".to_string()), + "item" => item_name(item_id), }) .to_string(), })] @@ -3166,6 +3177,7 @@ impl Hud { item_tooltip_manager, &mut self.slot_manager, i18n, + &self.item_l10n, &msm, self.floaters.combo_floater, &context, @@ -3213,6 +3225,7 @@ impl Hud { &mut self.slot_manager, self.pulse, i18n, + &self.item_l10n, player_stats, skill_set, health, @@ -3257,6 +3270,7 @@ impl Hud { item_tooltip_manager, &mut self.slot_manager, i18n, + &self.item_l10n, &msm, self.pulse, &mut self.show, @@ -3337,6 +3351,7 @@ impl Hud { &self.imgs, &self.fonts, i18n, + &self.item_l10n, self.pulse, &self.rot_imgs, item_tooltip_manager, @@ -3503,6 +3518,7 @@ impl Hud { &self.rot_imgs, &self.fonts, i18n, + &self.item_l10n, &msm, item_tooltip_manager, self.pulse, diff --git a/voxygen/src/hud/skillbar.rs b/voxygen/src/hud/skillbar.rs index 80541ea8cc..5ba88056d1 100644 --- a/voxygen/src/hud/skillbar.rs +++ b/voxygen/src/hud/skillbar.rs @@ -19,7 +19,6 @@ use crate::{ GlobalState, }; use i18n::Localization; -use std::borrow::Cow; use client::{self, Client}; use common::comp::{ @@ -27,7 +26,7 @@ use common::comp::{ ability::{AbilityInput, Stance}, item::{ tool::{AbilityContext, ToolKind}, - ItemDesc, MaterialStatManifest, + ItemDesc, ItemL10n, MaterialStatManifest, }, skillset::SkillGroupKind, Ability, ActiveAbilities, Body, CharacterState, Combo, Energy, Health, Inventory, Poise, @@ -308,6 +307,7 @@ pub struct Skillbar<'a> { item_tooltip_manager: &'a mut ItemTooltipManager, slot_manager: &'a mut slots::SlotManager, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, pulse: f32, #[conrod(common_builder)] common: widget::CommonBuilder, @@ -344,6 +344,7 @@ impl<'a> Skillbar<'a> { item_tooltip_manager: &'a mut ItemTooltipManager, slot_manager: &'a mut slots::SlotManager, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, msm: &'a MaterialStatManifest, combo_floater: Option, context: &'a AbilityContext, @@ -375,6 +376,7 @@ impl<'a> Skillbar<'a> { item_tooltip_manager, slot_manager, localized_strings, + item_l10n, msm, combo_floater, context, @@ -1008,6 +1010,7 @@ impl<'a> Skillbar<'a> { self.pulse, self.msm, self.localized_strings, + self.item_l10n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -1028,9 +1031,12 @@ impl<'a> Skillbar<'a> { let (hotbar, inventory, _, skill_set, active_abilities, _, contexts, _, _, _) = content_source; hotbar.get(slot).and_then(|content| match content { - hotbar::SlotContents::Inventory(i, _) => inventory - .get_by_hash(i) - .map(|item| (item.name(), Cow::Borrowed(item.description()))), + hotbar::SlotContents::Inventory(i, _) => inventory.get_by_hash(i).map(|item| { + let (title, desc) = + util::item_text(item, self.localized_strings, self.item_l10n); + + (title.into(), desc.into()) + }), hotbar::SlotContents::Ability(i) => active_abilities .and_then(|a| { a.auxiliary_set(Some(inventory), Some(skill_set)) diff --git a/voxygen/src/hud/trade.rs b/voxygen/src/hud/trade.rs index 63599aec65..4f0f8bb450 100644 --- a/voxygen/src/hud/trade.rs +++ b/voxygen/src/hud/trade.rs @@ -10,7 +10,7 @@ use vek::*; use client::Client; use common::{ comp::{ - inventory::item::{ItemDesc, MaterialStatManifest, Quality}, + inventory::item::{ItemDesc, ItemL10n, MaterialStatManifest, Quality}, Inventory, Stats, }, trade::{PendingTrade, SitePrices, TradeAction, TradePhase}, @@ -35,7 +35,8 @@ use super::{ img_ids::{Imgs, ImgsRot}, item_imgs::ItemImgs, slots::{SlotKind, SlotManager, TradeSlot}, - Hud, HudInfo, Show, TradeAmountInput, TEXT_COLOR, TEXT_GRAY_COLOR, UI_HIGHLIGHT_0, UI_MAIN, + util, Hud, HudInfo, Show, TradeAmountInput, TEXT_COLOR, TEXT_GRAY_COLOR, UI_HIGHLIGHT_0, + UI_MAIN, }; use std::borrow::Cow; @@ -98,6 +99,7 @@ pub struct Trade<'a> { common: widget::CommonBuilder, slot_manager: &'a mut SlotManager, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, msm: &'a MaterialStatManifest, pulse: f32, show: &'a mut Show, @@ -116,6 +118,7 @@ impl<'a> Trade<'a> { item_tooltip_manager: &'a mut ItemTooltipManager, slot_manager: &'a mut SlotManager, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, msm: &'a MaterialStatManifest, pulse: f32, show: &'a mut Show, @@ -132,6 +135,7 @@ impl<'a> Trade<'a> { common: widget::CommonBuilder::default(), slot_manager, localized_strings, + item_l10n, msm, pulse, show, @@ -345,6 +349,7 @@ impl<'a> Trade<'a> { self.pulse, self.msm, self.localized_strings, + self.item_l10n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -362,6 +367,7 @@ impl<'a> Trade<'a> { self.slot_manager, self.pulse, self.localized_strings, + self.item_l10n, false, true, false, @@ -530,7 +536,11 @@ impl<'a> Trade<'a> { let itemname = slot .invslot .and_then(|i| inventory.get(i)) - .map(|i| i.name()) + .map(|i| { + let (name, _) = util::item_text(&i, self.localized_strings, self.item_l10n); + + Cow::Owned(name) + }) .unwrap_or(Cow::Borrowed("")); let is_present = slot.quantity > 0 && slot.invslot.is_some(); Text::new(&format!("{} x {}", slot.quantity, itemname)) diff --git a/voxygen/src/hud/util.rs b/voxygen/src/hud/util.rs index 63c655805e..bcaf1198f3 100644 --- a/voxygen/src/hud/util.rs +++ b/voxygen/src/hud/util.rs @@ -5,7 +5,7 @@ use common::{ item::{ armor::{Armor, ArmorKind, Protection}, tool::{Hands, Tool, ToolKind}, - Effects, Item, ItemDefinitionId, ItemDesc, ItemKind, MaterialKind, + Effects, Item, ItemDefinitionId, ItemDesc, ItemKind, ItemL10n, MaterialKind, MaterialStatManifest, }, BuffKind, @@ -15,7 +15,7 @@ use common::{ }; use conrod_core::image; use i18n::{fluent_args, Localization}; -use std::{borrow::Cow, fmt::Write}; +use std::{borrow::Cow, fmt::Write, num::NonZeroU32}; pub fn price_desc<'a>( prices: &Option, @@ -61,6 +61,31 @@ pub fn price_desc<'a>( Some((buy_string, sell_string, deal_goodness)) } +pub fn item_text<'a, I: ItemDesc + ?Sized>( + item: &I, + i18n: &'a Localization, + l10n_spec: &'a ItemL10n, +) -> (String, String) { + let (title, desc) = item.l10n(l10n_spec); + + (i18n.get_content(&title), i18n.get_content(&desc)) +} + +pub fn describe<'a, I: ItemDesc + ?Sized>( + item: &I, + i18n: &'a Localization, + l10n_spec: &'a ItemL10n, +) -> String { + let (title, _) = item_text(item, i18n, l10n_spec); + let amount = item.amount(); + + if amount > NonZeroU32::new(1).unwrap() { + format!("{amount} x {title}") + } else { + title + } +} + pub fn kind_text<'a>(kind: &ItemKind, i18n: &'a Localization) -> Cow<'a, str> { match kind { ItemKind::Armor(armor) => armor_kind(armor, i18n), diff --git a/voxygen/src/ui/widgets/item_tooltip.rs b/voxygen/src/ui/widgets/item_tooltip.rs index 0235c9fe1f..087d73ccfb 100644 --- a/voxygen/src/ui/widgets/item_tooltip.rs +++ b/voxygen/src/ui/widgets/item_tooltip.rs @@ -10,7 +10,7 @@ use common::{ comp::{ item::{ armor::Protection, item_key::ItemKey, modular::ModularComponent, Item, ItemDesc, - ItemKind, ItemTag, MaterialStatManifest, Quality, + ItemKind, ItemL10n, ItemTag, MaterialStatManifest, Quality, }, Energy, }, @@ -296,6 +296,7 @@ pub struct ItemTooltip<'a> { item_imgs: &'a ItemImgs, pulse: f32, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, } #[derive(Clone, Debug, Default, PartialEq, WidgetStyle)] @@ -360,6 +361,7 @@ impl<'a> ItemTooltip<'a> { pulse: f32, msm: &'a MaterialStatManifest, localized_strings: &'a Localization, + item_l10n: &'a ItemL10n, ) -> Self { ItemTooltip { common: widget::CommonBuilder::default(), @@ -377,6 +379,7 @@ impl<'a> ItemTooltip<'a> { item_imgs, pulse, localized_strings, + item_l10n, } } @@ -450,6 +453,7 @@ impl<'a> Widget for ItemTooltip<'a> { } = args; let i18n = &self.localized_strings; + let item_l10n = &self.item_l10n; let inventories = self.client.inventories(); let inventory = match inventories.get(self.info.viewpoint_entity) { @@ -465,7 +469,7 @@ impl<'a> Widget for ItemTooltip<'a> { let equipped_item = inventory.equipped_items_replaceable_by(item_kind).next(); - let (title, desc) = (item.name().to_string(), item.description().to_string()); + let (title, desc) = util::item_text(item, i18n, item_l10n); let item_kind = util::kind_text(item_kind, i18n).to_string(); @@ -1266,7 +1270,8 @@ impl<'a> Widget for ItemTooltip<'a> { fn default_y_dimension(&self, ui: &Ui) -> Dimension { let item = &self.item; - let desc = item.description().to_string(); + // TODO: we do double work here, does it need optimization? + let (_, desc) = util::item_text(item, self.localized_strings, self.item_l10n); let (text_w, _image_w) = self.text_image_width(260.0); From aba8ec75580514d2b67c5eb880c9695789f24cbc Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sat, 13 Jan 2024 16:56:36 +0200 Subject: [PATCH 06/13] Implement item localization - Add Content::Key as proxy to Language::try_msg - Add Content::Attr as proxy to Language::try_attr - Extend ItemKey::TagExamples so it includes base asset id - Implement ItemDesc::l10n using new Content variants - Add all_items_expect() function to grab all items, because try_all_item_defs() covers only items in asset folder. Required assets will go in next commit --- assets/voxygen/i18n/en/hud/ability.ftl | 7 +- client/i18n/src/lib.rs | 12 ++ common/i18n/src/lib.rs | 36 +++--- common/src/cmd.rs | 4 +- common/src/comp/inventory/item/item_key.rs | 6 +- common/src/comp/inventory/item/mod.rs | 135 +++++++++++++++++++-- common/src/comp/inventory/item/modular.rs | 7 +- common/src/terrain/sprite.rs | 2 + voxygen/src/hud/item_imgs.rs | 2 +- voxygen/src/hud/mod.rs | 1 + 10 files changed, 181 insertions(+), 31 deletions(-) diff --git a/assets/voxygen/i18n/en/hud/ability.ftl b/assets/voxygen/i18n/en/hud/ability.ftl index 66af162d05..b46856e1d9 100644 --- a/assets/voxygen/i18n/en/hud/ability.ftl +++ b/assets/voxygen/i18n/en/hud/ability.ftl @@ -9,8 +9,11 @@ common-abilities-staff-fireshockwave = Ring of Fire common-abilities-sceptre-wardingaura = Warding Aura .desc = Wards your allies against enemy attacks. -# internally translations, currently only used in zh-Hans -# If we remove them here, they also get auto-removed in zh-Hans, so please keep them, even when not used in en +# internal terms, currently only used in zh-Hans +# If we remove them here, they also get auto-removed in zh-Hans, +# so please keep them, even when not used in English file. +# See https://github.com/WeblateOrg/weblate/issues/9895 + -heavy_stance = "" -agile_stance = "" -defensive_stance = "" diff --git a/client/i18n/src/lib.rs b/client/i18n/src/lib.rs index 914014250b..a074f640f6 100644 --- a/client/i18n/src/lib.rs +++ b/client/i18n/src/lib.rs @@ -378,6 +378,8 @@ impl LocalizationGuard { /// 3) Otherwise, return result from (1). // NOTE: it's important that we only use one language at the time, because // otherwise we will get partially-translated message. + // + // TODO: return Cow? pub fn get_content(&self, content: &Content) -> String { // Function to localize content for given language. // @@ -389,6 +391,16 @@ impl LocalizationGuard { fn get_content_for_lang(lang: &Language, content: &Content) -> Result { match content { Content::Plain(text) => Ok(text.clone()), + Content::Key(key) => { + lang.try_msg(key, None) + .map(Cow::into_owned) + .ok_or_else(|| format!("{key}")) + }, + Content::Attr(key, attr) => { + lang.try_attr(key, attr, None) + .map(Cow::into_owned) + .ok_or_else(|| format!("{key}.{attr}")) + }, Content::Localized { key, seed, args } => { // flag to detect failure down the chain let mut is_arg_failure = false; diff --git a/common/i18n/src/lib.rs b/common/i18n/src/lib.rs index f4cc717c2b..e28cbcca3e 100644 --- a/common/i18n/src/lib.rs +++ b/common/i18n/src/lib.rs @@ -1,25 +1,27 @@ use hashbrown::HashMap; use serde::{Deserialize, Serialize}; +// TODO: expose convinience macros ala 'fluent_args!'? + /// The type to represent generic localization request, to be sent from server /// to client and then localized (or internationalized) there. -// TODO: This could be generalised to *any* in-game text, not just chat messages (hence it not being -// called `ChatContent`). A few examples: -// -// - Signposts, both those appearing as overhead messages and those displayed 'in-world' on a shop -// sign -// - UI elements -// - In-game notes/books (we could add a variant that allows structuring complex, novel textual -// information as a syntax tree or some other intermediate format that can be localised by the -// client) -// TODO: We probably want to have this type be able to represent similar things to -// `fluent::FluentValue`, such as numeric values, so that they can be properly localised in whatever -// manner is required. +// TODO: Ideally we would need to fully cover API of our `i18n::Language`, including +// Fluent values. #[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] pub enum Content { + /// Plain(text) + /// /// The content is a plaintext string that should be shown to the user /// verbatim. Plain(String), + /// Key(i18n_key) + /// + /// The content is defined just by the key + Key(String), + /// Attr(i18n_key, attr) + /// + /// The content is the attribute of the key + Attr(String, String), /// The content is a localizable message with the given arguments. // TODO: reduce usages of random i18n as much as possible // @@ -49,6 +51,8 @@ impl<'a> From<&'a str> for Content { } /// A localisation argument for localised content (see [`Content::Localized`]). +// TODO: Do we want it to be Enum or just wrapper around Content, to add +// additional `impl From` for our arguments? #[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] pub enum LocalizationArg { /// The localisation argument is itself a section of content. @@ -74,18 +78,20 @@ impl From for LocalizationArg { // TODO: Remove impl and make use of `Content(Plain(...))` explicit (to // discourage it) +// +// Or not? impl From for LocalizationArg { fn from(text: String) -> Self { Self::Content(Content::Plain(text)) } } // TODO: Remove impl and make use of `Content(Plain(...))` explicit (to // discourage it) +// +// Or not? impl<'a> From<&'a str> for LocalizationArg { fn from(text: &'a str) -> Self { Self::Content(Content::Plain(text.to_string())) } } -// TODO: Remove impl and make use of `Content(Plain(...))` explicit (to -// discourage it) impl From for LocalizationArg { fn from(n: u64) -> Self { Self::Nat(n) } } @@ -118,7 +124,7 @@ impl Content { pub fn as_plain(&self) -> Option<&str> { match self { Self::Plain(text) => Some(text.as_str()), - Self::Localized { .. } => None, + Self::Localized { .. } | Self::Attr { .. } | Self::Key { .. } => None, } } } diff --git a/common/src/cmd.rs b/common/src/cmd.rs index b26059550e..f29099a65c 100644 --- a/common/src/cmd.rs +++ b/common/src/cmd.rs @@ -219,7 +219,9 @@ lazy_static! { static ref ROLES: Vec = ["admin", "moderator"].iter().copied().map(Into::into).collect(); - /// List of item specifiers. Useful for tab completing + /// List of item's asset specifiers. Useful for tab completing. + /// Doesn't cover all items (like modulars), includes "fake" items like + /// TagExamples. pub static ref ITEM_SPECS: Vec = { let mut items = try_all_item_defs() .unwrap_or_else(|e| { diff --git a/common/src/comp/inventory/item/item_key.rs b/common/src/comp/inventory/item/item_key.rs index 28e33d2f8e..6af01d7b43 100644 --- a/common/src/comp/inventory/item/item_key.rs +++ b/common/src/comp/inventory/item/item_key.rs @@ -10,7 +10,7 @@ pub enum ItemKey { Simple(String), ModularWeapon(modular::ModularWeaponKey), ModularWeaponComponent(modular::ModularWeaponComponentKey), - TagExamples(Vec), + TagExamples(Vec, String), Empty, } @@ -24,6 +24,10 @@ impl From<&T> for ItemKey { .iter() .map(|id| ItemKey::from(&*Arc::::load_expect_cloned(id))) .collect(), + item_definition_id + .itemdef_id() + .unwrap_or("?modular?") + .to_owned(), ) } else { match item_definition_id { diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index fe67ab0962..20211bec97 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -26,7 +26,7 @@ use item_key::ItemKey; use serde::{de, Deserialize, Serialize, Serializer}; use specs::{Component, DenseVecStorage, DerefFlaggedStorage}; use std::{borrow::Cow, collections::hash_map::DefaultHasher, fmt, sync::Arc}; -use strum::{EnumString, IntoStaticStr}; +use strum::{EnumIter, EnumString, IntoEnumIterator, IntoStaticStr}; use tracing::error; use vek::Rgb; @@ -105,7 +105,17 @@ pub enum MaterialKind { } #[derive( - Clone, Copy, Debug, PartialEq, Eq, Hash, Serialize, Deserialize, IntoStaticStr, EnumString, + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + Serialize, + Deserialize, + IntoStaticStr, + EnumString, + EnumIter, )] #[strum(serialize_all = "snake_case")] pub enum Material { @@ -479,6 +489,17 @@ type I18nId = String; // TODO: add hot-reloading similar to how ItemImgs does it? // TODO: make it work with plugins (via Concatenate?) /// To be used with ItemDesc::l10n +/// +/// NOTE: there is a limitation to this manifest, as it uses ItemKey and +/// ItemKey isn't uniquely identifies Item, when it comes to modular items. +/// +/// If modular weapon has the same primary component and the same hand-ness, +/// we use the same model EVEN IF it has different secondary components, like +/// Staff with Heavy core or Light core. +/// +/// Translations currently do the same, but *maybe* they shouldn't in which case +/// we should either extend ItemKey or use new identifier. We could use +/// ItemDefinitionId, but it's very generic and cumbersome. pub struct ItemL10n { /// maps ItemKey to i18n identifier map: HashMap, @@ -492,6 +513,24 @@ impl assets::Asset for ItemL10n { impl ItemL10n { pub fn new_expect() -> Self { ItemL10n::load_expect("common.item_l10n").read().clone() } + + /// Returns (name, description) in Content form. + // TODO: after we remove legacy text from ItemDef, consider making this + // function non-fallible? + fn item_text_opt(&self, mut item_key: ItemKey) -> Option<(Content, Content)> { + // we don't put TagExamples into manifest + if let ItemKey::TagExamples(_, id) = item_key { + item_key = ItemKey::Simple(id.to_string()); + } + + let key = self.map.get(&item_key); + key.map(|key| { + ( + Content::Key(key.to_owned()), + Content::Attr(key.to_owned(), "desc".to_owned()), + ) + }) + } } #[derive(Clone, Debug)] @@ -1437,12 +1476,12 @@ pub trait ItemDesc { fn l10n(&self, l10n: &ItemL10n) -> (Content, Content) { let item_key: ItemKey = self.into(); - let _key = l10n.map.get(&item_key); - ( - // construct smth like Content::Attr - todo!(), - todo!(), - ) + l10n.item_text_opt(item_key).unwrap_or_else(|| { + ( + Content::Plain(self.name().to_string()), + Content::Plain(self.name().to_string()), + ) + }) } } @@ -1565,6 +1604,67 @@ pub fn try_all_item_defs() -> Result, Error> { Ok(defs.ids().map(|id| id.to_string()).collect()) } +/// Designed to return all possible items, including modulars. +/// And some impossible too, like ItemKind::TagExamples. +pub fn all_items_expect() -> Vec { + let defs = assets::load_dir::("common.items", true) + .expect("failed to load item asset directory"); + + // Grab all items from assets + let mut asset_items: Vec = defs + .ids() + .map(|id| Item::new_from_asset_expect(id)) + .collect(); + + let mut material_parse_table = HashMap::new(); + for mat in Material::iter() { + if let Some(id) = mat.asset_identifier() { + material_parse_table.insert(id.to_owned(), mat); + } + } + + let primary_comp_pool = modular::PRIMARY_COMPONENT_POOL.clone(); + + // Grab weapon primary components + let mut primary_comps: Vec = primary_comp_pool + .values() + .flatten() + .map(|(item, _hand_rules)| item.clone()) + .collect(); + + // Grab modular weapons + let mut modular_items: Vec = primary_comp_pool + .keys() + .map(|(tool, mat_id)| { + let mat = material_parse_table + .get(mat_id) + .expect("unexpected material ident"); + + // get all weapons without imposing additional hand restrictions + let its = modular::generate_weapons(*tool, *mat, None) + .expect("failure during modular weapon generation"); + + its + }) + .flatten() + .collect(); + + // 1. Append asset items, that should include pretty much everything, + // except modular items + // 2. Append primary weapon components, which are modular as well. + // 3. Finally append modular weapons that are made from (1) and (2) + // extend when we get some new exotic stuff + // + // P. s. I still can't wrap my head around the idea that you can put + // tag example into your inventory. + let mut all = Vec::new(); + all.append(&mut asset_items); + all.append(&mut primary_comps); + all.append(&mut modular_items); + + all +} + impl PartialEq> for ItemDefinitionIdOwned { fn eq(&self, other: &ItemDefinitionId<'_>) -> bool { use ItemDefinitionId as DefId; @@ -1616,4 +1716,23 @@ mod tests { drop(item) } } + + #[test] + fn test_item_l10n() { let _ = ItemL10n::new_expect(); } + + #[test] + // Probably can't fail, but better safe than crashing production server + fn test_all_items() { let _ = all_items_expect(); } + + #[test] + // All items in Veloren should have localization. + // If no, add some common dummy i18n id. + fn ensure_item_localization() { + let manifest = ItemL10n::new_expect(); + let items = all_items_expect(); + for item in items { + let item_key: ItemKey = (&item).into(); + let _ = manifest.item_text_opt(item_key).unwrap(); + } + } } diff --git a/common/src/comp/inventory/item/modular.rs b/common/src/comp/inventory/item/modular.rs index e043a6927a..99d81d70c4 100644 --- a/common/src/comp/inventory/item/modular.rs +++ b/common/src/comp/inventory/item/modular.rs @@ -323,7 +323,7 @@ type PrimaryComponentPool = HashMap<(ToolKind, String), Vec<(Item, Option type SecondaryComponentPool = HashMap, Option)>>; lazy_static! { - static ref PRIMARY_COMPONENT_POOL: PrimaryComponentPool = { + pub static ref PRIMARY_COMPONENT_POOL: PrimaryComponentPool = { let mut component_pool = HashMap::new(); // Load recipe book @@ -509,12 +509,13 @@ pub fn generate_weapons( ability_map, msm, ); - weapons.push(Item::new_from_item_base( + let it = Item::new_from_item_base( ItemBase::Modular(ModularBase::Tool), vec![comp.duplicate(ability_map, msm), secondary], ability_map, msm, - )); + ); + weapons.push(it); } } diff --git a/common/src/terrain/sprite.rs b/common/src/terrain/sprite.rs index 5e92d5a99d..95b9f52d66 100644 --- a/common/src/terrain/sprite.rs +++ b/common/src/terrain/sprite.rs @@ -778,9 +778,11 @@ pub enum UnlockKind { Free, /// The sprite requires that the opening character has a given item in their /// inventory + // TODO: use ItemKey here? Requires(ItemDefinitionIdOwned), /// The sprite will consume the given item from the opening character's /// inventory + // TODO: use ItemKey here? Consumes(ItemDefinitionIdOwned), } diff --git a/voxygen/src/hud/item_imgs.rs b/voxygen/src/hud/item_imgs.rs index a8bd1db563..fddde546b0 100644 --- a/voxygen/src/hud/item_imgs.rs +++ b/voxygen/src/hud/item_imgs.rs @@ -115,7 +115,7 @@ impl ItemImgs { } pub fn img_ids(&self, item_key: ItemKey) -> Vec { - if let ItemKey::TagExamples(keys) = item_key { + if let ItemKey::TagExamples(keys, _) = item_key { return keys .iter() .filter_map(|k| self.map.get(k)) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index e6b6edc18b..5394a0e2a0 100755 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -2096,6 +2096,7 @@ impl Hud { }, BlockInteraction::Unlock(kind) => { let item_name = |item_id: &ItemDefinitionIdOwned| { + // TODO: get ItemKey and use it with l10n? item_id .as_ref() .itemdef_id() From b8e6840bf63c9babb282c3d00d02acd6451c8f0c Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sat, 13 Jan 2024 18:45:32 +0200 Subject: [PATCH 07/13] Enhance /kit all - "all" is now in proposed completions - `/kit all` gives all imaginable items, it's not limited to assets anymore --- .../common/items/debug/admin_black_hole.ron | 4 +- common/src/cmd.rs | 7 +++- server/src/cmd.rs | 42 ++++++++++++------- 3 files changed, 33 insertions(+), 20 deletions(-) diff --git a/assets/common/items/debug/admin_black_hole.ron b/assets/common/items/debug/admin_black_hole.ron index 4faf6b2289..1bf987bdc6 100644 --- a/assets/common/items/debug/admin_black_hole.ron +++ b/assets/common/items/debug/admin_black_hole.ron @@ -1,6 +1,6 @@ ItemDef( name: "Admin's Black Hole", - description: "It just works.", + description: "They say it will fit anything.", kind: Armor( ( kind: Bag, @@ -9,5 +9,5 @@ ItemDef( ), quality: Debug, tags: [], - slots: 900, + slots: 2500, ) diff --git a/common/src/cmd.rs b/common/src/cmd.rs index f29099a65c..8434a6d3c1 100644 --- a/common/src/cmd.rs +++ b/common/src/cmd.rs @@ -242,13 +242,16 @@ lazy_static! { }; pub static ref KITS: Vec = { - if let Ok(kits) = KitManifest::load_and_combine(KIT_MANIFEST_PATH) { + let mut kits = if let Ok(kits) = KitManifest::load_and_combine(KIT_MANIFEST_PATH) { let mut kits = kits.read().0.keys().cloned().collect::>(); kits.sort(); kits } else { Vec::new() - } + }; + kits.push("all".to_owned()); + + kits }; static ref PRESETS: HashMap> = { diff --git a/server/src/cmd.rs b/server/src/cmd.rs index a478ca4108..4b5472a2b2 100644 --- a/server/src/cmd.rs +++ b/server/src/cmd.rs @@ -21,14 +21,14 @@ use common::{ assets, calendar::Calendar, cmd::{ - AreaKind, EntityTarget, KitSpec, ServerChatCommand, BUFF_PACK, BUFF_PARSER, ITEM_SPECS, + AreaKind, EntityTarget, KitSpec, ServerChatCommand, BUFF_PACK, BUFF_PARSER, KIT_MANIFEST_PATH, PRESET_MANIFEST_PATH, }, comp::{ self, buff::{Buff, BuffData, BuffKind, BuffSource, MiscBuffData}, inventory::{ - item::{tool::AbilityMap, MaterialStatManifest, Quality}, + item::{all_items_expect, tool::AbilityMap, MaterialStatManifest, Quality}, slot::Slot, }, invite::InviteKind, @@ -2434,6 +2434,15 @@ fn handle_kill_npcs( Ok(()) } +enum KitEntry { + Spec(KitSpec), + Item(Item), +} + +impl From for KitEntry { + fn from(spec: KitSpec) -> Self { Self::Spec(spec) } +} + fn handle_kit( server: &mut Server, client: EcsEntity, @@ -2453,13 +2462,13 @@ fn handle_kit( match name.as_str() { "all" => { - // TODO: we will probably want to handle modular items here too - let items = &ITEM_SPECS; + // This can't fail, we have tests + let items = all_items_expect(); + let total = items.len(); + let res = push_kit( - items - .iter() - .map(|item_id| (KitSpec::Item(item_id.to_string()), 1)), - items.len(), + items.into_iter().map(|item| (KitEntry::Item(item), 1)), + total, server, target, ); @@ -2480,7 +2489,7 @@ fn handle_kit( let res = push_kit( kit.iter() - .map(|(item_id, quantity)| (item_id.clone(), *quantity)), + .map(|(item_id, quantity)| (item_id.clone().into(), *quantity)), kit.len(), server, target, @@ -2495,7 +2504,7 @@ fn handle_kit( fn push_kit(kit: I, count: usize, server: &mut Server, target: EcsEntity) -> CmdResult<()> where - I: Iterator, + I: Iterator, { if let (Some(mut target_inventory), mut target_inv_update) = ( server @@ -2529,19 +2538,20 @@ where } fn push_item( - item_id: KitSpec, + item_id: KitEntry, quantity: u32, server: &Server, push: &mut dyn FnMut(Item) -> Result<(), Item>, ) -> CmdResult<()> { - let items = match &item_id { - KitSpec::Item(item_id) => vec![ - Item::new_from_asset(item_id).map_err(|_| format!("Unknown item: {:#?}", item_id))?, + let items = match item_id { + KitEntry::Spec(KitSpec::Item(item_id)) => vec![ + Item::new_from_asset(&item_id).map_err(|_| format!("Unknown item: {:#?}", item_id))?, ], - KitSpec::ModularWeapon { tool, material } => { - comp::item::modular::generate_weapons(*tool, *material, None) + KitEntry::Spec(KitSpec::ModularWeapon { tool, material }) => { + comp::item::modular::generate_weapons(tool, material, None) .map_err(|err| format!("{:#?}", err))? }, + KitEntry::Item(item) => vec![item], }; let mut res = Ok(()); From 1748b5e76f175ed9cdc11eff94b3d6bb0b197ef9 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sat, 13 Jan 2024 20:16:45 +0200 Subject: [PATCH 08/13] Final(?) step to deprecating item names --- common/src/comp/inventory/item/mod.rs | 66 ++++++++++++++++------- common/src/comp/inventory/item/modular.rs | 3 ++ voxygen/src/hud/crafting.rs | 20 ++++++- 3 files changed, 67 insertions(+), 22 deletions(-) diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index 20211bec97..6e39046367 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -354,7 +354,8 @@ pub enum ItemKind { }, Ingredient { /// Used to generate names for modular items composed of this ingredient - #[deprecated] + // I think we can actually remove it now? + #[deprecated = "part of non-localized name generation"] descriptor: String, }, TagExamples { @@ -685,8 +686,10 @@ pub struct ItemDef { /// assets folder, which the ItemDef is loaded from. The name space /// prepended with `veloren.core` is reserved for veloren functions. item_definition_id: String, - pub name: String, - pub description: String, + #[deprecated = "since item i18n"] + name: String, + #[deprecated = "since item i18n"] + description: String, pub kind: ItemKind, pub quality: Quality, pub tags: Vec, @@ -835,8 +838,8 @@ impl assets::Compound for ItemDef { } let RawItemDef { - name, - description, + legacy_name, + legacy_description, kind, quality, tags, @@ -850,10 +853,11 @@ impl assets::Compound for ItemDef { // TODO: This probably does not belong here let item_definition_id = specifier.replace('\\', "."); + #[allow(deprecated)] Ok(ItemDef { item_definition_id, - name, - description, + name: legacy_name, + description: legacy_description, kind, quality, tags, @@ -866,8 +870,8 @@ impl assets::Compound for ItemDef { #[derive(Clone, Debug, Serialize, Deserialize)] #[serde(rename = "ItemDef")] struct RawItemDef { - name: String, - description: String, + legacy_name: String, + legacy_description: String, kind: ItemKind, quality: Quality, tags: Vec, @@ -1207,13 +1211,15 @@ impl Item { }) } - #[deprecated] + #[deprecated = "since item i18n"] pub fn name(&self) -> Cow { match &self.item_base { ItemBase::Simple(item_def) => { if self.components.is_empty() { + #[allow(deprecated)] Cow::Borrowed(&item_def.name) } else { + #[allow(deprecated)] modular::modify_name(&item_def.name, self) } }, @@ -1221,9 +1227,10 @@ impl Item { } } - #[deprecated] + #[deprecated = "since item i18n"] pub fn description(&self) -> &str { match &self.item_base { + #[allow(deprecated)] ItemBase::Simple(item_def) => &item_def.description, // TODO: See if James wanted to make description, else leave with none ItemBase::Modular(_) => "", @@ -1448,9 +1455,9 @@ pub fn flatten_counted_items<'a>( /// Provides common methods providing details about an item definition /// for either an `Item` containing the definition, or the actual `ItemDef` pub trait ItemDesc { - #[deprecated] + #[deprecated = "since item i18n"] fn description(&self) -> &str; - #[deprecated] + #[deprecated = "since item i18n"] fn name(&self) -> Cow; fn kind(&self) -> Cow; fn amount(&self) -> NonZeroU32; @@ -1476,19 +1483,26 @@ pub trait ItemDesc { fn l10n(&self, l10n: &ItemL10n) -> (Content, Content) { let item_key: ItemKey = self.into(); + #[allow(deprecated)] l10n.item_text_opt(item_key).unwrap_or_else(|| { ( Content::Plain(self.name().to_string()), - Content::Plain(self.name().to_string()), + Content::Plain(self.description().to_string()), ) }) } } impl ItemDesc for Item { - fn description(&self) -> &str { self.description() } + fn description(&self) -> &str { + #[allow(deprecated)] + self.description() + } - fn name(&self) -> Cow { self.name() } + fn name(&self) -> Cow { + #[allow(deprecated)] + self.name() + } fn kind(&self) -> Cow { self.kind() } @@ -1516,9 +1530,15 @@ impl ItemDesc for Item { } impl ItemDesc for ItemDef { - fn description(&self) -> &str { &self.description } + fn description(&self) -> &str { + #[allow(deprecated)] + &self.description + } - fn name(&self) -> Cow { Cow::Borrowed(&self.name) } + fn name(&self) -> Cow { + #[allow(deprecated)] + Cow::Borrowed(&self.name) + } fn kind(&self) -> Cow { Cow::Borrowed(&self.kind) } @@ -1562,9 +1582,15 @@ impl Component for ItemDrops { pub struct DurabilityMultiplier(pub f32); impl<'a, T: ItemDesc + ?Sized> ItemDesc for &'a T { - fn description(&self) -> &str { (*self).description() } + fn description(&self) -> &str { + #[allow(deprecated)] + (*self).description() + } - fn name(&self) -> Cow { (*self).name() } + fn name(&self) -> Cow { + #[allow(deprecated)] + (*self).name() + } fn kind(&self) -> Cow { (*self).kind() } diff --git a/common/src/comp/inventory/item/modular.rs b/common/src/comp/inventory/item/modular.rs index 99d81d70c4..29be4079f3 100644 --- a/common/src/comp/inventory/item/modular.rs +++ b/common/src/comp/inventory/item/modular.rs @@ -155,9 +155,11 @@ impl ModularBase { .components() .iter() .find_map(|mat| match mat.kind() { + #[allow(deprecated)] Cow::Owned(ItemKind::Ingredient { descriptor, .. }) => { Some(Cow::Owned(descriptor)) }, + #[allow(deprecated)] Cow::Borrowed(ItemKind::Ingredient { descriptor, .. }) => { Some(Cow::Borrowed(descriptor.as_str())) }, @@ -583,6 +585,7 @@ pub fn modify_name<'a>(item_name: &'a str, item: &'a Item) -> Cow<'a, str> { .components() .iter() .find_map(|comp| match &*comp.kind() { + #[allow(deprecated)] ItemKind::Ingredient { descriptor, .. } => Some(descriptor.to_owned()), _ => None, }) diff --git a/voxygen/src/hud/crafting.rs b/voxygen/src/hud/crafting.rs index b28a085389..338b100146 100644 --- a/voxygen/src/hud/crafting.rs +++ b/voxygen/src/hud/crafting.rs @@ -548,6 +548,8 @@ impl<'a> Widget for Crafting<'a> { let metal_comp_recipe = make_pseudo_recipe(SpriteKind::Anvil); let wood_comp_recipe = make_pseudo_recipe(SpriteKind::CraftingBench); let repair_recipe = make_pseudo_recipe(SpriteKind::RepairBench); + + // TODO: localize let pseudo_entries = { // A BTreeMap is used over a HashMap as when a HashMap is used, the UI shuffles // the positions of these every tick, so a BTreeMap is necessary to keep it @@ -735,11 +737,18 @@ impl<'a> Widget for Crafting<'a> { .press_image(self.imgs.selection_press) .image_color(color::rgba(1.0, 0.82, 0.27, 1.0)); + let borrow_check; let recipe_name = if let Some((_recipe, pseudo_name, _filter_tab)) = pseudo_entries.get(name) { *pseudo_name } else { - &recipe.output.0.name + let (title, _) = util::item_text( + recipe.output.0.as_ref(), + self.localized_strings, + self.item_l10n, + ); + borrow_check = title; + &borrow_check }; let text = Text::new(recipe_name) @@ -856,12 +865,19 @@ impl<'a> Widget for Crafting<'a> { None => None, } { let recipe_name = String::from(recipe_name); + let borrow_check; let title = if let Some((_recipe, pseudo_name, _filter_tab)) = pseudo_entries.get(&recipe_name) { *pseudo_name } else { - &recipe.output.0.name + let (title, _) = util::item_text( + recipe.output.0.as_ref(), + self.localized_strings, + self.item_l10n, + ); + borrow_check = title; + &borrow_check }; // Title Text::new(title) From d743293e564f4c2d20489540998a584c511d7585 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sat, 13 Jan 2024 18:11:02 +0200 Subject: [PATCH 09/13] clippy & fmt --- client/i18n/src/lib.rs | 18 ++++++++---------- common/src/bin/csv_export/main.rs | 1 + common/src/bin/csv_import/main.rs | 1 + common/src/comp/dialogue.rs | 4 ++-- common/src/comp/inventory/item/mod.rs | 11 +++++------ 5 files changed, 17 insertions(+), 18 deletions(-) diff --git a/client/i18n/src/lib.rs b/client/i18n/src/lib.rs index a074f640f6..774c94df00 100644 --- a/client/i18n/src/lib.rs +++ b/client/i18n/src/lib.rs @@ -391,16 +391,14 @@ impl LocalizationGuard { fn get_content_for_lang(lang: &Language, content: &Content) -> Result { match content { Content::Plain(text) => Ok(text.clone()), - Content::Key(key) => { - lang.try_msg(key, None) - .map(Cow::into_owned) - .ok_or_else(|| format!("{key}")) - }, - Content::Attr(key, attr) => { - lang.try_attr(key, attr, None) - .map(Cow::into_owned) - .ok_or_else(|| format!("{key}.{attr}")) - }, + Content::Key(key) => lang + .try_msg(key, None) + .map(Cow::into_owned) + .ok_or_else(|| key.to_string()), + Content::Attr(key, attr) => lang + .try_attr(key, attr, None) + .map(Cow::into_owned) + .ok_or_else(|| format!("{key}.{attr}")), Content::Localized { key, seed, args } => { // flag to detect failure down the chain let mut is_arg_failure = false; diff --git a/common/src/bin/csv_export/main.rs b/common/src/bin/csv_export/main.rs index 24e18b6a6a..dabe050436 100644 --- a/common/src/bin/csv_export/main.rs +++ b/common/src/bin/csv_export/main.rs @@ -1,4 +1,5 @@ #![deny(clippy::clone_on_ref_ptr)] +#![allow(deprecated)] // since item i18n use clap::Parser; use std::{ diff --git a/common/src/bin/csv_import/main.rs b/common/src/bin/csv_import/main.rs index 4bbb546e74..83be0d513c 100644 --- a/common/src/bin/csv_import/main.rs +++ b/common/src/bin/csv_import/main.rs @@ -1,3 +1,4 @@ +#![allow(deprecated)] // since item i18n #![deny(clippy::clone_on_ref_ptr)] #![allow(clippy::expect_fun_call)] //TODO: evaluate to remove this and use `unwrap_or_else(panic!(...))` instead diff --git a/common/src/comp/dialogue.rs b/common/src/comp/dialogue.rs index f646d09fb1..b23169900f 100644 --- a/common/src/comp/dialogue.rs +++ b/common/src/comp/dialogue.rs @@ -119,11 +119,11 @@ impl MoodContext { quantity: _, } => { // format!("I need {} {}!", quantity, item.name()) - format!("I need some item, not just any item!") + "I need some item, not just any item!".to_string() }, &MoodContext::MissingItem { item: _ } => { // format!("Someone robbed my {}!", item.name()) - format!("Someone robbed me of my item!") + "Someone robbed me of my item!".to_string() }, } } diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index 6e39046367..5175246a4d 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -780,6 +780,7 @@ impl ItemDef { tags: Vec, slots: u16, ) -> Self { + #[allow(deprecated)] Self { item_definition_id, name: "test item name".to_owned(), @@ -794,6 +795,7 @@ impl ItemDef { #[cfg(test)] pub fn create_test_itemdef_from_kind(kind: ItemKind) -> Self { + #[allow(deprecated)] Self { item_definition_id: "test.item".to_string(), name: "test item name".to_owned(), @@ -1661,18 +1663,15 @@ pub fn all_items_expect() -> Vec { // Grab modular weapons let mut modular_items: Vec = primary_comp_pool .keys() - .map(|(tool, mat_id)| { + .flat_map(|(tool, mat_id)| { let mat = material_parse_table .get(mat_id) .expect("unexpected material ident"); // get all weapons without imposing additional hand restrictions - let its = modular::generate_weapons(*tool, *mat, None) - .expect("failure during modular weapon generation"); - - its + modular::generate_weapons(*tool, *mat, None) + .expect("failure during modular weapon generation") }) - .flatten() .collect(); // 1. Append asset items, that should include pretty much everything, From 28b400825e092ebaaa5c8293ea338618a0776eb1 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sat, 13 Jan 2024 17:04:37 +0200 Subject: [PATCH 10/13] Add item localization assets --- assets/common/item_l10n.ron | 6886 +++++++++++++++++++++++ assets/voxygen/i18n/en/item/armor.ftl | 1086 ++++ assets/voxygen/i18n/en/item/common.ftl | 1234 ++++ assets/voxygen/i18n/en/item/glider.ftl | 61 + assets/voxygen/i18n/en/item/items.ftl | 19 + assets/voxygen/i18n/en/item/lantern.ftl | 39 + assets/voxygen/i18n/en/item/object.ftl | 161 + assets/voxygen/i18n/en/item/sprite.ftl | 379 ++ assets/voxygen/i18n/en/item/weapon.ftl | 2014 +++++++ 9 files changed, 11879 insertions(+) create mode 100644 assets/common/item_l10n.ron create mode 100644 assets/voxygen/i18n/en/item/armor.ftl create mode 100644 assets/voxygen/i18n/en/item/common.ftl create mode 100644 assets/voxygen/i18n/en/item/glider.ftl create mode 100644 assets/voxygen/i18n/en/item/items.ftl create mode 100644 assets/voxygen/i18n/en/item/lantern.ftl create mode 100644 assets/voxygen/i18n/en/item/object.ftl create mode 100644 assets/voxygen/i18n/en/item/sprite.ftl create mode 100644 assets/voxygen/i18n/en/item/weapon.ftl diff --git a/assets/common/item_l10n.ron b/assets/common/item_l10n.ron new file mode 100644 index 0000000000..ea6b3733cf --- /dev/null +++ b/assets/common/item_l10n.ron @@ -0,0 +1,6886 @@ +( + map: { + Simple( + "common.items.testing.test_bag_18_slot", + ): "common-items-testing-test_bag_18_slot", + Simple( + "common.items.testing.test_bag_9_slot", + ): "common-items-testing-test_bag_9_slot", + Simple( + "common.items.testing.test_boots", + ): "common-items-testing-test_boots", + Simple( + "common.items.npc_armor.pants.leather_blue", + ): "common-items-npc_armor-pants-leather_blue", + Simple( + "common.items.npc_armor.pants.plate_red", + ): "common-items-npc_armor-pants-plate_red", + Simple( + "common.items.npc_armor.quadruped_low.dagon", + ): "common-items-npc_armor-quadruped_low-dagon", + Simple( + "common.items.npc_armor.quadruped_low.generic", + ): "common-items-npc_armor-quadruped_low-generic", + Simple( + "common.items.npc_armor.quadruped_low.shell", + ): "common-items-npc_armor-quadruped_low-shell", + Simple( + "common.items.npc_armor.bird_large.phoenix", + ): "common-items-npc_armor-bird_large-phoenix", + Simple( + "common.items.npc_armor.bird_large.wyvern", + ): "common-items-npc_armor-bird_large-wyvern", + Simple( + "common.items.npc_armor.golem.claygolem", + ): "common-items-npc_armor-golem-claygolem", + Simple( + "common.items.npc_armor.golem.woodgolem", + ): "common-items-npc_armor-golem-woodgolem", + Simple( + "common.items.npc_armor.biped_small.myrmidon.foot.hoplite", + ): "common-items-npc_armor-biped_small-myrmidon-foot-hoplite", + Simple( + "common.items.npc_armor.biped_small.myrmidon.foot.marksman", + ): "common-items-npc_armor-biped_small-myrmidon-foot-marksman", + Simple( + "common.items.npc_armor.biped_small.myrmidon.foot.strategian", + ): "common-items-npc_armor-biped_small-myrmidon-foot-strategian", + Simple( + "common.items.npc_armor.biped_small.myrmidon.head.hoplite", + ): "common-items-npc_armor-biped_small-myrmidon-head-hoplite", + Simple( + "common.items.npc_armor.biped_small.myrmidon.head.marksman", + ): "common-items-npc_armor-biped_small-myrmidon-head-marksman", + Simple( + "common.items.npc_armor.biped_small.myrmidon.head.strategian", + ): "common-items-npc_armor-biped_small-myrmidon-head-strategian", + Simple( + "common.items.npc_armor.biped_small.myrmidon.pants.hoplite", + ): "common-items-npc_armor-biped_small-myrmidon-pants-hoplite", + Simple( + "common.items.npc_armor.biped_small.myrmidon.pants.marksman", + ): "common-items-npc_armor-biped_small-myrmidon-pants-marksman", + Simple( + "common.items.npc_armor.biped_small.myrmidon.pants.strategian", + ): "common-items-npc_armor-biped_small-myrmidon-pants-strategian", + Simple( + "common.items.npc_armor.biped_small.myrmidon.chest.hoplite", + ): "common-items-npc_armor-biped_small-myrmidon-chest-hoplite", + Simple( + "common.items.npc_armor.biped_small.myrmidon.chest.marksman", + ): "common-items-npc_armor-biped_small-myrmidon-chest-marksman", + Simple( + "common.items.npc_armor.biped_small.myrmidon.chest.strategian", + ): "common-items-npc_armor-biped_small-myrmidon-chest-strategian", + Simple( + "common.items.npc_armor.biped_small.myrmidon.hand.hoplite", + ): "common-items-npc_armor-biped_small-myrmidon-hand-hoplite", + Simple( + "common.items.npc_armor.biped_small.myrmidon.hand.marksman", + ): "common-items-npc_armor-biped_small-myrmidon-hand-marksman", + Simple( + "common.items.npc_armor.biped_small.myrmidon.hand.strategian", + ): "common-items-npc_armor-biped_small-myrmidon-hand-strategian", + Simple( + "common.items.npc_armor.biped_small.myrmidon.tail.hoplite", + ): "common-items-npc_armor-biped_small-myrmidon-tail-hoplite", + Simple( + "common.items.npc_armor.biped_small.myrmidon.tail.marksman", + ): "common-items-npc_armor-biped_small-myrmidon-tail-marksman", + Simple( + "common.items.npc_armor.biped_small.myrmidon.tail.strategian", + ): "common-items-npc_armor-biped_small-myrmidon-tail-strategian", + Simple( + "common.items.npc_armor.biped_small.sahagin.foot.sniper", + ): "common-items-npc_armor-biped_small-sahagin-foot-sniper", + Simple( + "common.items.npc_armor.biped_small.sahagin.foot.sorcerer", + ): "common-items-npc_armor-biped_small-sahagin-foot-sorcerer", + Simple( + "common.items.npc_armor.biped_small.sahagin.foot.spearman", + ): "common-items-npc_armor-biped_small-sahagin-foot-spearman", + Simple( + "common.items.npc_armor.biped_small.sahagin.head.sniper", + ): "common-items-npc_armor-biped_small-sahagin-head-sniper", + Simple( + "common.items.npc_armor.biped_small.sahagin.head.sorcerer", + ): "common-items-npc_armor-biped_small-sahagin-head-sorcerer", + Simple( + "common.items.npc_armor.biped_small.sahagin.head.spearman", + ): "common-items-npc_armor-biped_small-sahagin-head-spearman", + Simple( + "common.items.npc_armor.biped_small.sahagin.pants.sniper", + ): "common-items-npc_armor-biped_small-sahagin-pants-sniper", + Simple( + "common.items.npc_armor.biped_small.sahagin.pants.sorcerer", + ): "common-items-npc_armor-biped_small-sahagin-pants-sorcerer", + Simple( + "common.items.npc_armor.biped_small.sahagin.pants.spearman", + ): "common-items-npc_armor-biped_small-sahagin-pants-spearman", + Simple( + "common.items.npc_armor.biped_small.sahagin.chest.sniper", + ): "common-items-npc_armor-biped_small-sahagin-chest-sniper", + Simple( + "common.items.npc_armor.biped_small.sahagin.chest.sorcerer", + ): "common-items-npc_armor-biped_small-sahagin-chest-sorcerer", + Simple( + "common.items.npc_armor.biped_small.sahagin.chest.spearman", + ): "common-items-npc_armor-biped_small-sahagin-chest-spearman", + Simple( + "common.items.npc_armor.biped_small.sahagin.hand.sniper", + ): "common-items-npc_armor-biped_small-sahagin-hand-sniper", + Simple( + "common.items.npc_armor.biped_small.sahagin.hand.sorcerer", + ): "common-items-npc_armor-biped_small-sahagin-hand-sorcerer", + Simple( + "common.items.npc_armor.biped_small.sahagin.hand.spearman", + ): "common-items-npc_armor-biped_small-sahagin-hand-spearman", + Simple( + "common.items.npc_armor.biped_small.sahagin.tail.sniper", + ): "common-items-npc_armor-biped_small-sahagin-tail-sniper", + Simple( + "common.items.npc_armor.biped_small.sahagin.tail.sorcerer", + ): "common-items-npc_armor-biped_small-sahagin-tail-sorcerer", + Simple( + "common.items.npc_armor.biped_small.sahagin.tail.spearman", + ): "common-items-npc_armor-biped_small-sahagin-tail-spearman", + Simple( + "common.items.npc_armor.biped_small.adlet.foot.hunter", + ): "common-items-npc_armor-biped_small-adlet-foot-hunter", + Simple( + "common.items.npc_armor.biped_small.adlet.foot.icepicker", + ): "common-items-npc_armor-biped_small-adlet-foot-icepicker", + Simple( + "common.items.npc_armor.biped_small.adlet.foot.tracker", + ): "common-items-npc_armor-biped_small-adlet-foot-tracker", + Simple( + "common.items.npc_armor.biped_small.adlet.head.hunter", + ): "common-items-npc_armor-biped_small-adlet-head-hunter", + Simple( + "common.items.npc_armor.biped_small.adlet.head.icepicker", + ): "common-items-npc_armor-biped_small-adlet-head-icepicker", + Simple( + "common.items.npc_armor.biped_small.adlet.head.tracker", + ): "common-items-npc_armor-biped_small-adlet-head-tracker", + Simple( + "common.items.npc_armor.biped_small.adlet.pants.hunter", + ): "common-items-npc_armor-biped_small-adlet-pants-hunter", + Simple( + "common.items.npc_armor.biped_small.adlet.pants.icepicker", + ): "common-items-npc_armor-biped_small-adlet-pants-icepicker", + Simple( + "common.items.npc_armor.biped_small.adlet.pants.tracker", + ): "common-items-npc_armor-biped_small-adlet-pants-tracker", + Simple( + "common.items.npc_armor.biped_small.adlet.chest.hunter", + ): "common-items-npc_armor-biped_small-adlet-chest-hunter", + Simple( + "common.items.npc_armor.biped_small.adlet.chest.icepicker", + ): "common-items-npc_armor-biped_small-adlet-chest-icepicker", + Simple( + "common.items.npc_armor.biped_small.adlet.chest.tracker", + ): "common-items-npc_armor-biped_small-adlet-chest-tracker", + Simple( + "common.items.npc_armor.biped_small.adlet.hand.hunter", + ): "common-items-npc_armor-biped_small-adlet-hand-hunter", + Simple( + "common.items.npc_armor.biped_small.adlet.hand.icepicker", + ): "common-items-npc_armor-biped_small-adlet-hand-icepicker", + Simple( + "common.items.npc_armor.biped_small.adlet.hand.tracker", + ): "common-items-npc_armor-biped_small-adlet-hand-tracker", + Simple( + "common.items.npc_armor.biped_small.adlet.tail.hunter", + ): "common-items-npc_armor-biped_small-adlet-tail-hunter", + Simple( + "common.items.npc_armor.biped_small.adlet.tail.icepicker", + ): "common-items-npc_armor-biped_small-adlet-tail-icepicker", + Simple( + "common.items.npc_armor.biped_small.adlet.tail.tracker", + ): "common-items-npc_armor-biped_small-adlet-tail-tracker", + Simple( + "common.items.npc_armor.biped_small.gnarling.foot.chieftain", + ): "common-items-npc_armor-biped_small-gnarling-foot-chieftain", + Simple( + "common.items.npc_armor.biped_small.gnarling.foot.logger", + ): "common-items-npc_armor-biped_small-gnarling-foot-logger", + Simple( + "common.items.npc_armor.biped_small.gnarling.foot.mugger", + ): "common-items-npc_armor-biped_small-gnarling-foot-mugger", + Simple( + "common.items.npc_armor.biped_small.gnarling.foot.stalker", + ): "common-items-npc_armor-biped_small-gnarling-foot-stalker", + Simple( + "common.items.npc_armor.biped_small.gnarling.head.chieftain", + ): "common-items-npc_armor-biped_small-gnarling-head-chieftain", + Simple( + "common.items.npc_armor.biped_small.gnarling.head.logger", + ): "common-items-npc_armor-biped_small-gnarling-head-logger", + Simple( + "common.items.npc_armor.biped_small.gnarling.head.mugger", + ): "common-items-npc_armor-biped_small-gnarling-head-mugger", + Simple( + "common.items.npc_armor.biped_small.gnarling.head.stalker", + ): "common-items-npc_armor-biped_small-gnarling-head-stalker", + Simple( + "common.items.npc_armor.biped_small.gnarling.pants.chieftain", + ): "common-items-npc_armor-biped_small-gnarling-pants-chieftain", + Simple( + "common.items.npc_armor.biped_small.gnarling.pants.logger", + ): "common-items-npc_armor-biped_small-gnarling-pants-logger", + Simple( + "common.items.npc_armor.biped_small.gnarling.pants.mugger", + ): "common-items-npc_armor-biped_small-gnarling-pants-mugger", + Simple( + "common.items.npc_armor.biped_small.gnarling.pants.stalker", + ): "common-items-npc_armor-biped_small-gnarling-pants-stalker", + Simple( + "common.items.npc_armor.biped_small.gnarling.chest.chieftain", + ): "common-items-npc_armor-biped_small-gnarling-chest-chieftain", + Simple( + "common.items.npc_armor.biped_small.gnarling.chest.logger", + ): "common-items-npc_armor-biped_small-gnarling-chest-logger", + Simple( + "common.items.npc_armor.biped_small.gnarling.chest.mugger", + ): "common-items-npc_armor-biped_small-gnarling-chest-mugger", + Simple( + "common.items.npc_armor.biped_small.gnarling.chest.stalker", + ): "common-items-npc_armor-biped_small-gnarling-chest-stalker", + Simple( + "common.items.npc_armor.biped_small.gnarling.hand.chieftain", + ): "common-items-npc_armor-biped_small-gnarling-hand-chieftain", + Simple( + "common.items.npc_armor.biped_small.gnarling.hand.logger", + ): "common-items-npc_armor-biped_small-gnarling-hand-logger", + Simple( + "common.items.npc_armor.biped_small.gnarling.hand.mugger", + ): "common-items-npc_armor-biped_small-gnarling-hand-mugger", + Simple( + "common.items.npc_armor.biped_small.gnarling.hand.stalker", + ): "common-items-npc_armor-biped_small-gnarling-hand-stalker", + Simple( + "common.items.npc_armor.biped_small.gnarling.tail.chieftain", + ): "common-items-npc_armor-biped_small-gnarling-tail-chieftain", + Simple( + "common.items.npc_armor.biped_small.gnarling.tail.logger", + ): "common-items-npc_armor-biped_small-gnarling-tail-logger", + Simple( + "common.items.npc_armor.biped_small.gnarling.tail.mugger", + ): "common-items-npc_armor-biped_small-gnarling-tail-mugger", + Simple( + "common.items.npc_armor.biped_small.gnarling.tail.stalker", + ): "common-items-npc_armor-biped_small-gnarling-tail-stalker", + Simple( + "common.items.npc_armor.biped_small.kappa.foot.kappa", + ): "common-items-npc_armor-biped_small-kappa-foot-kappa", + Simple( + "common.items.npc_armor.biped_small.kappa.head.kappa", + ): "common-items-npc_armor-biped_small-kappa-head-kappa", + Simple( + "common.items.npc_armor.biped_small.kappa.pants.kappa", + ): "common-items-npc_armor-biped_small-kappa-pants-kappa", + Simple( + "common.items.npc_armor.biped_small.kappa.chest.kappa", + ): "common-items-npc_armor-biped_small-kappa-chest-kappa", + Simple( + "common.items.npc_armor.biped_small.kappa.hand.kappa", + ): "common-items-npc_armor-biped_small-kappa-hand-kappa", + Simple( + "common.items.npc_armor.biped_small.kappa.tail.kappa", + ): "common-items-npc_armor-biped_small-kappa-tail-kappa", + Simple( + "common.items.npc_armor.biped_small.boreal.foot.warrior", + ): "common-items-npc_armor-biped_small-boreal-foot-warrior", + Simple( + "common.items.npc_armor.biped_small.boreal.head.warrior", + ): "common-items-npc_armor-biped_small-boreal-head-warrior", + Simple( + "common.items.npc_armor.biped_small.boreal.pants.warrior", + ): "common-items-npc_armor-biped_small-boreal-pants-warrior", + Simple( + "common.items.npc_armor.biped_small.boreal.chest.warrior", + ): "common-items-npc_armor-biped_small-boreal-chest-warrior", + Simple( + "common.items.npc_armor.biped_small.boreal.hand.warrior", + ): "common-items-npc_armor-biped_small-boreal-hand-warrior", + Simple( + "common.items.npc_armor.biped_small.bushly.foot.bushly", + ): "common-items-npc_armor-biped_small-bushly-foot-bushly", + Simple( + "common.items.npc_armor.biped_small.bushly.pants.bushly", + ): "common-items-npc_armor-biped_small-bushly-pants-bushly", + Simple( + "common.items.npc_armor.biped_small.bushly.chest.bushly", + ): "common-items-npc_armor-biped_small-bushly-chest-bushly", + Simple( + "common.items.npc_armor.biped_small.bushly.hand.bushly", + ): "common-items-npc_armor-biped_small-bushly-hand-bushly", + Simple( + "common.items.npc_armor.biped_small.clockwork.foot.clockwork", + ): "common-items-npc_armor-biped_small-clockwork-foot-clockwork", + Simple( + "common.items.npc_armor.biped_small.clockwork.head.clockwork", + ): "common-items-npc_armor-biped_small-clockwork-head-clockwork", + Simple( + "common.items.npc_armor.biped_small.clockwork.pants.clockwork", + ): "common-items-npc_armor-biped_small-clockwork-pants-clockwork", + Simple( + "common.items.npc_armor.biped_small.clockwork.chest.clockwork", + ): "common-items-npc_armor-biped_small-clockwork-chest-clockwork", + Simple( + "common.items.npc_armor.biped_small.clockwork.hand.clockwork", + ): "common-items-npc_armor-biped_small-clockwork-hand-clockwork", + Simple( + "common.items.npc_armor.biped_small.haniwa.foot.archer", + ): "common-items-npc_armor-biped_small-haniwa-foot-archer", + Simple( + "common.items.npc_armor.biped_small.haniwa.foot.guard", + ): "common-items-npc_armor-biped_small-haniwa-foot-guard", + Simple( + "common.items.npc_armor.biped_small.haniwa.foot.soldier", + ): "common-items-npc_armor-biped_small-haniwa-foot-soldier", + Simple( + "common.items.npc_armor.biped_small.haniwa.head.archer", + ): "common-items-npc_armor-biped_small-haniwa-head-archer", + Simple( + "common.items.npc_armor.biped_small.haniwa.head.guard", + ): "common-items-npc_armor-biped_small-haniwa-head-guard", + Simple( + "common.items.npc_armor.biped_small.haniwa.head.soldier", + ): "common-items-npc_armor-biped_small-haniwa-head-soldier", + Simple( + "common.items.npc_armor.biped_small.haniwa.pants.archer", + ): "common-items-npc_armor-biped_small-haniwa-pants-archer", + Simple( + "common.items.npc_armor.biped_small.haniwa.pants.guard", + ): "common-items-npc_armor-biped_small-haniwa-pants-guard", + Simple( + "common.items.npc_armor.biped_small.haniwa.pants.soldier", + ): "common-items-npc_armor-biped_small-haniwa-pants-soldier", + Simple( + "common.items.npc_armor.biped_small.haniwa.chest.archer", + ): "common-items-npc_armor-biped_small-haniwa-chest-archer", + Simple( + "common.items.npc_armor.biped_small.haniwa.chest.guard", + ): "common-items-npc_armor-biped_small-haniwa-chest-guard", + Simple( + "common.items.npc_armor.biped_small.haniwa.chest.soldier", + ): "common-items-npc_armor-biped_small-haniwa-chest-soldier", + Simple( + "common.items.npc_armor.biped_small.haniwa.hand.archer", + ): "common-items-npc_armor-biped_small-haniwa-hand-archer", + Simple( + "common.items.npc_armor.biped_small.haniwa.hand.guard", + ): "common-items-npc_armor-biped_small-haniwa-hand-guard", + Simple( + "common.items.npc_armor.biped_small.haniwa.hand.soldier", + ): "common-items-npc_armor-biped_small-haniwa-hand-soldier", + Simple( + "common.items.npc_armor.biped_small.husk.foot.husk", + ): "common-items-npc_armor-biped_small-husk-foot-husk", + Simple( + "common.items.npc_armor.biped_small.husk.head.husk", + ): "common-items-npc_armor-biped_small-husk-head-husk", + Simple( + "common.items.npc_armor.biped_small.husk.pants.husk", + ): "common-items-npc_armor-biped_small-husk-pants-husk", + Simple( + "common.items.npc_armor.biped_small.husk.chest.husk", + ): "common-items-npc_armor-biped_small-husk-chest-husk", + Simple( + "common.items.npc_armor.biped_small.husk.hand.husk", + ): "common-items-npc_armor-biped_small-husk-hand-husk", + Simple( + "common.items.npc_armor.biped_small.husk.tail.husk", + ): "common-items-npc_armor-biped_small-husk-tail-husk", + Simple( + "common.items.npc_armor.biped_small.flamekeeper.foot.flamekeeper", + ): "common-items-npc_armor-biped_small-flamekeeper-foot-flamekeeper", + Simple( + "common.items.npc_armor.biped_small.flamekeeper.head.flamekeeper", + ): "common-items-npc_armor-biped_small-flamekeeper-head-flamekeeper", + Simple( + "common.items.npc_armor.biped_small.flamekeeper.pants.flamekeeper", + ): "common-items-npc_armor-biped_small-flamekeeper-pants-flamekeeper", + Simple( + "common.items.npc_armor.biped_small.flamekeeper.chest.flamekeeper", + ): "common-items-npc_armor-biped_small-flamekeeper-chest-flamekeeper", + Simple( + "common.items.npc_armor.biped_small.flamekeeper.hand.flamekeeper", + ): "common-items-npc_armor-biped_small-flamekeeper-hand-flamekeeper", + Simple( + "common.items.npc_armor.biped_small.gnome.foot.gnome", + ): "common-items-npc_armor-biped_small-gnome-foot-gnome", + Simple( + "common.items.npc_armor.biped_small.gnome.head.gnome", + ): "common-items-npc_armor-biped_small-gnome-head-gnome", + Simple( + "common.items.npc_armor.biped_small.gnome.pants.gnome", + ): "common-items-npc_armor-biped_small-gnome-pants-gnome", + Simple( + "common.items.npc_armor.biped_small.gnome.chest.gnome", + ): "common-items-npc_armor-biped_small-gnome-chest-gnome", + Simple( + "common.items.npc_armor.biped_small.gnome.hand.gnome", + ): "common-items-npc_armor-biped_small-gnome-hand-gnome", + Simple( + "common.items.npc_armor.biped_small.mandragora.foot.mandragora", + ): "common-items-npc_armor-biped_small-mandragora-foot-mandragora", + Simple( + "common.items.npc_armor.biped_small.mandragora.pants.mandragora", + ): "common-items-npc_armor-biped_small-mandragora-pants-mandragora", + Simple( + "common.items.npc_armor.biped_small.mandragora.chest.mandragora", + ): "common-items-npc_armor-biped_small-mandragora-chest-mandragora", + Simple( + "common.items.npc_armor.biped_small.mandragora.hand.mandragora", + ): "common-items-npc_armor-biped_small-mandragora-hand-mandragora", + Simple( + "common.items.npc_armor.biped_small.mandragora.tail.mandragora", + ): "common-items-npc_armor-biped_small-mandragora-tail-mandragora", + Simple( + "common.items.npc_armor.biped_small.irrwurz.foot.irrwurz", + ): "common-items-npc_armor-biped_small-irrwurz-foot-irrwurz", + Simple( + "common.items.npc_armor.biped_small.irrwurz.pants.irrwurz", + ): "common-items-npc_armor-biped_small-irrwurz-pants-irrwurz", + Simple( + "common.items.npc_armor.biped_small.irrwurz.chest.irrwurz", + ): "common-items-npc_armor-biped_small-irrwurz-chest-irrwurz", + Simple( + "common.items.npc_armor.biped_small.irrwurz.hand.irrwurz", + ): "common-items-npc_armor-biped_small-irrwurz-hand-irrwurz", + Simple( + "common.items.npc_armor.biped_small.gnoll.foot.rogue", + ): "common-items-npc_armor-biped_small-gnoll-foot-rogue", + Simple( + "common.items.npc_armor.biped_small.gnoll.foot.shaman", + ): "common-items-npc_armor-biped_small-gnoll-foot-shaman", + Simple( + "common.items.npc_armor.biped_small.gnoll.foot.trapper", + ): "common-items-npc_armor-biped_small-gnoll-foot-trapper", + Simple( + "common.items.npc_armor.biped_small.gnoll.head.rogue", + ): "common-items-npc_armor-biped_small-gnoll-head-rogue", + Simple( + "common.items.npc_armor.biped_small.gnoll.head.shaman", + ): "common-items-npc_armor-biped_small-gnoll-head-shaman", + Simple( + "common.items.npc_armor.biped_small.gnoll.head.trapper", + ): "common-items-npc_armor-biped_small-gnoll-head-trapper", + Simple( + "common.items.npc_armor.biped_small.gnoll.pants.rogue", + ): "common-items-npc_armor-biped_small-gnoll-pants-rogue", + Simple( + "common.items.npc_armor.biped_small.gnoll.pants.shaman", + ): "common-items-npc_armor-biped_small-gnoll-pants-shaman", + Simple( + "common.items.npc_armor.biped_small.gnoll.pants.trapper", + ): "common-items-npc_armor-biped_small-gnoll-pants-trapper", + Simple( + "common.items.npc_armor.biped_small.gnoll.chest.rogue", + ): "common-items-npc_armor-biped_small-gnoll-chest-rogue", + Simple( + "common.items.npc_armor.biped_small.gnoll.chest.shaman", + ): "common-items-npc_armor-biped_small-gnoll-chest-shaman", + Simple( + "common.items.npc_armor.biped_small.gnoll.chest.trapper", + ): "common-items-npc_armor-biped_small-gnoll-chest-trapper", + Simple( + "common.items.npc_armor.biped_small.gnoll.hand.rogue", + ): "common-items-npc_armor-biped_small-gnoll-hand-rogue", + Simple( + "common.items.npc_armor.biped_small.gnoll.hand.shaman", + ): "common-items-npc_armor-biped_small-gnoll-hand-shaman", + Simple( + "common.items.npc_armor.biped_small.gnoll.hand.trapper", + ): "common-items-npc_armor-biped_small-gnoll-hand-trapper", + Simple( + "common.items.npc_armor.biped_small.gnoll.tail.rogue", + ): "common-items-npc_armor-biped_small-gnoll-tail-rogue", + Simple( + "common.items.npc_armor.biped_small.gnoll.tail.shaman", + ): "common-items-npc_armor-biped_small-gnoll-tail-shaman", + Simple( + "common.items.npc_armor.biped_small.gnoll.tail.trapper", + ): "common-items-npc_armor-biped_small-gnoll-tail-trapper", + Simple( + "common.items.npc_armor.chest.leather_blue", + ): "armor-leather_blue-pants", + Simple( + "common.items.npc_armor.chest.plate_red", + ): "common-items-npc_armor-chest-plate_red", + Simple( + "common.items.npc_armor.arthropod.generic", + ): "common-items-npc_armor-arthropod-generic", + Simple( + "common.items.npc_armor.quadruped_medium.frostfang", + ): "common-items-npc_armor-quadruped_medium-frostfang", + Simple( + "common.items.npc_armor.quadruped_medium.roshwalr", + ): "common-items-npc_armor-quadruped_medium-roshwalr", + Simple( + "common.items.npc_armor.theropod.rugged", + ): "common-items-npc_armor-theropod-rugged", + Simple( + "common.items.npc_armor.back.backpack_blue", + ): "armor-misc-back-backpack", + Simple( + "common.items.npc_armor.back.leather_blue", + ): "armor-leather_blue-back", + Simple( + "common.items.npc_armor.biped_large.cyclops", + ): "common-items-npc_armor-biped_large-cyclops", + Simple( + "common.items.npc_armor.biped_large.dullahan", + ): "common-items-npc_armor-biped_large-dullahan", + Simple( + "common.items.npc_armor.biped_large.generic", + ): "common-items-npc_armor-biped_large-generic", + Simple( + "common.items.npc_armor.biped_large.gigas_frost", + ): "common-items-npc_armor-biped_large-gigas_frost", + Simple( + "common.items.npc_armor.biped_large.harvester", + ): "common-items-npc_armor-biped_large-harvester", + Simple( + "common.items.npc_armor.biped_large.mindflayer", + ): "common-items-npc_armor-biped_large-mindflayer", + Simple( + "common.items.npc_armor.biped_large.minotaur", + ): "common-items-npc_armor-biped_large-minotaur", + Simple( + "common.items.npc_armor.biped_large.tidal_warrior", + ): "common-items-npc_armor-biped_large-tidal_warrior", + Simple( + "common.items.npc_armor.biped_large.tursus", + ): "common-items-npc_armor-biped_large-tursus", + Simple( + "common.items.npc_armor.biped_large.warlock", + ): "common-items-npc_armor-biped_large-warlock", + Simple( + "common.items.npc_armor.biped_large.warlord", + ): "common-items-npc_armor-biped_large-warlord", + Simple( + "common.items.npc_armor.biped_large.yeti", + ): "common-items-npc_armor-biped_large-yeti", + Simple( + "common.items.keys.bone_key", + ): "object-key_bone", + Simple( + "common.items.keys.glass_key", + ): "object-key_glass", + Simple( + "common.items.keys.rusty_tower_key", + ): "object-key_rusty-0", + Simple( + "common.items.keys.quarry_keys.ancient", + ): "object-key_rusty-0-ancient", + Simple( + "common.items.keys.quarry_keys.backdoor", + ): "object-key_rusty-0-backdoor", + Simple( + "common.items.keys.quarry_keys.cyclops_eye", + ): "sprite-crafting_ing-animal_misc-grim_eyeball", + Simple( + "common.items.keys.quarry_keys.flamekeeper_left", + ): "items-keeper_goggle", + Simple( + "common.items.keys.quarry_keys.flamekeeper_right", + ): "items-keeper_goggle-flamekeeper_right", + Simple( + "common.items.keys.quarry_keys.overseer", + ): "object-key_rusty-0-overseer", + Simple( + "common.items.keys.quarry_keys.smelting", + ): "object-key_rusty-0-smelting", + Simple( + "common.items.weapons.shield.shield_1", + ): "weapon-shield-wood-0", + Simple( + "common.items.weapons.dagger.basic_0", + ): "weapon-dagger-dagger_basic-0", + Simple( + "common.items.weapons.dagger.cultist_0", + ): "weapon-dagger-dagger_cult-0", + Simple( + "common.items.weapons.dagger.starter_dagger", + ): "weapon-dagger-dagger_rusty", + Simple( + "common.items.weapons.bow.sagitta", + ): "weapon-bow-sagitta", + Simple( + "common.items.weapons.bow.starter", + ): "weapon-bow-starter", + Simple( + "common.items.weapons.bow.velorite", + ): "weapon-bow-velorite", + Simple( + "common.items.weapons.sword_1h.starter", + ): "weapon-sword-starter_1h", + Simple( + "common.items.weapons.axe.malachite_axe-0", + ): "weapon-axe-2haxe_malachite-0", + Simple( + "common.items.weapons.axe.parashu", + ): "weapon-axe-parashu", + Simple( + "common.items.weapons.axe.starter_axe", + ): "weapon-axe-2haxe_rusty", + Simple( + "common.items.weapons.staff.cultist_staff", + ): "weapon-staff-firestaff_cultist", + Simple( + "common.items.weapons.staff.laevateinn", + ): "weapon-staff-laevateinn", + Simple( + "common.items.weapons.staff.staff_1", + ): "weapon-staff-firestaff_starter", + Simple( + "common.items.weapons.staff.starter_staff", + ): "weapon-staff-firestaff_starter-starter_staff", + Simple( + "common.items.weapons.empty.empty", + ): "common-items-weapons-empty-empty", + Simple( + "common.items.weapons.sword.caladbolg", + ): "weapon-sword-caladbolg", + Simple( + "common.items.weapons.sword.cultist", + ): "weapon-sword-cultist", + Simple( + "common.items.weapons.sword.frost-0", + ): "weapon-sword-frost-0", + Simple( + "common.items.weapons.sword.frost-1", + ): "weapon-sword-frost-1", + Simple( + "common.items.weapons.sword.starter", + ): "weapon-sword-starter", + Simple( + "common.items.weapons.tool.broom", + ): "weapon-tool-broom-0", + Simple( + "common.items.weapons.tool.fishing_rod", + ): "weapon-tool-fishing_rod_blue-0", + Simple( + "common.items.weapons.tool.golf_club", + ): "weapon-tool-golf_club", + Simple( + "common.items.weapons.tool.hoe", + ): "weapon-tool-hoe_green", + Simple( + "common.items.weapons.tool.pickaxe", + ): "weapon-tool-pickaxe_green-0", + Simple( + "common.items.weapons.tool.pitchfork", + ): "weapon-tool-pitchfork-0", + Simple( + "common.items.weapons.tool.rake", + ): "weapon-tool-rake-0", + Simple( + "common.items.weapons.tool.shovel-0", + ): "weapon-tool-shovel_green", + Simple( + "common.items.weapons.tool.shovel-1", + ): "weapon-tool-shovel_gold", + Simple( + "common.items.weapons.sceptre.amethyst", + ): "weapon-sceptre-amethyst", + Simple( + "common.items.weapons.sceptre.belzeshrub", + ): "common-items-weapons-sceptre-belzeshrub", + Simple( + "common.items.weapons.sceptre.caduceus", + ): "weapon-sceptre-caduceus", + Simple( + "common.items.weapons.sceptre.root_evil", + ): "weapon-sceptre-root_evil", + Simple( + "common.items.weapons.sceptre.sceptre_velorite_0", + ): "weapon-sceptre-ore-nature", + Simple( + "common.items.weapons.sceptre.starter_sceptre", + ): "weapon-sceptre-wood-simple", + Simple( + "common.items.weapons.hammer.burnt_drumstick", + ): "weapon-hammer-burnt_drumstick", + Simple( + "common.items.weapons.hammer.cultist_purp_2h-0", + ): "weapon-hammer-cult_purp-0", + Simple( + "common.items.weapons.hammer.flimsy_hammer", + ): "weapon-hammer-2hhammer_flimsy", + Simple( + "common.items.weapons.hammer.hammer_1", + ): "weapon-hammer-2hhammer_rusty", + Simple( + "common.items.weapons.hammer.mjolnir", + ): "weapon-hammer-2hhammer_mjolnir", + Simple( + "common.items.weapons.hammer.starter_hammer", + ): "weapon-hammer-2hhammer_rusty-starter_hammer", + Simple( + "common.items.armor.hide.carapace.back", + ): "armor-hide-carapace-back", + Simple( + "common.items.armor.hide.carapace.belt", + ): "armor-hide-carapace-belt", + Simple( + "common.items.armor.hide.carapace.chest", + ): "armor-hide-carapace-chest", + Simple( + "common.items.armor.hide.carapace.foot", + ): "armor-hide-carapace-foot", + Simple( + "common.items.armor.hide.carapace.hand", + ): "armor-hide-carapace-hand", + Simple( + "common.items.armor.hide.carapace.pants", + ): "armor-hide-carapace-pants", + Simple( + "common.items.armor.hide.carapace.shoulder", + ): "armor-hide-carapace-shoulder", + Simple( + "common.items.armor.hide.primal.back", + ): "armor-hide-primal-back", + Simple( + "common.items.armor.hide.primal.belt", + ): "armor-hide-primal-belt", + Simple( + "common.items.armor.hide.primal.chest", + ): "armor-hide-primal-chest", + Simple( + "common.items.armor.hide.primal.foot", + ): "armor-hide-primal-foot", + Simple( + "common.items.armor.hide.primal.hand", + ): "armor-hide-primal-hand", + Simple( + "common.items.armor.hide.primal.pants", + ): "armor-hide-primal-pants", + Simple( + "common.items.armor.hide.primal.shoulder", + ): "armor-hide-primal-shoulder", + Simple( + "common.items.armor.hide.leather.back", + ): "armor-hide-leather-back", + Simple( + "common.items.armor.hide.leather.belt", + ): "armor-hide-leather-belt", + Simple( + "common.items.armor.hide.leather.chest", + ): "armor-hide-leather-chest", + Simple( + "common.items.armor.hide.leather.foot", + ): "armor-hide-leather-foot", + Simple( + "common.items.armor.hide.leather.hand", + ): "armor-hide-leather-hand", + Simple( + "common.items.armor.hide.leather.head", + ): "armor-misc-head-leather-0", + Simple( + "common.items.armor.hide.leather.pants", + ): "armor-hide-leather-pants", + Simple( + "common.items.armor.hide.leather.shoulder", + ): "armor-hide-leather-shoulder", + Simple( + "common.items.armor.hide.rawhide.back", + ): "armor-hide-rawhide-back", + Simple( + "common.items.armor.hide.rawhide.belt", + ): "armor-hide-rawhide-belt", + Simple( + "common.items.armor.hide.rawhide.chest", + ): "armor-hide-rawhide-chest", + Simple( + "common.items.armor.hide.rawhide.foot", + ): "armor-hide-rawhide-foot", + Simple( + "common.items.armor.hide.rawhide.hand", + ): "armor-hide-rawhide-hand", + Simple( + "common.items.armor.hide.rawhide.pants", + ): "armor-hide-rawhide-pants", + Simple( + "common.items.armor.hide.rawhide.shoulder", + ): "armor-hide-rawhide-shoulder", + Simple( + "common.items.armor.hide.scale.back", + ): "armor-hide-scale-back", + Simple( + "common.items.armor.hide.scale.belt", + ): "armor-hide-scale-belt", + Simple( + "common.items.armor.hide.scale.chest", + ): "armor-hide-scale-chest", + Simple( + "common.items.armor.hide.scale.foot", + ): "armor-hide-scale-foot", + Simple( + "common.items.armor.hide.scale.hand", + ): "armor-hide-scale-hand", + Simple( + "common.items.armor.hide.scale.pants", + ): "armor-hide-scale-pants", + Simple( + "common.items.armor.hide.scale.shoulder", + ): "armor-hide-scale-shoulder", + Simple( + "common.items.armor.hide.dragonscale.back", + ): "armor-hide-dragonscale-back", + Simple( + "common.items.armor.hide.dragonscale.belt", + ): "armor-hide-dragonscale-belt", + Simple( + "common.items.armor.hide.dragonscale.chest", + ): "armor-hide-dragonscale-chest", + Simple( + "common.items.armor.hide.dragonscale.foot", + ): "armor-hide-dragonscale-foot", + Simple( + "common.items.armor.hide.dragonscale.hand", + ): "armor-hide-dragonscale-hand", + Simple( + "common.items.armor.hide.dragonscale.pants", + ): "armor-hide-dragonscale-pants", + Simple( + "common.items.armor.hide.dragonscale.shoulder", + ): "armor-hide-dragonscale-shoulder", + Simple( + "common.items.armor.cloth_blue.belt", + ): "armor-cloth_blue-belt", + Simple( + "common.items.armor.cloth_blue.chest", + ): "armor-cloth_blue-chest", + Simple( + "common.items.armor.cloth_blue.foot", + ): "armor-cloth_blue-foot", + Simple( + "common.items.armor.cloth_blue.hand", + ): "armor-cloth_blue-hand", + Simple( + "common.items.armor.cloth_blue.pants", + ): "armor-cloth_blue-pants", + Simple( + "common.items.armor.cloth_blue.shoulder_0", + ): "armor-cloth_blue-shoulder_0", + Simple( + "common.items.armor.cloth_blue.shoulder_1", + ): "armor-cloth_blue-shoulder_1", + Simple( + "common.items.armor.alchemist.belt", + ): "common-items-armor-alchemist-belt", + Simple( + "common.items.armor.alchemist.chest", + ): "common-items-armor-alchemist-chest", + Simple( + "common.items.armor.alchemist.hat", + ): "common-items-armor-alchemist-hat", + Simple( + "common.items.armor.alchemist.pants", + ): "common-items-armor-alchemist-pants", + Simple( + "common.items.armor.velorite_mage.back", + ): "armor-velorite_battlemage-back", + Simple( + "common.items.armor.velorite_mage.belt", + ): "armor-velorite_battlemage-belt", + Simple( + "common.items.armor.velorite_mage.chest", + ): "armor-velorite_battlemage-chest", + Simple( + "common.items.armor.velorite_mage.foot", + ): "armor-velorite_battlemage-foot", + Simple( + "common.items.armor.velorite_mage.hand", + ): "armor-velorite_battlemage-hand", + Simple( + "common.items.armor.velorite_mage.pants", + ): "armor-velorite_battlemage-pants", + Simple( + "common.items.armor.velorite_mage.shoulder", + ): "armor-velorite_battlemage-shoulder", + Simple( + "common.items.armor.boreal.back", + ): "armor-boreal-back", + Simple( + "common.items.armor.boreal.belt", + ): "armor-boreal-belt", + Simple( + "common.items.armor.boreal.chest", + ): "armor-boreal-chest", + Simple( + "common.items.armor.boreal.foot", + ): "armor-boreal-foot", + Simple( + "common.items.armor.boreal.hand", + ): "armor-boreal-hand", + Simple( + "common.items.armor.boreal.pants", + ): "armor-boreal-pants", + Simple( + "common.items.armor.boreal.shoulder", + ): "armor-boreal-shoulder", + Simple( + "common.items.armor.assassin.belt", + ): "armor-assassin-belt", + Simple( + "common.items.armor.assassin.chest", + ): "armor-assassin-chest", + Simple( + "common.items.armor.assassin.foot", + ): "armor-assassin-foot", + Simple( + "common.items.armor.assassin.hand", + ): "armor-assassin-hand", + Simple( + "common.items.armor.assassin.head", + ): "armor-misc-head-assa_mask-0", + Simple( + "common.items.armor.assassin.pants", + ): "armor-assassin-pants", + Simple( + "common.items.armor.assassin.shoulder", + ): "armor-assassin-shoulder", + Simple( + "common.items.armor.brinestone.back", + ): "armor-brinestone-back", + Simple( + "common.items.armor.brinestone.belt", + ): "armor-brinestone-belt", + Simple( + "common.items.armor.brinestone.chest", + ): "armor-brinestone-chest", + Simple( + "common.items.armor.brinestone.crown", + ): "armor-brinestone-crown", + Simple( + "common.items.armor.brinestone.foot", + ): "armor-brinestone-foot", + Simple( + "common.items.armor.brinestone.hand", + ): "armor-brinestone-hand", + Simple( + "common.items.armor.brinestone.pants", + ): "armor-brinestone-pants", + Simple( + "common.items.armor.brinestone.shoulder", + ): "armor-brinestone-shoulder", + Simple( + "common.items.armor.misc.foot.iceskate", + ): "armor-misc-foot-iceskate", + Simple( + "common.items.armor.misc.foot.jackalope_slippers", + ): "armor-misc-foot-jackalope", + Simple( + "common.items.armor.misc.foot.sandals", + ): "armor-misc-foot-cloth_sandal", + Simple( + "common.items.armor.misc.foot.ski", + ): "armor-misc-foot-ski", + Simple( + "common.items.armor.misc.neck.abyssal_gorget", + ): "armor-misc-neck-abyssal_gorget", + Simple( + "common.items.armor.misc.neck.amethyst", + ): "armor-misc-neck-amethyst", + Simple( + "common.items.armor.misc.neck.ankh_of_life", + ): "armor-misc-neck-ankh_of_life", + Simple( + "common.items.armor.misc.neck.carcanet_of_wrath", + ): "armor-misc-neck-carcanet_of_wrath", + Simple( + "common.items.armor.misc.neck.diamond", + ): "armor-misc-neck-diamond", + Simple( + "common.items.armor.misc.neck.emerald", + ): "armor-misc-neck-emerald", + Simple( + "common.items.armor.misc.neck.fang", + ): "armor-misc-neck-fang", + Simple( + "common.items.armor.misc.neck.gem_of_resilience", + ): "armor-misc-neck-resilience_gem", + Simple( + "common.items.armor.misc.neck.gold", + ): "armor-misc-neck-gold", + Simple( + "common.items.armor.misc.neck.haniwa_talisman", + ): "armor-misc-neck-haniwa_talisman", + Simple( + "common.items.armor.misc.neck.honeycomb_pendant", + ): "armor-misc-neck-honeycomb_pendant", + Simple( + "common.items.armor.misc.neck.pendant_of_protection", + ): "armor-misc-neck-pendant_of_protection", + Simple( + "common.items.armor.misc.neck.ruby", + ): "armor-misc-neck-ruby", + Simple( + "common.items.armor.misc.neck.sapphire", + ): "armor-misc-neck-sapphire", + Simple( + "common.items.armor.misc.neck.scratched", + ): "armor-misc-neck-scratched", + Simple( + "common.items.armor.misc.neck.shell", + ): "armor-misc-neck-shell", + Simple( + "common.items.armor.misc.neck.topaz", + ): "armor-misc-neck-topaz", + Simple( + "common.items.armor.misc.head.bamboo_twig", + ): "armor-misc-head-bamboo_twig", + Simple( + "common.items.armor.misc.head.bear_bonnet", + ): "armor-misc-head-bear_bonnet", + Simple( + "common.items.armor.misc.head.boreal_warhelm", + ): "armor-misc-head-boreal_warhelm", + Simple( + "common.items.armor.misc.head.crown", + ): "armor-misc-head-crown", + Simple( + "common.items.armor.misc.head.exclamation", + ): "armor-misc-head-exclamation", + Simple( + "common.items.armor.misc.head.facegourd", + ): "armor-misc-head-facegourd", + Simple( + "common.items.armor.misc.head.gnarling_mask", + ): "armor-misc-head-gnarling_mask", + Simple( + "common.items.armor.misc.head.headband", + ): "common-items-armor-misc-head-headband", + Simple( + "common.items.armor.misc.head.helmet", + ): "armor-misc-head-helmet", + Simple( + "common.items.armor.misc.head.hog_hood", + ): "armor-misc-head-hog_hood", + Simple( + "common.items.armor.misc.head.hood", + ): "armor-misc-head-hood", + Simple( + "common.items.armor.misc.head.hood_dark", + ): "armor-misc-head-hood_dark", + Simple( + "common.items.armor.misc.head.howl_cowl", + ): "armor-misc-head-howl_cowl", + Simple( + "common.items.armor.misc.head.mitre", + ): "armor-misc-head-mitre", + Simple( + "common.items.armor.misc.head.spikeguard", + ): "armor-misc-head-spikeguard", + Simple( + "common.items.armor.misc.head.straw", + ): "armor-misc-head-straw", + Simple( + "common.items.armor.misc.head.wanderers_hat", + ): "armor-misc-head-wanderers_hat", + Simple( + "common.items.armor.misc.head.winged_coronet", + ): "armor-misc-head-winged_coronet", + Simple( + "common.items.armor.misc.head.bandana.red", + ): "armor-misc-head-bandana-red", + Simple( + "common.items.armor.misc.head.bandana.thief", + ): "armor-misc-head-bandana-thief", + Simple( + "common.items.armor.misc.pants.hunting", + ): "armor-misc-pants-grayscale", + Simple( + "common.items.armor.misc.pants.worker_blue", + ): "armor-misc-pants-worker_blue", + Simple( + "common.items.armor.misc.pants.worker_brown", + ): "armor-misc-pants-worker_brown", + Simple( + "common.items.armor.misc.tabard.admin", + ): "armor-tabard_admin", + Simple( + "common.items.armor.misc.shoulder.iron_spikes", + ): "armor-misc-shoulder-iron_spikes", + Simple( + "common.items.armor.misc.shoulder.leather_iron_0", + ): "armor-misc-shoulder-leather_iron_0", + Simple( + "common.items.armor.misc.shoulder.leather_iron_1", + ): "armor-misc-shoulder-leather_iron_1", + Simple( + "common.items.armor.misc.shoulder.leather_iron_2", + ): "armor-misc-shoulder-leather_iron_2", + Simple( + "common.items.armor.misc.shoulder.leather_iron_3", + ): "armor-misc-shoulder-leather_iron_3", + Simple( + "common.items.armor.misc.shoulder.leather_strip", + ): "armor-misc-shoulder-leather_strip", + Simple( + "common.items.armor.misc.chest.worker_green_0", + ): "armor-misc-chest-worker_green", + Simple( + "common.items.armor.misc.chest.worker_green_1", + ): "armor-misc-chest-shirt_white", + Simple( + "common.items.armor.misc.chest.worker_orange_0", + ): "armor-misc-chest-worker_green-worker_orange_0", + Simple( + "common.items.armor.misc.chest.worker_orange_1", + ): "armor-misc-chest-shirt_white-worker_orange_1", + Simple( + "common.items.armor.misc.chest.worker_purple_0", + ): "armor-misc-chest-worker_green-worker_purple_0", + Simple( + "common.items.armor.misc.chest.worker_purple_1", + ): "armor-misc-chest-shirt_white-worker_purple_1", + Simple( + "common.items.armor.misc.chest.worker_purple_brown", + ): "armor-misc-chest-worker_purp_brown", + Simple( + "common.items.armor.misc.chest.worker_red_0", + ): "armor-misc-chest-worker_green-worker_red_0", + Simple( + "common.items.armor.misc.chest.worker_red_1", + ): "armor-misc-chest-shirt_white-worker_red_1", + Simple( + "common.items.armor.misc.chest.worker_yellow_0", + ): "armor-misc-chest-worker_green-worker_yellow_0", + Simple( + "common.items.armor.misc.chest.worker_yellow_1", + ): "armor-misc-chest-shirt_white-worker_yellow_1", + Simple( + "common.items.armor.misc.ring.amethyst", + ): "armor-misc-ring-amethyst", + Simple( + "common.items.armor.misc.ring.diamond", + ): "armor-misc-ring-diamond", + Simple( + "common.items.armor.misc.ring.emerald", + ): "armor-misc-ring-emerald", + Simple( + "common.items.armor.misc.ring.gold", + ): "armor-misc-ring-gold", + Simple( + "common.items.armor.misc.ring.ruby", + ): "armor-misc-ring-ruby", + Simple( + "common.items.armor.misc.ring.sapphire", + ): "armor-misc-ring-sapphire", + Simple( + "common.items.armor.misc.ring.scratched", + ): "armor-misc-ring-scratched", + Simple( + "common.items.armor.misc.ring.topaz", + ): "armor-misc-ring-topaz", + Simple( + "common.items.armor.misc.bag.heavy_seabag", + ): "armor-misc-bag-heavy_seabag", + Simple( + "common.items.armor.misc.bag.knitted_red_pouch", + ): "armor-misc-bag-knitted_red_pouch", + Simple( + "common.items.armor.misc.bag.liana_kit", + ): "armor-misc-bag-liana_kit", + Simple( + "common.items.armor.misc.bag.mindflayer_spellbag", + ): "armor-misc-bag-mindflayer_spellbag", + Simple( + "common.items.armor.misc.bag.reliable_backpack", + ): "armor-misc-bag-reliable_backpack", + Simple( + "common.items.armor.misc.bag.reliable_leather_pack", + ): "armor-misc-bag-reliable_leather_pack", + Simple( + "common.items.armor.misc.bag.soulkeeper_cursed", + ): "armor-misc-bag-soulkeeper_cursed", + Simple( + "common.items.armor.misc.bag.soulkeeper_pure", + ): "armor-misc-bag-soulkeeper_pure", + Simple( + "common.items.armor.misc.bag.sturdy_red_backpack", + ): "armor-misc-bag-sturdy_red_backpack", + Simple( + "common.items.armor.misc.bag.tiny_leather_pouch", + ): "armor-misc-bag-tiny_leather_pouch", + Simple( + "common.items.armor.misc.bag.tiny_red_pouch", + ): "armor-misc-bag-tiny_red_pouch", + Simple( + "common.items.armor.misc.bag.troll_hide_pack", + ): "armor-misc-bag-troll_hide_pack", + Simple( + "common.items.armor.misc.bag.woven_red_bag", + ): "armor-misc-bag-woven_red_bag", + Simple( + "common.items.armor.misc.back.admin", + ): "armor-misc-back-admin", + Simple( + "common.items.armor.misc.back.backpack", + ): "armor-misc-back-backpack-backpack", + Simple( + "common.items.armor.misc.back.dungeon_purple", + ): "armor-misc-back-dungeon_purple", + Simple( + "common.items.armor.misc.back.short_0", + ): "armor-misc-back-short-0", + Simple( + "common.items.armor.misc.back.short_1", + ): "armor-misc-back-short-1", + Simple( + "common.items.armor.savage.back", + ): "armor-savage-back", + Simple( + "common.items.armor.savage.belt", + ): "armor-savage-belt", + Simple( + "common.items.armor.savage.chest", + ): "armor-savage-chest", + Simple( + "common.items.armor.savage.foot", + ): "armor-savage-foot", + Simple( + "common.items.armor.savage.hand", + ): "armor-savage-hand", + Simple( + "common.items.armor.savage.pants", + ): "armor-savage-pants", + Simple( + "common.items.armor.savage.shoulder", + ): "armor-savage-shoulder", + Simple( + "common.items.armor.witch.back", + ): "common-items-armor-witch-back", + Simple( + "common.items.armor.witch.belt", + ): "common-items-armor-witch-belt", + Simple( + "common.items.armor.witch.chest", + ): "common-items-armor-witch-chest", + Simple( + "common.items.armor.witch.foot", + ): "common-items-armor-witch-foot", + Simple( + "common.items.armor.witch.hand", + ): "common-items-armor-witch-hand", + Simple( + "common.items.armor.witch.hat", + ): "armor-witch-hat", + Simple( + "common.items.armor.witch.pants", + ): "common-items-armor-witch-pants", + Simple( + "common.items.armor.witch.shoulder", + ): "common-items-armor-witch-shoulder", + Simple( + "common.items.armor.pirate.belt", + ): "common-items-armor-pirate-belt", + Simple( + "common.items.armor.pirate.chest", + ): "common-items-armor-pirate-chest", + Simple( + "common.items.armor.pirate.foot", + ): "common-items-armor-pirate-foot", + Simple( + "common.items.armor.pirate.hand", + ): "common-items-armor-pirate-hand", + Simple( + "common.items.armor.pirate.hat", + ): "armor-pirate-hat", + Simple( + "common.items.armor.pirate.pants", + ): "common-items-armor-pirate-pants", + Simple( + "common.items.armor.pirate.shoulder", + ): "common-items-armor-pirate-shoulder", + Simple( + "common.items.armor.miner.back", + ): "common-items-armor-miner-back", + Simple( + "common.items.armor.miner.belt", + ): "common-items-armor-miner-belt", + Simple( + "common.items.armor.miner.chest", + ): "common-items-armor-miner-chest", + Simple( + "common.items.armor.miner.foot", + ): "common-items-armor-miner-foot", + Simple( + "common.items.armor.miner.hand", + ): "common-items-armor-miner-hand", + Simple( + "common.items.armor.miner.helmet", + ): "armor-miner-helmet", + Simple( + "common.items.armor.miner.pants", + ): "common-items-armor-miner-pants", + Simple( + "common.items.armor.miner.shoulder", + ): "common-items-armor-miner-shoulder", + Simple( + "common.items.armor.miner.shoulder_captain", + ): "common-items-armor-miner-shoulder_captain", + Simple( + "common.items.armor.miner.shoulder_flame", + ): "common-items-armor-miner-shoulder_flame", + Simple( + "common.items.armor.miner.shoulder_overseer", + ): "common-items-armor-miner-shoulder_overseer", + Simple( + "common.items.armor.chef.belt", + ): "common-items-armor-chef-belt", + Simple( + "common.items.armor.chef.chest", + ): "common-items-armor-chef-chest", + Simple( + "common.items.armor.chef.hat", + ): "common-items-armor-chef-hat", + Simple( + "common.items.armor.chef.pants", + ): "common-items-armor-chef-pants", + Simple( + "common.items.armor.blacksmith.belt", + ): "common-items-armor-blacksmith-belt", + Simple( + "common.items.armor.blacksmith.chest", + ): "common-items-armor-blacksmith-chest", + Simple( + "common.items.armor.blacksmith.hand", + ): "common-items-armor-blacksmith-hand", + Simple( + "common.items.armor.blacksmith.hat", + ): "common-items-armor-blacksmith-hat", + Simple( + "common.items.armor.blacksmith.pants", + ): "common-items-armor-blacksmith-pants", + Simple( + "common.items.armor.bonerattler.belt", + ): "armor-bonerattler-belt", + Simple( + "common.items.armor.bonerattler.chest", + ): "armor-bonerattler-chest", + Simple( + "common.items.armor.bonerattler.foot", + ): "armor-bonerattler-foot", + Simple( + "common.items.armor.bonerattler.hand", + ): "armor-bonerattler-hand", + Simple( + "common.items.armor.bonerattler.pants", + ): "armor-bonerattler-pants", + Simple( + "common.items.armor.bonerattler.shoulder", + ): "armor-bonerattler-shoulder", + Simple( + "common.items.armor.cardinal.belt", + ): "armor-cardinal-belt", + Simple( + "common.items.armor.cardinal.chest", + ): "armor-cardinal-chest", + Simple( + "common.items.armor.cardinal.foot", + ): "armor-cardinal-foot", + Simple( + "common.items.armor.cardinal.hand", + ): "armor-cardinal-hand", + Simple( + "common.items.armor.cardinal.mitre", + ): "armor-cardinal-mitre", + Simple( + "common.items.armor.cardinal.pants", + ): "armor-cardinal-pants", + Simple( + "common.items.armor.cardinal.shoulder", + ): "armor-cardinal-shoulder", + Simple( + "common.items.armor.twigsleaves.belt", + ): "armor-twigsleaves-belt", + Simple( + "common.items.armor.twigsleaves.chest", + ): "armor-twigsleaves-chest", + Simple( + "common.items.armor.twigsleaves.foot", + ): "armor-twigsleaves-foot", + Simple( + "common.items.armor.twigsleaves.hand", + ): "armor-twigsleaves-hand", + Simple( + "common.items.armor.twigsleaves.pants", + ): "armor-twigsleaves-pants", + Simple( + "common.items.armor.twigsleaves.shoulder", + ): "armor-twigsleaves-shoulder", + Simple( + "common.items.armor.twigsflowers.belt", + ): "armor-twigsflowers-belt", + Simple( + "common.items.armor.twigsflowers.chest", + ): "armor-twigsflowers-chest", + Simple( + "common.items.armor.twigsflowers.foot", + ): "armor-twigsflowers-foot", + Simple( + "common.items.armor.twigsflowers.hand", + ): "armor-twigsflowers-hand", + Simple( + "common.items.armor.twigsflowers.pants", + ): "armor-twigsflowers-pants", + Simple( + "common.items.armor.twigsflowers.shoulder", + ): "armor-twigsflowers-shoulder", + Simple( + "common.items.armor.leather_plate.belt", + ): "armor-leather_plate-belt", + Simple( + "common.items.armor.leather_plate.chest", + ): "armor-leather_plate-chest", + Simple( + "common.items.armor.leather_plate.foot", + ): "armor-leather_plate-foot", + Simple( + "common.items.armor.leather_plate.hand", + ): "armor-leather_plate-hand", + Simple( + "common.items.armor.leather_plate.helmet", + ): "common-items-armor-leather_plate-helmet", + Simple( + "common.items.armor.leather_plate.pants", + ): "armor-leather_plate-pants", + Simple( + "common.items.armor.leather_plate.shoulder", + ): "armor-leather_plate-shoulder", + Simple( + "common.items.armor.mail.bloodsteel.back", + ): "armor-mail-bloodsteel-back", + Simple( + "common.items.armor.mail.bloodsteel.belt", + ): "armor-mail-bloodsteel-belt", + Simple( + "common.items.armor.mail.bloodsteel.chest", + ): "armor-mail-bloodsteel-chest", + Simple( + "common.items.armor.mail.bloodsteel.foot", + ): "armor-mail-bloodsteel-foot", + Simple( + "common.items.armor.mail.bloodsteel.hand", + ): "armor-mail-bloodsteel-hand", + Simple( + "common.items.armor.mail.bloodsteel.pants", + ): "armor-mail-bloodsteel-pants", + Simple( + "common.items.armor.mail.bloodsteel.shoulder", + ): "armor-mail-bloodsteel-shoulder", + Simple( + "common.items.armor.mail.cobalt.back", + ): "armor-mail-cobalt-back", + Simple( + "common.items.armor.mail.cobalt.belt", + ): "armor-mail-cobalt-belt", + Simple( + "common.items.armor.mail.cobalt.chest", + ): "armor-mail-cobalt-chest", + Simple( + "common.items.armor.mail.cobalt.foot", + ): "armor-mail-cobalt-foot", + Simple( + "common.items.armor.mail.cobalt.hand", + ): "armor-mail-cobalt-hand", + Simple( + "common.items.armor.mail.cobalt.pants", + ): "armor-mail-cobalt-pants", + Simple( + "common.items.armor.mail.cobalt.shoulder", + ): "armor-mail-cobalt-shoulder", + Simple( + "common.items.armor.mail.bronze.back", + ): "armor-mail-bronze-back", + Simple( + "common.items.armor.mail.bronze.belt", + ): "armor-mail-bronze-belt", + Simple( + "common.items.armor.mail.bronze.chest", + ): "armor-mail-bronze-chest", + Simple( + "common.items.armor.mail.bronze.foot", + ): "armor-mail-bronze-foot", + Simple( + "common.items.armor.mail.bronze.hand", + ): "armor-mail-bronze-hand", + Simple( + "common.items.armor.mail.bronze.pants", + ): "armor-mail-bronze-pants", + Simple( + "common.items.armor.mail.bronze.shoulder", + ): "armor-mail-bronze-shoulder", + Simple( + "common.items.armor.mail.orichalcum.back", + ): "armor-mail-orichalcum-6", + Simple( + "common.items.armor.mail.orichalcum.belt", + ): "armor-mail-orichalcum-2", + Simple( + "common.items.armor.mail.orichalcum.chest", + ): "armor-mail-orichalcum", + Simple( + "common.items.armor.mail.orichalcum.foot", + ): "armor-mail-orichalcum-3", + Simple( + "common.items.armor.mail.orichalcum.hand", + ): "armor-mail-orichalcum-4", + Simple( + "common.items.armor.mail.orichalcum.pants", + ): "armor-mail-orichalcum-1", + Simple( + "common.items.armor.mail.orichalcum.shoulder", + ): "armor-mail-orichalcum-5", + Simple( + "common.items.armor.mail.steel.back", + ): "armor-mail-steel-back", + Simple( + "common.items.armor.mail.steel.belt", + ): "armor-mail-steel-belt", + Simple( + "common.items.armor.mail.steel.chest", + ): "armor-mail-steel-chest", + Simple( + "common.items.armor.mail.steel.foot", + ): "armor-mail-steel-foot", + Simple( + "common.items.armor.mail.steel.hand", + ): "armor-mail-steel-hand", + Simple( + "common.items.armor.mail.steel.pants", + ): "armor-mail-steel-pants", + Simple( + "common.items.armor.mail.steel.shoulder", + ): "armor-mail-steel-shoulder", + Simple( + "common.items.armor.mail.iron.back", + ): "armor-mail-iron-back", + Simple( + "common.items.armor.mail.iron.belt", + ): "armor-mail-iron-belt", + Simple( + "common.items.armor.mail.iron.chest", + ): "armor-mail-iron-chest", + Simple( + "common.items.armor.mail.iron.foot", + ): "armor-mail-iron-foot", + Simple( + "common.items.armor.mail.iron.hand", + ): "armor-mail-iron-hand", + Simple( + "common.items.armor.mail.iron.pants", + ): "armor-mail-iron-pants", + Simple( + "common.items.armor.mail.iron.shoulder", + ): "armor-mail-iron-shoulder", + Simple( + "common.items.armor.cloth_purple.belt", + ): "armor-cloth_purple-belt", + Simple( + "common.items.armor.cloth_purple.chest", + ): "armor-cloth_purple-chest", + Simple( + "common.items.armor.cloth_purple.foot", + ): "armor-cloth_purple-foot", + Simple( + "common.items.armor.cloth_purple.hand", + ): "armor-cloth_purple-hand", + Simple( + "common.items.armor.cloth_purple.pants", + ): "armor-cloth_purple-pants", + Simple( + "common.items.armor.cloth_purple.shoulder", + ): "armor-cloth_purple-shoulder", + Simple( + "common.items.armor.rugged.chest", + ): "armor-rugged-chest", + Simple( + "common.items.armor.rugged.pants", + ): "armor-rugged-pants", + Simple( + "common.items.armor.cloth_green.belt", + ): "armor-cloth_green-belt", + Simple( + "common.items.armor.cloth_green.chest", + ): "armor-cloth_green-chest", + Simple( + "common.items.armor.cloth_green.foot", + ): "armor-cloth_green-foot", + Simple( + "common.items.armor.cloth_green.hand", + ): "armor-cloth_green-hand", + Simple( + "common.items.armor.cloth_green.pants", + ): "armor-cloth_green-pants", + Simple( + "common.items.armor.cloth_green.shoulder", + ): "armor-cloth_green-shoulder", + Simple( + "common.items.armor.merchant.back", + ): "armor-merchant-back", + Simple( + "common.items.armor.merchant.belt", + ): "armor-merchant-belt", + Simple( + "common.items.armor.merchant.chest", + ): "armor-merchant-chest", + Simple( + "common.items.armor.merchant.foot", + ): "armor-merchant-foot", + Simple( + "common.items.armor.merchant.hand", + ): "armor-merchant-hand", + Simple( + "common.items.armor.merchant.pants", + ): "armor-merchant-pants", + Simple( + "common.items.armor.merchant.shoulder", + ): "armor-merchant-shoulder_l", + Simple( + "common.items.armor.merchant.turban", + ): "armor-merchant-turban", + Simple( + "common.items.armor.tarasque.belt", + ): "armor-tarasque-belt", + Simple( + "common.items.armor.tarasque.chest", + ): "armor-tarasque-chest", + Simple( + "common.items.armor.tarasque.foot", + ): "armor-tarasque-foot", + Simple( + "common.items.armor.tarasque.hand", + ): "armor-tarasque-hand", + Simple( + "common.items.armor.tarasque.pants", + ): "armor-tarasque-pants", + Simple( + "common.items.armor.tarasque.shoulder", + ): "armor-tarasque-shoulder", + Simple( + "common.items.armor.twigs.belt", + ): "armor-twigs-belt", + Simple( + "common.items.armor.twigs.chest", + ): "armor-twigs-chest", + Simple( + "common.items.armor.twigs.foot", + ): "armor-twigs-foot", + Simple( + "common.items.armor.twigs.hand", + ): "armor-twigs-hand", + Simple( + "common.items.armor.twigs.pants", + ): "armor-twigs-pants", + Simple( + "common.items.armor.twigs.shoulder", + ): "armor-twigs-shoulder", + Simple( + "common.items.armor.cultist.bandana", + ): "armor-cultist-bandana", + Simple( + "common.items.armor.cultist.belt", + ): "armor-cultist-belt", + Simple( + "common.items.armor.cultist.chest", + ): "armor-cultist-chest", + Simple( + "common.items.armor.cultist.foot", + ): "armor-cultist-foot", + Simple( + "common.items.armor.cultist.hand", + ): "armor-cultist-hand", + Simple( + "common.items.armor.cultist.necklace", + ): "armor-cultist-necklace", + Simple( + "common.items.armor.cultist.pants", + ): "armor-cultist-pants", + Simple( + "common.items.armor.cultist.ring", + ): "armor-cultist-ring", + Simple( + "common.items.armor.cultist.shoulder", + ): "armor-cultist-shoulder", + Simple( + "common.items.armor.cloth.moonweave.back", + ): "armor-cloth-moonweave-back", + Simple( + "common.items.armor.cloth.moonweave.belt", + ): "armor-cloth-moonweave-belt", + Simple( + "common.items.armor.cloth.moonweave.chest", + ): "armor-cloth-moonweave-chest", + Simple( + "common.items.armor.cloth.moonweave.foot", + ): "armor-cloth-moonweave-foot", + Simple( + "common.items.armor.cloth.moonweave.hand", + ): "armor-cloth-moonweave-hand", + Simple( + "common.items.armor.cloth.moonweave.pants", + ): "armor-cloth-moonweave-pants", + Simple( + "common.items.armor.cloth.moonweave.shoulder", + ): "armor-cloth-moonweave-shoulder", + Simple( + "common.items.armor.cloth.linen.back", + ): "armor-cloth-linen-back", + Simple( + "common.items.armor.cloth.linen.belt", + ): "armor-cloth-linen-belt", + Simple( + "common.items.armor.cloth.linen.chest", + ): "armor-cloth-linen-chest", + Simple( + "common.items.armor.cloth.linen.foot", + ): "armor-cloth-linen-foot", + Simple( + "common.items.armor.cloth.linen.hand", + ): "armor-cloth-linen-hand", + Simple( + "common.items.armor.cloth.linen.pants", + ): "armor-cloth-linen-pants", + Simple( + "common.items.armor.cloth.linen.shoulder", + ): "armor-cloth-linen-shoulder", + Simple( + "common.items.armor.cloth.sunsilk.back", + ): "armor-cloth-sunsilk-back", + Simple( + "common.items.armor.cloth.sunsilk.belt", + ): "armor-cloth-sunsilk-belt", + Simple( + "common.items.armor.cloth.sunsilk.chest", + ): "armor-cloth-sunsilk-chest", + Simple( + "common.items.armor.cloth.sunsilk.foot", + ): "armor-cloth-sunsilk-foot", + Simple( + "common.items.armor.cloth.sunsilk.hand", + ): "armor-cloth-sunsilk-hand", + Simple( + "common.items.armor.cloth.sunsilk.pants", + ): "armor-cloth-sunsilk-pants", + Simple( + "common.items.armor.cloth.sunsilk.shoulder", + ): "armor-cloth-sunsilk-shoulder", + Simple( + "common.items.armor.cloth.woolen.back", + ): "armor-cloth-woolen-back", + Simple( + "common.items.armor.cloth.woolen.belt", + ): "armor-cloth-woolen-belt", + Simple( + "common.items.armor.cloth.woolen.chest", + ): "armor-cloth-woolen-chest", + Simple( + "common.items.armor.cloth.woolen.foot", + ): "armor-cloth-woolen-foot", + Simple( + "common.items.armor.cloth.woolen.hand", + ): "armor-cloth-woolen-hand", + Simple( + "common.items.armor.cloth.woolen.pants", + ): "armor-cloth-woolen-pants", + Simple( + "common.items.armor.cloth.woolen.shoulder", + ): "armor-cloth-woolen-shoulder", + Simple( + "common.items.armor.cloth.silken.back", + ): "armor-cloth-silken-back", + Simple( + "common.items.armor.cloth.silken.belt", + ): "armor-cloth-silken-belt", + Simple( + "common.items.armor.cloth.silken.chest", + ): "armor-cloth-silken-chest", + Simple( + "common.items.armor.cloth.silken.foot", + ): "armor-cloth-silken-foot", + Simple( + "common.items.armor.cloth.silken.hand", + ): "armor-cloth-silken-hand", + Simple( + "common.items.armor.cloth.silken.pants", + ): "armor-cloth-silken-pants", + Simple( + "common.items.armor.cloth.silken.shoulder", + ): "armor-cloth-silken-shoulder", + Simple( + "common.items.armor.cloth.druid.back", + ): "armor-cloth-druid-back", + Simple( + "common.items.armor.cloth.druid.belt", + ): "armor-cloth-druid-belt", + Simple( + "common.items.armor.cloth.druid.chest", + ): "armor-cloth-druid-chest", + Simple( + "common.items.armor.cloth.druid.foot", + ): "armor-cloth-druid-foot", + Simple( + "common.items.armor.cloth.druid.hand", + ): "armor-cloth-druid-hand", + Simple( + "common.items.armor.cloth.druid.pants", + ): "armor-cloth-druid-pants", + Simple( + "common.items.armor.cloth.druid.shoulder", + ): "armor-cloth-druid-shoulder", + Simple( + "common.items.armor.ferocious.back", + ): "armor-ferocious-back", + Simple( + "common.items.armor.ferocious.belt", + ): "armor-ferocious-belt", + Simple( + "common.items.armor.ferocious.chest", + ): "armor-ferocious-chest", + Simple( + "common.items.armor.ferocious.foot", + ): "armor-ferocious-foot", + Simple( + "common.items.armor.ferocious.hand", + ): "armor-ferocious-hand", + Simple( + "common.items.armor.ferocious.pants", + ): "armor-ferocious-pants", + Simple( + "common.items.armor.ferocious.shoulder", + ): "armor-ferocious-shoulder", + Simple( + "common.items.debug.admin", + ): "armor-tabard_admin-admin", + Simple( + "common.items.debug.admin_back", + ): "armor-misc-back-admin-admin_back", + Simple( + "common.items.debug.admin_black_hole", + ): "armor-misc-bag-admin_black_hole", + Simple( + "common.items.debug.admin_stick", + ): "weapon-tool-broom_belzeshrub_purple", + Simple( + "common.items.debug.admin_sword", + ): "weapon-sword-frost-1-admin_sword", + Simple( + "common.items.debug.cultist_belt", + ): "armor-velorite_battlemage-belt-cultist_belt", + Simple( + "common.items.debug.cultist_boots", + ): "armor-velorite_battlemage-foot-cultist_boots", + Simple( + "common.items.debug.cultist_chest_blue", + ): "armor-velorite_battlemage-chest-cultist_chest_blue", + Simple( + "common.items.debug.cultist_hands_blue", + ): "armor-velorite_battlemage-hand-cultist_hands_blue", + Simple( + "common.items.debug.cultist_legs_blue", + ): "armor-velorite_battlemage-pants-cultist_legs_blue", + Simple( + "common.items.debug.cultist_shoulder_blue", + ): "armor-velorite_battlemage-shoulder-cultist_shoulder_blue", + Simple( + "common.items.debug.dungeon_purple", + ): "armor-velorite_battlemage-back-dungeon_purple", + Simple( + "common.items.debug.golden_cheese", + ): "object-item_cheese", + Simple( + "common.items.debug.velorite_bow_debug", + ): "weapon-bow-velorite-velorite_bow_debug", + Simple( + "common.items.utility.bomb", + ): "object-bomb", + Simple( + "common.items.utility.coins", + ): "object-v-coin", + Simple( + "common.items.utility.collar", + ): "object-collar", + Simple( + "common.items.utility.firework_blue", + ): "weapon-projectile-fireworks_blue-0", + Simple( + "common.items.utility.firework_green", + ): "weapon-projectile-fireworks_green-0", + Simple( + "common.items.utility.firework_purple", + ): "weapon-projectile-fireworks_purple-0", + Simple( + "common.items.utility.firework_red", + ): "weapon-projectile-fireworks_red-0", + Simple( + "common.items.utility.firework_white", + ): "weapon-projectile-fireworks_white-0", + Simple( + "common.items.utility.firework_yellow", + ): "weapon-projectile-fireworks_yellow-0", + Simple( + "common.items.utility.lockpick_0", + ): "object-lockpick", + Simple( + "common.items.utility.training_dummy", + ): "object-training_dummy", + Simple( + "common.items.food.apple", + ): "object-apple_half", + Simple( + "common.items.food.apple_mushroom_curry", + ): "object-mushroom_curry", + Simple( + "common.items.food.apple_stick", + ): "object-apple_stick", + Simple( + "common.items.food.blue_cheese", + ): "object-blue_cheese", + Simple( + "common.items.food.cactus_colada", + ): "object-cactus_drink", + Simple( + "common.items.food.carrot", + ): "sprite-carrot-carrot", + Simple( + "common.items.food.cheese", + ): "object-cheese", + Simple( + "common.items.food.coconut", + ): "object-coconut_half", + Simple( + "common.items.food.coltsfoot", + ): "common-items-food-coltsfoot", + Simple( + "common.items.food.dandelion", + ): "common-items-food-dandelion", + Simple( + "common.items.food.garlic", + ): "common-items-food-garlic", + Simple( + "common.items.food.honeycorn", + ): "object-honeycorn", + Simple( + "common.items.food.lettuce", + ): "sprite-cabbage-cabbage", + Simple("common.items.food.meat"): "common-items-food-meat", + Simple( + "common.items.food.mushroom", + ): "sprite-mushrooms-mushroom-10", + Simple( + "common.items.food.mushroom_stick", + ): "object-mushroom_stick", + Simple( + "common.items.food.onion", + ): "common-items-food-onion", + Simple( + "common.items.food.plainsalad", + ): "sprite-food-salad_plain", + Simple( + "common.items.food.pumpkin_spice_brew", + ): "object-pumpkin_spice_brew", + Simple("common.items.food.sage"): "common-items-food-sage", + Simple( + "common.items.food.spore_corruption", + ): "sprite-spore-corruption_spore", + Simple( + "common.items.food.sunflower_icetea", + ): "object-sunflower_ice_tea", + Simple( + "common.items.food.tomato", + ): "sprite-tomato-tomato", + Simple( + "common.items.food.tomatosalad", + ): "sprite-food-salad_tomato", + Simple( + "common.items.food.meat.beast_large_cooked", + ): "sprite-food-meat-beast_large_cooked", + Simple( + "common.items.food.meat.beast_large_raw", + ): "sprite-food-meat-beast_large_raw", + Simple( + "common.items.food.meat.beast_small_cooked", + ): "sprite-food-meat-beast_small_cooked", + Simple( + "common.items.food.meat.beast_small_raw", + ): "sprite-food-meat-beast_small_raw", + Simple( + "common.items.food.meat.bird_cooked", + ): "sprite-food-meat-bird_cooked", + Simple( + "common.items.food.meat.bird_large_cooked", + ): "sprite-food-meat-bird_large_cooked", + Simple( + "common.items.food.meat.bird_large_raw", + ): "sprite-food-meat-bird_large_raw", + Simple( + "common.items.food.meat.bird_raw", + ): "sprite-food-meat-bird_raw", + Simple( + "common.items.food.meat.fish_cooked", + ): "sprite-food-meat-fish_cooked", + Simple( + "common.items.food.meat.fish_raw", + ): "sprite-food-meat-fish_raw", + Simple( + "common.items.food.meat.tough_cooked", + ): "sprite-food-meat-tough_cooked", + Simple( + "common.items.food.meat.tough_raw", + ): "sprite-food-meat-tough_raw", + Simple( + "common.items.grasses.long", + ): "sprite-grass-grass_long_5", + Simple( + "common.items.grasses.medium", + ): "common-items-grasses-medium", + Simple( + "common.items.grasses.short", + ): "common-items-grasses-short", + Simple( + "common.items.boss_drops.exp_flask", + ): "common-items-boss_drops-exp_flask", + Simple( + "common.items.boss_drops.lantern", + ): "lantern-magic_lantern", + Simple( + "common.items.boss_drops.potions", + ): "object-potion_red", + Simple( + "common.items.boss_drops.xp_potion", + ): "common-items-boss_drops-xp_potion", + Simple( + "common.items.calendar.christmas.armor.misc.head.woolly_wintercap", + ): "armor-misc-head-woolly_wintercap", + Simple( + "common.items.mineral.stone.basalt", + ): "common-items-mineral-stone-basalt", + Simple( + "common.items.mineral.stone.coal", + ): "sprite-mineral-ore-coal", + Simple( + "common.items.mineral.stone.granite", + ): "common-items-mineral-stone-granite", + Simple( + "common.items.mineral.stone.obsidian", + ): "common-items-mineral-stone-obsidian", + Simple( + "common.items.mineral.ore.bloodstone", + ): "sprite-mineral-ore-bloodstone", + Simple( + "common.items.mineral.ore.coal", + ): "sprite-mineral-ore-coal-coal", + Simple( + "common.items.mineral.ore.cobalt", + ): "sprite-mineral-ore-cobalt", + Simple( + "common.items.mineral.ore.copper", + ): "sprite-mineral-ore-copper", + Simple( + "common.items.mineral.ore.gold", + ): "sprite-mineral-ore-gold", + Simple( + "common.items.mineral.ore.iron", + ): "sprite-mineral-ore-iron", + Simple( + "common.items.mineral.ore.silver", + ): "sprite-mineral-ore-silver", + Simple( + "common.items.mineral.ore.tin", + ): "sprite-mineral-ore-tin", + Simple( + "common.items.mineral.ore.velorite", + ): "sprite-velorite-velorite_ore", + Simple( + "common.items.mineral.ore.veloritefrag", + ): "sprite-velorite-velorite", + Simple( + "common.items.mineral.ingot.bloodsteel", + ): "sprite-mineral-ingot-bloodsteel", + Simple( + "common.items.mineral.ingot.bronze", + ): "sprite-mineral-ingot-bronze", + Simple( + "common.items.mineral.ingot.cobalt", + ): "sprite-mineral-ingot-cobalt", + Simple( + "common.items.mineral.ingot.copper", + ): "sprite-mineral-ingot-copper", + Simple( + "common.items.mineral.ingot.gold", + ): "sprite-mineral-ingot-gold", + Simple( + "common.items.mineral.ingot.iron", + ): "sprite-mineral-ingot-iron", + Simple( + "common.items.mineral.ingot.orichalcum", + ): "sprite-mineral-ingot-orichalcum", + Simple( + "common.items.mineral.ingot.silver", + ): "sprite-mineral-ingot-silver", + Simple( + "common.items.mineral.ingot.steel", + ): "sprite-mineral-ingot-steel", + Simple( + "common.items.mineral.ingot.tin", + ): "sprite-mineral-ingot-tin", + Simple( + "common.items.mineral.gem.amethyst", + ): "sprite-mineral-gem-amethystgem", + Simple( + "common.items.mineral.gem.diamond", + ): "sprite-mineral-gem-diamondgem", + Simple( + "common.items.mineral.gem.emerald", + ): "sprite-mineral-gem-emeraldgem", + Simple( + "common.items.mineral.gem.ruby", + ): "sprite-mineral-gem-rubygem", + Simple( + "common.items.mineral.gem.sapphire", + ): "sprite-mineral-gem-sapphiregem", + Simple( + "common.items.mineral.gem.topaz", + ): "sprite-mineral-gem-topazgem", + Simple( + "common.items.glider.basic_red", + ): "glider-basic_red", + Simple( + "common.items.glider.basic_white", + ): "glider-basic_white", + Simple( + "common.items.glider.blue", + ): "glider-blue", + Simple( + "common.items.glider.butterfly3", + ): "glider-butterfly3", + Simple( + "common.items.glider.cloverleaf", + ): "glider-cloverleaf", + Simple( + "common.items.glider.leaves", + ): "glider-leaves", + Simple( + "common.items.glider.monarch", + ): "glider-butterfly2", + Simple( + "common.items.glider.moonrise", + ): "glider-moonrise", + Simple( + "common.items.glider.morpho", + ): "glider-butterfly1", + Simple( + "common.items.glider.moth", + ): "glider-moth", + Simple( + "common.items.glider.sandraptor", + ): "glider-sandraptor", + Simple( + "common.items.glider.skullgrin", + ): "glider-cultists", + Simple( + "common.items.glider.snowraptor", + ): "glider-snowraptor", + Simple( + "common.items.glider.sunset", + ): "glider-sunset", + Simple( + "common.items.glider.winter_wings", + ): "glider-winter_wings", + Simple( + "common.items.glider.woodraptor", + ): "glider-woodraptor", + Simple( + "common.items.tool.craftsman_hammer", + ): "weapon-hammer-craftsman", + Simple( + "common.items.tool.pickaxe_steel", + ): "weapon-tool-pickaxe_green-1", + Simple( + "common.items.tool.pickaxe_stone", + ): "weapon-tool-pickaxe_stone", + Simple( + "common.items.tool.pickaxe_velorite", + ): "common-items-tool-pickaxe_velorite", + Simple( + "common.items.tool.instruments.double_bass", + ): "weapon-tool-wooden_bass", + Simple( + "common.items.tool.instruments.flute", + ): "weapon-tool-wooden_flute", + Simple( + "common.items.tool.instruments.glass_flute", + ): "weapon-tool-glass_flute", + Simple( + "common.items.tool.instruments.guitar", + ): "weapon-tool-wooden_guitar", + Simple( + "common.items.tool.instruments.guitar_dark", + ): "weapon-tool-black_velvet_guitar", + Simple( + "common.items.tool.instruments.icy_talharpa", + ): "weapon-tool-icy_talharpa", + Simple( + "common.items.tool.instruments.kalimba", + ): "weapon-tool-wooden_kalimba", + Simple( + "common.items.tool.instruments.lute", + ): "weapon-tool-wooden_lute", + Simple( + "common.items.tool.instruments.lyre", + ): "weapon-tool-wooden_lyre", + Simple( + "common.items.tool.instruments.melodica", + ): "weapon-tool-melodica", + Simple( + "common.items.tool.instruments.sitar", + ): "weapon-tool-wooden_sitar", + Simple( + "common.items.tool.instruments.washboard", + ): "weapon-tool-washboard", + Simple( + "common.items.tool.instruments.wildskin_drum", + ): "weapon-tool-wildskin_drum", + Simple( + "common.items.log.bamboo", + ): "sprite-wood-item-bamboo", + Simple( + "common.items.log.eldwood", + ): "sprite-wood-item-eldwood", + Simple( + "common.items.log.frostwood", + ): "sprite-wood-item-frostwood", + Simple( + "common.items.log.hardwood", + ): "sprite-wood-item-hardwood", + Simple( + "common.items.log.ironwood", + ): "sprite-wood-item-ironwood", + Simple("common.items.log.wood"): "sprite-wood-item-wood", + Simple( + "common.items.crafting_tools.mortar_pestle", + ): "object-mortar_pestle", + Simple( + "common.items.crafting_tools.sewing_set", + ): "object-sewing_set", + Simple( + "common.items.npc_weapons.biped_small.mandragora", + ): "common-items-npc_weapons-biped_small-mandragora", + Simple( + "common.items.npc_weapons.biped_small.myrmidon.hoplite", + ): "common-items-npc_weapons-biped_small-myrmidon-hoplite", + Simple( + "common.items.npc_weapons.biped_small.myrmidon.marksman", + ): "common-items-npc_weapons-biped_small-myrmidon-marksman", + Simple( + "common.items.npc_weapons.biped_small.myrmidon.strategian", + ): "common-items-npc_weapons-biped_small-myrmidon-strategian", + Simple( + "common.items.npc_weapons.biped_small.sahagin.sniper", + ): "common-items-npc_weapons-biped_small-sahagin-sniper", + Simple( + "common.items.npc_weapons.biped_small.sahagin.sorcerer", + ): "common-items-npc_weapons-biped_small-sahagin-sorcerer", + Simple( + "common.items.npc_weapons.biped_small.sahagin.spearman", + ): "common-items-npc_weapons-biped_small-sahagin-spearman", + Simple( + "common.items.npc_weapons.biped_small.adlet.hunter", + ): "common-items-npc_weapons-biped_small-adlet-hunter", + Simple( + "common.items.npc_weapons.biped_small.adlet.icepicker", + ): "common-items-npc_weapons-biped_small-adlet-icepicker", + Simple( + "common.items.npc_weapons.biped_small.adlet.tracker", + ): "common-items-npc_weapons-biped_small-adlet-tracker", + Simple( + "common.items.npc_weapons.biped_small.gnarling.chieftain", + ): "common-items-npc_weapons-biped_small-gnarling-chieftain", + Simple( + "common.items.npc_weapons.biped_small.gnarling.greentotem", + ): "common-items-npc_weapons-biped_small-gnarling-greentotem", + Simple( + "common.items.npc_weapons.biped_small.gnarling.logger", + ): "common-items-npc_weapons-biped_small-gnarling-logger", + Simple( + "common.items.npc_weapons.biped_small.gnarling.mugger", + ): "common-items-npc_weapons-biped_small-gnarling-mugger", + Simple( + "common.items.npc_weapons.biped_small.gnarling.redtotem", + ): "common-items-npc_weapons-biped_small-gnarling-redtotem", + Simple( + "common.items.npc_weapons.biped_small.gnarling.stalker", + ): "common-items-npc_weapons-biped_small-gnarling-stalker", + Simple( + "common.items.npc_weapons.biped_small.gnarling.whitetotem", + ): "common-items-npc_weapons-biped_small-gnarling-whitetotem", + Simple( + "common.items.npc_weapons.biped_small.boreal.bow", + ): "common-items-npc_weapons-biped_small-boreal-bow", + Simple( + "common.items.npc_weapons.biped_small.boreal.hammer", + ): "common-items-npc_weapons-biped_small-boreal-hammer", + Simple( + "common.items.npc_weapons.biped_small.haniwa.archer", + ): "common-items-npc_weapons-biped_small-haniwa-archer", + Simple( + "common.items.npc_weapons.biped_small.haniwa.guard", + ): "common-items-npc_weapons-biped_small-haniwa-guard", + Simple( + "common.items.npc_weapons.biped_small.haniwa.soldier", + ): "common-items-npc_weapons-biped_small-haniwa-soldier", + Simple( + "common.items.npc_weapons.bow.bipedlarge-velorite", + ): "common-items-npc_weapons-bow-bipedlarge-velorite", + Simple( + "common.items.npc_weapons.bow.saurok_bow", + ): "common-items-npc_weapons-bow-saurok_bow", + Simple( + "common.items.npc_weapons.axe.gigas_frost_axe", + ): "common-items-npc_weapons-axe-gigas_frost_axe", + Simple( + "common.items.npc_weapons.axe.minotaur_axe", + ): "common-items-npc_weapons-axe-minotaur_axe", + Simple( + "common.items.npc_weapons.axe.oni_blue_axe", + ): "common-items-npc_weapons-axe-oni_blue_axe", + Simple( + "common.items.npc_weapons.staff.bipedlarge-cultist", + ): "common-items-npc_weapons-staff-bipedlarge-cultist", + Simple( + "common.items.npc_weapons.staff.mindflayer_staff", + ): "common-items-npc_weapons-staff-mindflayer_staff", + Simple( + "common.items.npc_weapons.staff.ogre_staff", + ): "common-items-npc_weapons-staff-ogre_staff", + Simple( + "common.items.npc_weapons.staff.saurok_staff", + ): "common-items-npc_weapons-staff-saurok_staff", + Simple( + "common.items.npc_weapons.sword.adlet_elder_sword", + ): "common-items-npc_weapons-sword-adlet_elder_sword", + Simple( + "common.items.npc_weapons.sword.bipedlarge-cultist", + ): "common-items-npc_weapons-sword-bipedlarge-cultist", + Simple( + "common.items.npc_weapons.sword.dullahan_sword", + ): "common-items-npc_weapons-sword-dullahan_sword", + Simple( + "common.items.npc_weapons.sword.pickaxe_velorite_sword", + ): "common-items-npc_weapons-sword-pickaxe_velorite_sword", + Simple( + "common.items.npc_weapons.sword.saurok_sword", + ): "common-items-npc_weapons-sword-saurok_sword", + Simple( + "common.items.npc_weapons.unique.akhlut", + ): "common-items-npc_weapons-unique-akhlut", + Simple( + "common.items.npc_weapons.unique.asp", + ): "common-items-npc_weapons-unique-asp", + Simple( + "common.items.npc_weapons.unique.basilisk", + ): "common-items-npc_weapons-unique-basilisk", + Simple( + "common.items.npc_weapons.unique.beast_claws", + ): "common-items-npc_weapons-unique-beast_claws", + Simple( + "common.items.npc_weapons.unique.birdlargebasic", + ): "common-items-npc_weapons-unique-birdlargebasic", + Simple( + "common.items.npc_weapons.unique.birdlargebreathe", + ): "common-items-npc_weapons-unique-birdlargebreathe", + Simple( + "common.items.npc_weapons.unique.birdlargefire", + ): "common-items-npc_weapons-unique-birdlargefire", + Simple( + "common.items.npc_weapons.unique.birdmediumbasic", + ): "common-items-npc_weapons-unique-birdmediumbasic", + Simple( + "common.items.npc_weapons.unique.bushly", + ): "common-items-npc_weapons-unique-bushly", + Simple( + "common.items.npc_weapons.unique.cardinal", + ): "common-items-npc_weapons-unique-cardinal", + Simple( + "common.items.npc_weapons.unique.clay_golem_fist", + ): "common-items-npc_weapons-unique-clay_golem_fist", + Simple( + "common.items.npc_weapons.unique.clockwork", + ): "common-items-npc_weapons-unique-clockwork", + Simple( + "common.items.npc_weapons.unique.cloudwyvern", + ): "common-items-npc_weapons-unique-cloudwyvern", + Simple( + "common.items.npc_weapons.unique.coral_golem_fist", + ): "common-items-npc_weapons-unique-coral_golem_fist", + Simple( + "common.items.npc_weapons.unique.crab_pincer", + ): "common-items-npc_weapons-unique-crab_pincer", + Simple( + "common.items.npc_weapons.unique.dagon", + ): "common-items-npc_weapons-unique-dagon", + Simple( + "common.items.npc_weapons.unique.deadwood", + ): "common-items-npc_weapons-unique-deadwood", + Simple( + "common.items.npc_weapons.unique.driggle", + ): "common-items-npc_weapons-unique-driggle", + Simple( + "common.items.npc_weapons.unique.emberfly", + ): "common-items-npc_weapons-unique-emberfly", + Simple( + "common.items.npc_weapons.unique.fiery_tornado", + ): "common-items-npc_weapons-unique-fiery_tornado", + Simple( + "common.items.npc_weapons.unique.flamekeeper_staff", + ): "common-items-npc_weapons-unique-flamekeeper_staff", + Simple( + "common.items.npc_weapons.unique.flamethrower", + ): "common-items-npc_weapons-unique-flamethrower", + Simple( + "common.items.npc_weapons.unique.flamewyvern", + ): "common-items-npc_weapons-unique-flamewyvern", + Simple( + "common.items.npc_weapons.unique.frostfang", + ): "common-items-npc_weapons-unique-frostfang", + Simple( + "common.items.npc_weapons.unique.frostwyvern", + ): "common-items-npc_weapons-unique-frostwyvern", + Simple( + "common.items.npc_weapons.unique.haniwa_sentry", + ): "common-items-npc_weapons-unique-haniwa_sentry", + Simple( + "common.items.npc_weapons.unique.hermit_alligator", + ): "common-items-npc_weapons-unique-hermit_alligator", + Simple( + "common.items.npc_weapons.unique.husk", + ): "common-items-npc_weapons-unique-husk", + Simple( + "common.items.npc_weapons.unique.husk_brute", + ): "common-items-npc_weapons-unique-husk_brute", + Simple( + "common.items.npc_weapons.unique.icedrake", + ): "common-items-npc_weapons-unique-icedrake", + Simple( + "common.items.npc_weapons.unique.irrwurz", + ): "common-items-npc_weapons-unique-irrwurz", + Simple( + "common.items.npc_weapons.unique.maneater", + ): "common-items-npc_weapons-unique-maneater", + Simple( + "common.items.npc_weapons.unique.mossysnail", + ): "common-items-npc_weapons-unique-mossysnail", + Simple( + "common.items.npc_weapons.unique.organ", + ): "common-items-npc_weapons-unique-organ", + Simple( + "common.items.npc_weapons.unique.quadlowbasic", + ): "common-items-npc_weapons-unique-quadlowbasic", + Simple( + "common.items.npc_weapons.unique.quadlowbeam", + ): "common-items-npc_weapons-unique-quadlowbeam", + Simple( + "common.items.npc_weapons.unique.quadlowbreathe", + ): "common-items-npc_weapons-unique-quadlowbreathe", + Simple( + "common.items.npc_weapons.unique.quadlowquick", + ): "common-items-npc_weapons-unique-quadlowquick", + Simple( + "common.items.npc_weapons.unique.quadlowtail", + ): "common-items-npc_weapons-unique-quadlowtail", + Simple( + "common.items.npc_weapons.unique.quadmedbasic", + ): "common-items-npc_weapons-unique-quadmedbasic", + Simple( + "common.items.npc_weapons.unique.quadmedbasicgentle", + ): "common-items-npc_weapons-unique-quadmedbasicgentle", + Simple( + "common.items.npc_weapons.unique.quadmedcharge", + ): "common-items-npc_weapons-unique-quadmedcharge", + Simple( + "common.items.npc_weapons.unique.quadmedhoof", + ): "common-items-npc_weapons-unique-quadmedhoof", + Simple( + "common.items.npc_weapons.unique.quadmedjump", + ): "common-items-npc_weapons-unique-quadmedjump", + Simple( + "common.items.npc_weapons.unique.quadmedquick", + ): "common-items-npc_weapons-unique-quadmedquick", + Simple( + "common.items.npc_weapons.unique.quadsmallbasic", + ): "common-items-npc_weapons-unique-quadsmallbasic", + Simple( + "common.items.npc_weapons.unique.roshwalr", + ): "common-items-npc_weapons-unique-roshwalr", + Simple( + "common.items.npc_weapons.unique.sea_bishop_sceptre", + ): "common-items-npc_weapons-unique-sea_bishop_sceptre", + Simple( + "common.items.npc_weapons.unique.seawyvern", + ): "common-items-npc_weapons-unique-seawyvern", + Simple( + "common.items.npc_weapons.unique.simpleflyingbasic", + ): "common-items-npc_weapons-unique-simpleflyingbasic", + Simple( + "common.items.npc_weapons.unique.stone_golems_fist", + ): "common-items-npc_weapons-unique-stone_golems_fist", + Simple( + "common.items.npc_weapons.unique.theropodbasic", + ): "common-items-npc_weapons-unique-theropodbasic", + Simple( + "common.items.npc_weapons.unique.theropodbird", + ): "common-items-npc_weapons-unique-theropodbird", + Simple( + "common.items.npc_weapons.unique.theropodcharge", + ): "common-items-npc_weapons-unique-theropodcharge", + Simple( + "common.items.npc_weapons.unique.theropodsmall", + ): "common-items-npc_weapons-unique-theropodsmall", + Simple( + "common.items.npc_weapons.unique.tidal_claws", + ): "common-items-npc_weapons-unique-tidal_claws", + Simple( + "common.items.npc_weapons.unique.tidal_totem", + ): "common-items-npc_weapons-unique-tidal_totem", + Simple( + "common.items.npc_weapons.unique.tornado", + ): "common-items-npc_weapons-unique-tornado", + Simple( + "common.items.npc_weapons.unique.treantsapling", + ): "common-items-npc_weapons-unique-treantsapling", + Simple( + "common.items.npc_weapons.unique.turret", + ): "common-items-npc_weapons-unique-turret", + Simple( + "common.items.npc_weapons.unique.tursus_claws", + ): "common-items-npc_weapons-unique-tursus_claws", + Simple( + "common.items.npc_weapons.unique.wealdwyvern", + ): "common-items-npc_weapons-unique-wealdwyvern", + Simple( + "common.items.npc_weapons.unique.wendigo_magic", + ): "common-items-npc_weapons-unique-wendigo_magic", + Simple( + "common.items.npc_weapons.unique.wood_golem_fist", + ): "common-items-npc_weapons-unique-wood_golem_fist", + Simple( + "common.items.npc_weapons.unique.arthropods.antlion", + ): "common-items-npc_weapons-unique-arthropods-antlion", + Simple( + "common.items.npc_weapons.unique.arthropods.blackwidow", + ): "common-items-npc_weapons-unique-arthropods-blackwidow", + Simple( + "common.items.npc_weapons.unique.arthropods.cavespider", + ): "common-items-npc_weapons-unique-arthropods-cavespider", + Simple( + "common.items.npc_weapons.unique.arthropods.dagonite", + ): "common-items-npc_weapons-unique-arthropods-dagonite", + Simple( + "common.items.npc_weapons.unique.arthropods.hornbeetle", + ): "common-items-npc_weapons-unique-arthropods-hornbeetle", + Simple( + "common.items.npc_weapons.unique.arthropods.leafbeetle", + ): "common-items-npc_weapons-unique-arthropods-leafbeetle", + Simple( + "common.items.npc_weapons.unique.arthropods.mosscrawler", + ): "common-items-npc_weapons-unique-arthropods-mosscrawler", + Simple( + "common.items.npc_weapons.unique.arthropods.tarantula", + ): "common-items-npc_weapons-unique-arthropods-tarantula", + Simple( + "common.items.npc_weapons.unique.arthropods.weevil", + ): "common-items-npc_weapons-unique-arthropods-weevil", + Simple( + "common.items.npc_weapons.hammer.bipedlarge-cultist", + ): "common-items-npc_weapons-hammer-bipedlarge-cultist", + Simple( + "common.items.npc_weapons.hammer.cyclops_hammer", + ): "common-items-npc_weapons-hammer-cyclops_hammer", + Simple( + "common.items.npc_weapons.hammer.harvester_scythe", + ): "common-items-npc_weapons-hammer-harvester_scythe", + Simple( + "common.items.npc_weapons.hammer.ogre_hammer", + ): "common-items-npc_weapons-hammer-ogre_hammer", + Simple( + "common.items.npc_weapons.hammer.oni_red_hammer", + ): "common-items-npc_weapons-hammer-oni_red_hammer", + Simple( + "common.items.npc_weapons.hammer.troll_hammer", + ): "common-items-npc_weapons-hammer-troll_hammer", + Simple( + "common.items.npc_weapons.hammer.wendigo_hammer", + ): "common-items-npc_weapons-hammer-wendigo_hammer", + Simple( + "common.items.npc_weapons.hammer.yeti_hammer", + ): "common-items-npc_weapons-hammer-yeti_hammer", + Simple( + "common.items.modular.weapon.primary.bow.bow", + ): "common-items-modular-weapon-primary-bow-bow", + Simple( + "common.items.modular.weapon.primary.bow.composite", + ): "common-items-modular-weapon-primary-bow-composite", + Simple( + "common.items.modular.weapon.primary.bow.greatbow", + ): "common-items-modular-weapon-primary-bow-greatbow", + Simple( + "common.items.modular.weapon.primary.bow.longbow", + ): "common-items-modular-weapon-primary-bow-longbow", + Simple( + "common.items.modular.weapon.primary.bow.ornate", + ): "common-items-modular-weapon-primary-bow-ornate", + Simple( + "common.items.modular.weapon.primary.bow.shortbow", + ): "common-items-modular-weapon-primary-bow-shortbow", + Simple( + "common.items.modular.weapon.primary.bow.warbow", + ): "common-items-modular-weapon-primary-bow-warbow", + Simple( + "common.items.modular.weapon.primary.axe.axe", + ): "common-items-modular-weapon-primary-axe-axe", + Simple( + "common.items.modular.weapon.primary.axe.battleaxe", + ): "common-items-modular-weapon-primary-axe-battleaxe", + Simple( + "common.items.modular.weapon.primary.axe.greataxe", + ): "common-items-modular-weapon-primary-axe-greataxe", + Simple( + "common.items.modular.weapon.primary.axe.jagged", + ): "common-items-modular-weapon-primary-axe-jagged", + Simple( + "common.items.modular.weapon.primary.axe.labrys", + ): "common-items-modular-weapon-primary-axe-labrys", + Simple( + "common.items.modular.weapon.primary.axe.ornate", + ): "common-items-modular-weapon-primary-axe-ornate", + Simple( + "common.items.modular.weapon.primary.axe.poleaxe", + ): "common-items-modular-weapon-primary-axe-poleaxe", + Simple( + "common.items.modular.weapon.primary.staff.brand", + ): "common-items-modular-weapon-primary-staff-brand", + Simple( + "common.items.modular.weapon.primary.staff.grandstaff", + ): "common-items-modular-weapon-primary-staff-grandstaff", + Simple( + "common.items.modular.weapon.primary.staff.longpole", + ): "common-items-modular-weapon-primary-staff-longpole", + Simple( + "common.items.modular.weapon.primary.staff.ornate", + ): "common-items-modular-weapon-primary-staff-ornate", + Simple( + "common.items.modular.weapon.primary.staff.pole", + ): "common-items-modular-weapon-primary-staff-pole", + Simple( + "common.items.modular.weapon.primary.staff.rod", + ): "common-items-modular-weapon-primary-staff-rod", + Simple( + "common.items.modular.weapon.primary.staff.staff", + ): "common-items-modular-weapon-primary-staff-staff", + Simple( + "common.items.modular.weapon.primary.sword.greatsword", + ): "common-items-modular-weapon-primary-sword-greatsword", + Simple( + "common.items.modular.weapon.primary.sword.katana", + ): "common-items-modular-weapon-primary-sword-katana", + Simple( + "common.items.modular.weapon.primary.sword.longsword", + ): "common-items-modular-weapon-primary-sword-longsword", + Simple( + "common.items.modular.weapon.primary.sword.ornate", + ): "common-items-modular-weapon-primary-sword-ornate", + Simple( + "common.items.modular.weapon.primary.sword.sabre", + ): "common-items-modular-weapon-primary-sword-sabre", + Simple( + "common.items.modular.weapon.primary.sword.sawblade", + ): "common-items-modular-weapon-primary-sword-sawblade", + Simple( + "common.items.modular.weapon.primary.sword.zweihander", + ): "common-items-modular-weapon-primary-sword-zweihander", + Simple( + "common.items.modular.weapon.primary.sceptre.arbor", + ): "common-items-modular-weapon-primary-sceptre-arbor", + Simple( + "common.items.modular.weapon.primary.sceptre.cane", + ): "common-items-modular-weapon-primary-sceptre-cane", + Simple( + "common.items.modular.weapon.primary.sceptre.crook", + ): "common-items-modular-weapon-primary-sceptre-crook", + Simple( + "common.items.modular.weapon.primary.sceptre.crozier", + ): "common-items-modular-weapon-primary-sceptre-crozier", + Simple( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + ): "common-items-modular-weapon-primary-sceptre-grandsceptre", + Simple( + "common.items.modular.weapon.primary.sceptre.ornate", + ): "common-items-modular-weapon-primary-sceptre-ornate", + Simple( + "common.items.modular.weapon.primary.sceptre.sceptre", + ): "common-items-modular-weapon-primary-sceptre-sceptre", + Simple( + "common.items.modular.weapon.primary.hammer.greathammer", + ): "common-items-modular-weapon-primary-hammer-greathammer", + Simple( + "common.items.modular.weapon.primary.hammer.greatmace", + ): "common-items-modular-weapon-primary-hammer-greatmace", + Simple( + "common.items.modular.weapon.primary.hammer.hammer", + ): "common-items-modular-weapon-primary-hammer-hammer", + Simple( + "common.items.modular.weapon.primary.hammer.maul", + ): "common-items-modular-weapon-primary-hammer-maul", + Simple( + "common.items.modular.weapon.primary.hammer.ornate", + ): "common-items-modular-weapon-primary-hammer-ornate", + Simple( + "common.items.modular.weapon.primary.hammer.spikedmace", + ): "common-items-modular-weapon-primary-hammer-spikedmace", + Simple( + "common.items.modular.weapon.primary.hammer.warhammer", + ): "common-items-modular-weapon-primary-hammer-warhammer", + Simple( + "common.items.modular.weapon.secondary.bow.long", + ): "weapon-component-bow-grip-long", + Simple( + "common.items.modular.weapon.secondary.bow.medium", + ): "weapon-component-bow-grip-medium", + Simple( + "common.items.modular.weapon.secondary.bow.short", + ): "weapon-component-bow-grip-short", + Simple( + "common.items.modular.weapon.secondary.axe.long", + ): "weapon-component-axe-haft-long", + Simple( + "common.items.modular.weapon.secondary.axe.medium", + ): "weapon-component-axe-haft-medium", + Simple( + "common.items.modular.weapon.secondary.axe.short", + ): "weapon-component-axe-haft-short", + Simple( + "common.items.modular.weapon.secondary.staff.heavy", + ): "weapon-component-staff-core-heavy", + Simple( + "common.items.modular.weapon.secondary.staff.light", + ): "weapon-component-staff-core-light", + Simple( + "common.items.modular.weapon.secondary.staff.medium", + ): "weapon-component-staff-core-medium", + Simple( + "common.items.modular.weapon.secondary.sword.long", + ): "weapon-component-sword-hilt-long", + Simple( + "common.items.modular.weapon.secondary.sword.medium", + ): "weapon-component-sword-hilt-medium", + Simple( + "common.items.modular.weapon.secondary.sword.short", + ): "weapon-component-sword-hilt-short", + Simple( + "common.items.modular.weapon.secondary.sceptre.heavy", + ): "weapon-component-sceptre-core-heavy", + Simple( + "common.items.modular.weapon.secondary.sceptre.light", + ): "weapon-component-sceptre-core-light", + Simple( + "common.items.modular.weapon.secondary.sceptre.medium", + ): "weapon-component-sceptre-core-medium", + Simple( + "common.items.modular.weapon.secondary.hammer.long", + ): "weapon-component-hammer-shaft-long", + Simple( + "common.items.modular.weapon.secondary.hammer.medium", + ): "weapon-component-hammer-shaft-medium", + Simple( + "common.items.modular.weapon.secondary.hammer.short", + ): "weapon-component-hammer-shaft-short", + Simple( + "common.items.crafting_ing.abyssal_heart", + ): "sprite-crafting_ing-abyssal_heart", + Simple( + "common.items.crafting_ing.bowl", + ): "sprite-crafting_ing-bowl", + Simple( + "common.items.crafting_ing.brinestone", + ): "sprite-crafting_ing-brinestone", + Simple( + "common.items.crafting_ing.cactus", + ): "sprite-cacti-flat_cactus_med", + Simple( + "common.items.crafting_ing.coral_branch", + ): "sprite-crafting_ing-coral_branch", + Simple( + "common.items.crafting_ing.cotton_boll", + ): "sprite-crafting_ing-cotton_boll", + Simple( + "common.items.crafting_ing.empty_vial", + ): "object-potion_empty", + Simple( + "common.items.crafting_ing.glacial_crystal", + ): "object-glacial_crystal", + Simple( + "common.items.crafting_ing.honey", + ): "object-honey", + Simple( + "common.items.crafting_ing.living_embers", + ): "sprite-crafting_ing-living_embers", + Simple( + "common.items.crafting_ing.mindflayer_bag_damaged", + ): "object-glowing_remains", + Simple( + "common.items.crafting_ing.oil", + ): "sprite-crafting_ing-oil", + Simple( + "common.items.crafting_ing.pearl", + ): "sprite-crafting_ing-pearl", + Simple( + "common.items.crafting_ing.resin", + ): "sprite-crafting_ing-resin", + Simple( + "common.items.crafting_ing.rock", + ): "common-items-crafting_ing-rock", + Simple( + "common.items.crafting_ing.seashells", + ): "sprite-seashells-shell-0", + Simple( + "common.items.crafting_ing.sentient_seed", + ): "sprite-crafting_ing-sentient_seed", + Simple( + "common.items.crafting_ing.sticky_thread", + ): "sprite-crafting_ing-sticky_thread", + Simple( + "common.items.crafting_ing.stones", + ): "sprite-rocks-rock-0", + Simple( + "common.items.crafting_ing.twigs", + ): "sprite-twigs-twigs-0", + Simple( + "common.items.crafting_ing.hide.animal_hide", + ): "sprite-crafting_ing-hide-animal_hide", + Simple( + "common.items.crafting_ing.hide.carapace", + ): "sprite-crafting_ing-hide-carapace", + Simple( + "common.items.crafting_ing.hide.dragon_scale", + ): "sprite-crafting_ing-hide-dragon_scale", + Simple( + "common.items.crafting_ing.hide.leather_troll", + ): "sprite-crafting_ing-hide-troll_hide", + Simple( + "common.items.crafting_ing.hide.plate", + ): "sprite-crafting_ing-hide-plate", + Simple( + "common.items.crafting_ing.hide.rugged_hide", + ): "sprite-crafting_ing-hide-rugged_hide", + Simple( + "common.items.crafting_ing.hide.scales", + ): "sprite-crafting_ing-hide-scale", + Simple( + "common.items.crafting_ing.hide.tough_hide", + ): "sprite-crafting_ing-hide-tough_hide", + Simple( + "common.items.crafting_ing.animal_misc.bone", + ): "common-items-crafting_ing-animal_misc-bone", + Simple( + "common.items.crafting_ing.animal_misc.claw", + ): "sprite-crafting_ing-animal_misc-claw", + Simple( + "common.items.crafting_ing.animal_misc.elegant_crest", + ): "object-elegant_crest", + Simple( + "common.items.crafting_ing.animal_misc.ember", + ): "common-items-crafting_ing-animal_misc-ember", + Simple( + "common.items.crafting_ing.animal_misc.feather", + ): "common-items-crafting_ing-animal_misc-feather", + Simple( + "common.items.crafting_ing.animal_misc.fur", + ): "sprite-crafting_ing-animal_misc-fur", + Simple( + "common.items.crafting_ing.animal_misc.grim_eyeball", + ): "sprite-crafting_ing-animal_misc-grim_eyeball-grim_eyeball", + Simple( + "common.items.crafting_ing.animal_misc.icy_fang", + ): "object-ice_shard", + Simple( + "common.items.crafting_ing.animal_misc.large_horn", + ): "sprite-crafting_ing-animal_misc-large_horn", + Simple( + "common.items.crafting_ing.animal_misc.lively_vine", + ): "sprite-crafting_ing-animal_misc-lively_vine", + Simple( + "common.items.crafting_ing.animal_misc.long_tusk", + ): "object-long_tusk", + Simple( + "common.items.crafting_ing.animal_misc.phoenix_feather", + ): "sprite-crafting_ing-animal_misc-phoenix_feather", + Simple( + "common.items.crafting_ing.animal_misc.raptor_feather", + ): "object-raptor_feather", + Simple( + "common.items.crafting_ing.animal_misc.sharp_fang", + ): "sprite-crafting_ing-animal_misc-sharp_fang", + Simple( + "common.items.crafting_ing.animal_misc.strong_pincer", + ): "object-strong_pincer", + Simple( + "common.items.crafting_ing.animal_misc.venom_sac", + ): "sprite-crafting_ing-animal_misc-venom_sac", + Simple( + "common.items.crafting_ing.animal_misc.viscous_ooze", + ): "sprite-crafting_ing-animal_misc-viscous_ooze", + Simple( + "common.items.crafting_ing.leather.leather_strips", + ): "sprite-crafting_ing-leather-leather_strips", + Simple( + "common.items.crafting_ing.leather.rigid_leather", + ): "sprite-crafting_ing-leather-rigid_leather", + Simple( + "common.items.crafting_ing.leather.simple_leather", + ): "sprite-crafting_ing-leather-simple_leather", + Simple( + "common.items.crafting_ing.leather.thick_leather", + ): "sprite-crafting_ing-leather-thick_leather", + Simple( + "common.items.crafting_ing.cloth.cloth_strips", + ): "sprite-crafting_ing-cloth-cloth_strips", + Simple( + "common.items.crafting_ing.cloth.cotton", + ): "sprite-crafting_ing-cloth-cotton", + Simple( + "common.items.crafting_ing.cloth.lifecloth", + ): "sprite-crafting_ing-cloth-lifecloth", + Simple( + "common.items.crafting_ing.cloth.linen", + ): "sprite-crafting_ing-cloth-linen", + Simple( + "common.items.crafting_ing.cloth.linen_red", + ): "sprite-crafting_ing-cloth-linen_red", + Simple( + "common.items.crafting_ing.cloth.moonweave", + ): "sprite-crafting_ing-cloth-moonweave", + Simple( + "common.items.crafting_ing.cloth.silk", + ): "sprite-crafting_ing-cloth-silk", + Simple( + "common.items.crafting_ing.cloth.sunsilk", + ): "sprite-crafting_ing-cloth-sunsilk", + Simple( + "common.items.crafting_ing.cloth.wool", + ): "sprite-crafting_ing-cloth-wool", + Simple( + "common.items.consumable.curious_potion", + ): "object-curious_potion", + Simple( + "common.items.consumable.potion_agility", + ): "object-potion_agility", + Simple( + "common.items.consumable.potion_big", + ): "object-potion_red-potion_big", + Simple( + "common.items.consumable.potion_combustion", + ): "object-potion_combustion", + Simple( + "common.items.consumable.potion_med", + ): "object-potion_red-potion_med", + Simple( + "common.items.consumable.potion_minor", + ): "object-potion_red-potion_minor", + Simple( + "common.items.lantern.black_0", + ): "lantern-black-0", + Simple( + "common.items.lantern.blue_0", + ): "lantern-blue-0", + Simple( + "common.items.lantern.geode_purp", + ): "lantern-geode_purp", + Simple( + "common.items.lantern.green_0", + ): "lantern-green-0", + Simple( + "common.items.lantern.polaris", + ): "lantern-polaris", + Simple( + "common.items.lantern.pumpkin", + ): "lantern-pumpkin", + Simple( + "common.items.lantern.red_0", + ): "lantern-red-0", + Simple( + "common.items.charms.burning_charm", + ): "object-burning_charm", + Simple( + "common.items.charms.frozen_charm", + ): "object-frozen_charm", + Simple( + "common.items.charms.lifesteal_charm", + ): "object-lifesteal_charm", + Simple( + "common.items.tag_examples.cultist", + ): "common-items-tag_examples-cultist", + Simple( + "common.items.tag_examples.gnarling", + ): "common-items-tag_examples-gnarling", + Simple( + "common.items.flowers.blue", + ): "common-items-flowers-blue", + Simple( + "common.items.flowers.moonbell", + ): "sprite-flowers-moonbell", + Simple( + "common.items.flowers.pink", + ): "common-items-flowers-pink", + Simple( + "common.items.flowers.plant_fiber", + ): "sprite-crafting_ing-plant_fiber", + Simple( + "common.items.flowers.pyrebloom", + ): "sprite-flowers-pyrebloom", + Simple( + "common.items.flowers.red", + ): "sprite-flowers-flower_red-4", + Simple( + "common.items.flowers.sunflower", + ): "sprite-flowers-sunflower_1", + Simple( + "common.items.flowers.white", + ): "common-items-flowers-white", + Simple( + "common.items.flowers.wild_flax", + ): "sprite-flowers-flax", + Simple( + "common.items.flowers.yellow", + ): "sprite-flowers-sunflower_1-yellow", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-axe-labrys-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-axe-ornate-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-axe-battleaxe-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-axe-greataxe-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-axe-axe-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-axe-poleaxe-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-axe-jagged-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.frostwood", + ), + ): "weapon-component-sceptre-ornate-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.frostwood", + ), + ): "weapon-component-sceptre-crozier-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.frostwood", + ), + ): "weapon-component-sceptre-grandsceptre-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.frostwood", + ), + ): "weapon-component-sceptre-sceptre-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.frostwood", + ), + ): "weapon-component-sceptre-crook-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.frostwood", + ), + ): "weapon-component-sceptre-arbor-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.frostwood", + ), + ): "weapon-component-sceptre-cane-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-hammer-hammer-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-hammer-greatmace-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-hammer-greathammer-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-hammer-ornate-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-hammer-spikedmace-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-hammer-warhammer-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-hammer-maul-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-axe-axe-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-axe-ornate-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-axe-poleaxe-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-axe-battleaxe-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-axe-jagged-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-axe-greataxe-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-axe-labrys-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.frostwood", + ), + ): "weapon-component-staff-ornate-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.frostwood", + ), + ): "weapon-component-staff-staff-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.frostwood", + ), + ): "weapon-component-staff-grandstaff-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.frostwood", + ), + ): "weapon-component-staff-pole-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.frostwood", + ), + ): "weapon-component-staff-rod-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.frostwood", + ), + ): "weapon-component-staff-brand-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.frostwood", + ), + ): "weapon-component-staff-longpole-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-axe-axe-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-axe-greataxe-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-axe-jagged-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-axe-ornate-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-axe-poleaxe-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-axe-battleaxe-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-axe-labrys-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.ironwood", + ), + ): "weapon-component-staff-ornate-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.ironwood", + ), + ): "weapon-component-staff-rod-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.ironwood", + ), + ): "weapon-component-staff-longpole-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.ironwood", + ), + ): "weapon-component-staff-grandstaff-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.ironwood", + ), + ): "weapon-component-staff-brand-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.ironwood", + ), + ): "weapon-component-staff-pole-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.ironwood", + ), + ): "weapon-component-staff-staff-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-hammer-warhammer-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-hammer-maul-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-hammer-ornate-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-hammer-hammer-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-hammer-spikedmace-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-hammer-greathammer-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-hammer-greatmace-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.frostwood", + ), + ): "weapon-component-bow-bow-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.frostwood", + ), + ): "weapon-component-bow-warbow-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.frostwood", + ), + ): "weapon-component-bow-shortbow-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.frostwood", + ), + ): "weapon-component-bow-greatbow-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.frostwood", + ), + ): "weapon-component-bow-ornate-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.frostwood", + ), + ): "weapon-component-bow-composite-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.frostwood", + ), + ): "weapon-component-bow-longbow-frostwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.hardwood", + ), + ): "weapon-component-bow-longbow-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.hardwood", + ), + ): "weapon-component-bow-composite-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.hardwood", + ), + ): "weapon-component-bow-ornate-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.hardwood", + ), + ): "weapon-component-bow-bow-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.hardwood", + ), + ): "weapon-component-bow-shortbow-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.hardwood", + ), + ): "weapon-component-bow-warbow-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.hardwood", + ), + ): "weapon-component-bow-greatbow-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-axe-battleaxe-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-axe-labrys-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-axe-ornate-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-axe-jagged-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-axe-axe-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-axe-greataxe-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-axe-poleaxe-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-axe-labrys-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-axe-ornate-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-axe-jagged-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-axe-poleaxe-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-axe-greataxe-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-axe-axe-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-axe-battleaxe-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-axe-jagged-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-axe-battleaxe-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-axe-axe-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-axe-ornate-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-axe-greataxe-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-axe-poleaxe-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-axe-labrys-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-sword-sawblade-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-sword-sabre-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-sword-ornate-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-sword-longsword-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-sword-greatsword-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-sword-katana-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-sword-zweihander-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-hammer-maul-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-hammer-hammer-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-hammer-warhammer-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-hammer-spikedmace-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-hammer-greatmace-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-hammer-greathammer-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-hammer-ornate-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-hammer-spikedmace-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-hammer-maul-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-hammer-hammer-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-hammer-greatmace-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-hammer-warhammer-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-hammer-ornate-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-hammer-greathammer-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.bamboo", + ), + ): "weapon-component-bow-warbow-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.bamboo", + ), + ): "weapon-component-bow-composite-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.bamboo", + ), + ): "weapon-component-bow-shortbow-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.bamboo", + ), + ): "weapon-component-bow-greatbow-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.bamboo", + ), + ): "weapon-component-bow-ornate-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.bamboo", + ), + ): "weapon-component-bow-bow-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.bamboo", + ), + ): "weapon-component-bow-longbow-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-sword-longsword-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-sword-katana-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-sword-ornate-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-sword-sabre-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-sword-sawblade-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-sword-zweihander-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.bronze", + ), + ): "weapon-component-sword-greatsword-bronze", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.eldwood", + ), + ): "weapon-component-staff-staff-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.eldwood", + ), + ): "weapon-component-staff-rod-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.eldwood", + ), + ): "weapon-component-staff-brand-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.eldwood", + ), + ): "weapon-component-staff-longpole-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.eldwood", + ), + ): "weapon-component-staff-ornate-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.eldwood", + ), + ): "weapon-component-staff-grandstaff-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.eldwood", + ), + ): "weapon-component-staff-pole-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.bamboo", + ), + ): "weapon-component-sceptre-arbor-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.bamboo", + ), + ): "weapon-component-sceptre-crozier-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.bamboo", + ), + ): "weapon-component-sceptre-crook-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.bamboo", + ), + ): "weapon-component-sceptre-grandsceptre-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.bamboo", + ), + ): "weapon-component-sceptre-ornate-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.bamboo", + ), + ): "weapon-component-sceptre-sceptre-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.bamboo", + ), + ): "weapon-component-sceptre-cane-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.wood", + ), + ): "weapon-component-bow-ornate-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.wood", + ), + ): "weapon-component-bow-greatbow-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.wood", + ), + ): "weapon-component-bow-composite-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.wood", + ), + ): "weapon-component-bow-bow-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.wood", + ), + ): "weapon-component-bow-warbow-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.wood", + ), + ): "weapon-component-bow-shortbow-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.wood", + ), + ): "weapon-component-bow-longbow-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-sword-sabre-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-sword-zweihander-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-sword-katana-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-sword-longsword-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-sword-sawblade-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-sword-greatsword-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.orichalcum", + ), + ): "weapon-component-sword-ornate-orichalcum", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.ironwood", + ), + ): "weapon-component-bow-longbow-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.ironwood", + ), + ): "weapon-component-bow-shortbow-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.ironwood", + ), + ): "weapon-component-bow-bow-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.ironwood", + ), + ): "weapon-component-bow-warbow-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.ironwood", + ), + ): "weapon-component-bow-greatbow-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.ironwood", + ), + ): "weapon-component-bow-ornate-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.ironwood", + ), + ): "weapon-component-bow-composite-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.eldwood", + ), + ): "weapon-component-sceptre-sceptre-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.eldwood", + ), + ): "weapon-component-sceptre-arbor-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.eldwood", + ), + ): "weapon-component-sceptre-cane-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.eldwood", + ), + ): "weapon-component-sceptre-crook-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.eldwood", + ), + ): "weapon-component-sceptre-ornate-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.eldwood", + ), + ): "weapon-component-sceptre-crozier-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.eldwood", + ), + ): "weapon-component-sceptre-grandsceptre-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-sword-ornate-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-sword-zweihander-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-sword-sabre-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-sword-sawblade-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-sword-greatsword-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-sword-katana-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.steel", + ), + ): "weapon-component-sword-longsword-steel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.wood", + ), + ): "weapon-component-staff-rod-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.wood", + ), + ): "weapon-component-staff-pole-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.wood", + ), + ): "weapon-component-staff-staff-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.wood", + ), + ): "weapon-component-staff-ornate-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.wood", + ), + ): "weapon-component-staff-brand-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.wood", + ), + ): "weapon-component-staff-grandstaff-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.wood", + ), + ): "weapon-component-staff-longpole-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-sword-greatsword-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-sword-zweihander-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-sword-sawblade-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-sword-katana-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-sword-ornate-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-sword-longsword-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.bloodsteel", + ), + ): "weapon-component-sword-sabre-bloodsteel", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-hammer-warhammer-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-hammer-maul-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-hammer-spikedmace-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-hammer-hammer-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-hammer-greatmace-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-hammer-ornate-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.iron", + ), + ): "weapon-component-hammer-greathammer-iron", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.ironwood", + ), + ): "weapon-component-sceptre-ornate-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.ironwood", + ), + ): "weapon-component-sceptre-cane-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.ironwood", + ), + ): "weapon-component-sceptre-sceptre-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.ironwood", + ), + ): "weapon-component-sceptre-crozier-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.ironwood", + ), + ): "weapon-component-sceptre-grandsceptre-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.ironwood", + ), + ): "weapon-component-sceptre-arbor-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.ironwood", + ), + ): "weapon-component-sceptre-crook-ironwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.eldwood", + ), + ): "weapon-component-bow-greatbow-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.eldwood", + ), + ): "weapon-component-bow-warbow-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.eldwood", + ), + ): "weapon-component-bow-longbow-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.eldwood", + ), + ): "weapon-component-bow-ornate-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.eldwood", + ), + ): "weapon-component-bow-bow-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.eldwood", + ), + ): "weapon-component-bow-shortbow-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.eldwood", + ), + ): "weapon-component-bow-composite-eldwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.hardwood", + ), + ): "weapon-component-staff-ornate-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.hardwood", + ), + ): "weapon-component-staff-pole-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.hardwood", + ), + ): "weapon-component-staff-staff-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.hardwood", + ), + ): "weapon-component-staff-rod-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.hardwood", + ), + ): "weapon-component-staff-longpole-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.hardwood", + ), + ): "weapon-component-staff-brand-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.hardwood", + ), + ): "weapon-component-staff-grandstaff-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.wood", + ), + ): "weapon-component-sceptre-grandsceptre-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.wood", + ), + ): "weapon-component-sceptre-sceptre-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.wood", + ), + ): "weapon-component-sceptre-crozier-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.wood", + ), + ): "weapon-component-sceptre-crook-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.wood", + ), + ): "weapon-component-sceptre-ornate-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.wood", + ), + ): "weapon-component-sceptre-cane-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.wood", + ), + ): "weapon-component-sceptre-arbor-wood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-sword-sabre-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-sword-sawblade-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-sword-katana-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-sword-ornate-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-sword-zweihander-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-sword-greatsword-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-sword-longsword-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.bamboo", + ), + ): "weapon-component-staff-grandstaff-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.bamboo", + ), + ): "weapon-component-staff-longpole-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.bamboo", + ), + ): "weapon-component-staff-rod-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.bamboo", + ), + ): "weapon-component-staff-ornate-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.bamboo", + ), + ): "weapon-component-staff-pole-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.bamboo", + ), + ): "weapon-component-staff-staff-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.bamboo", + ), + ): "weapon-component-staff-brand-bamboo", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.hardwood", + ), + ): "weapon-component-sceptre-cane-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.hardwood", + ), + ): "weapon-component-sceptre-crook-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.hardwood", + ), + ): "weapon-component-sceptre-sceptre-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.hardwood", + ), + ): "weapon-component-sceptre-crozier-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.hardwood", + ), + ): "weapon-component-sceptre-ornate-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.hardwood", + ), + ): "weapon-component-sceptre-arbor-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.hardwood", + ), + ): "weapon-component-sceptre-grandsceptre-hardwood", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-hammer-greathammer-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-hammer-ornate-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-hammer-warhammer-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-hammer-greatmace-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-hammer-maul-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-hammer-spikedmace-cobalt", + ModularWeaponComponent( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.cobalt", + ), + ): "weapon-component-hammer-hammer-cobalt", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-axe-labrys-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-axe-ornate-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-axe-ornate-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-axe-battleaxe-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-axe-battleaxe-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-axe-greataxe-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-axe-axe-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-axe-axe-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-axe-poleaxe-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-axe-jagged-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-axe-jagged-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.frostwood", + Two, + ), + ): "weapon-sceptre-ornate-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.frostwood", + Two, + ), + ): "weapon-sceptre-crozier-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.frostwood", + Two, + ), + ): "weapon-sceptre-grandsceptre-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.frostwood", + Two, + ), + ): "weapon-sceptre-sceptre-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.frostwood", + Two, + ), + ): "weapon-sceptre-crook-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.frostwood", + Two, + ), + ): "weapon-sceptre-arbor-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.frostwood", + Two, + ), + ): "weapon-sceptre-cane-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-hammer-hammer-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-hammer-hammer-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-hammer-greatmace-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-hammer-greathammer-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-hammer-ornate-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-hammer-ornate-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-hammer-spikedmace-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-hammer-spikedmace-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-hammer-warhammer-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-hammer-warhammer-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-hammer-maul-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-axe-axe-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-axe-axe-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-axe-ornate-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-axe-ornate-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-axe-poleaxe-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-axe-battleaxe-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-axe-battleaxe-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-axe-jagged-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-axe-jagged-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-axe-greataxe-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-axe-labrys-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.frostwood", + Two, + ), + ): "weapon-staff-ornate-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.frostwood", + Two, + ), + ): "weapon-staff-staff-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.frostwood", + Two, + ), + ): "weapon-staff-grandstaff-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.frostwood", + Two, + ), + ): "weapon-staff-pole-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.frostwood", + Two, + ), + ): "weapon-staff-rod-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.frostwood", + Two, + ), + ): "weapon-staff-brand-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.frostwood", + Two, + ), + ): "weapon-staff-longpole-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-axe-axe-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-axe-axe-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-axe-greataxe-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-axe-jagged-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-axe-jagged-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-axe-ornate-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-axe-ornate-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-axe-poleaxe-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-axe-battleaxe-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-axe-battleaxe-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-axe-labrys-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.ironwood", + Two, + ), + ): "weapon-staff-ornate-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.ironwood", + Two, + ), + ): "weapon-staff-rod-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.ironwood", + Two, + ), + ): "weapon-staff-longpole-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.ironwood", + Two, + ), + ): "weapon-staff-grandstaff-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.ironwood", + Two, + ), + ): "weapon-staff-brand-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.ironwood", + Two, + ), + ): "weapon-staff-pole-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.ironwood", + Two, + ), + ): "weapon-staff-staff-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-hammer-warhammer-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-hammer-warhammer-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-hammer-maul-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-hammer-ornate-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-hammer-ornate-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-hammer-hammer-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-hammer-hammer-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-hammer-spikedmace-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-hammer-spikedmace-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-hammer-greathammer-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-hammer-greatmace-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.frostwood", + Two, + ), + ): "weapon-bow-bow-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.frostwood", + Two, + ), + ): "weapon-bow-warbow-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.frostwood", + Two, + ), + ): "weapon-bow-shortbow-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.frostwood", + Two, + ), + ): "weapon-bow-greatbow-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.frostwood", + Two, + ), + ): "weapon-bow-ornate-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.frostwood", + Two, + ), + ): "weapon-bow-composite-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.frostwood", + Two, + ), + ): "weapon-bow-longbow-frostwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.hardwood", + Two, + ), + ): "weapon-bow-longbow-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.hardwood", + Two, + ), + ): "weapon-bow-composite-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.hardwood", + Two, + ), + ): "weapon-bow-ornate-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.hardwood", + Two, + ), + ): "weapon-bow-bow-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.hardwood", + Two, + ), + ): "weapon-bow-shortbow-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.hardwood", + Two, + ), + ): "weapon-bow-warbow-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.hardwood", + Two, + ), + ): "weapon-bow-greatbow-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-axe-battleaxe-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-axe-battleaxe-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-axe-labrys-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-axe-ornate-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-axe-ornate-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-axe-jagged-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-axe-jagged-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-axe-axe-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-axe-axe-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-axe-greataxe-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-axe-poleaxe-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-axe-labrys-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-axe-ornate-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-axe-ornate-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-axe-jagged-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-axe-jagged-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-axe-poleaxe-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-axe-greataxe-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-axe-axe-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-axe-axe-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-axe-battleaxe-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-axe-battleaxe-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-axe-jagged-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.jagged", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-axe-jagged-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-axe-battleaxe-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.battleaxe", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-axe-battleaxe-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-axe-axe-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.axe", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-axe-axe-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-axe-ornate-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.ornate", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-axe-ornate-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.greataxe", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-axe-greataxe-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.poleaxe", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-axe-poleaxe-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.axe.labrys", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-axe-labrys-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-sword-sawblade-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-sword-sawblade-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-sword-sabre-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-sword-sabre-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-sword-ornate-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-sword-ornate-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-sword-longsword-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-sword-longsword-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-sword-greatsword-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-sword-katana-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-sword-katana-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-sword-zweihander-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-hammer-maul-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-hammer-hammer-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-hammer-hammer-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-hammer-warhammer-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-hammer-warhammer-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-hammer-spikedmace-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-hammer-spikedmace-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-hammer-greatmace-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-hammer-greathammer-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-hammer-ornate-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-hammer-ornate-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-hammer-spikedmace-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-hammer-spikedmace-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-hammer-maul-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-hammer-hammer-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-hammer-hammer-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-hammer-greatmace-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-hammer-warhammer-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-hammer-warhammer-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-hammer-ornate-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-hammer-ornate-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-hammer-greathammer-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.bamboo", + Two, + ), + ): "weapon-bow-warbow-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.bamboo", + Two, + ), + ): "weapon-bow-composite-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.bamboo", + Two, + ), + ): "weapon-bow-shortbow-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.bamboo", + Two, + ), + ): "weapon-bow-greatbow-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.bamboo", + Two, + ), + ): "weapon-bow-ornate-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.bamboo", + Two, + ), + ): "weapon-bow-bow-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.bamboo", + Two, + ), + ): "weapon-bow-longbow-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-sword-longsword-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-sword-longsword-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-sword-katana-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-sword-katana-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-sword-ornate-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-sword-ornate-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-sword-sabre-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-sword-sabre-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-sword-sawblade-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.bronze", + One, + ), + ): "weapon-sword-sawblade-bronze-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-sword-zweihander-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.bronze", + Two, + ), + ): "weapon-sword-greatsword-bronze-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.eldwood", + Two, + ), + ): "weapon-staff-staff-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.eldwood", + Two, + ), + ): "weapon-staff-rod-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.eldwood", + Two, + ), + ): "weapon-staff-brand-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.eldwood", + Two, + ), + ): "weapon-staff-longpole-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.eldwood", + Two, + ), + ): "weapon-staff-ornate-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.eldwood", + Two, + ), + ): "weapon-staff-grandstaff-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.eldwood", + Two, + ), + ): "weapon-staff-pole-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.bamboo", + Two, + ), + ): "weapon-sceptre-arbor-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.bamboo", + Two, + ), + ): "weapon-sceptre-crozier-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.bamboo", + Two, + ), + ): "weapon-sceptre-crook-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.bamboo", + Two, + ), + ): "weapon-sceptre-grandsceptre-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.bamboo", + Two, + ), + ): "weapon-sceptre-ornate-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.bamboo", + Two, + ), + ): "weapon-sceptre-sceptre-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.bamboo", + Two, + ), + ): "weapon-sceptre-cane-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.wood", + Two, + ), + ): "weapon-bow-ornate-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.wood", + Two, + ), + ): "weapon-bow-greatbow-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.wood", + Two, + ), + ): "weapon-bow-composite-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.wood", + Two, + ), + ): "weapon-bow-bow-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.wood", + Two, + ), + ): "weapon-bow-warbow-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.wood", + Two, + ), + ): "weapon-bow-shortbow-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.wood", + Two, + ), + ): "weapon-bow-longbow-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-sword-sabre-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-sword-sabre-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-sword-zweihander-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-sword-katana-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-sword-katana-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-sword-longsword-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-sword-longsword-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-sword-sawblade-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-sword-sawblade-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-sword-greatsword-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.orichalcum", + Two, + ), + ): "weapon-sword-ornate-orichalcum-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.orichalcum", + One, + ), + ): "weapon-sword-ornate-orichalcum-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.ironwood", + Two, + ), + ): "weapon-bow-longbow-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.ironwood", + Two, + ), + ): "weapon-bow-shortbow-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.ironwood", + Two, + ), + ): "weapon-bow-bow-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.ironwood", + Two, + ), + ): "weapon-bow-warbow-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.ironwood", + Two, + ), + ): "weapon-bow-greatbow-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.ironwood", + Two, + ), + ): "weapon-bow-ornate-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.ironwood", + Two, + ), + ): "weapon-bow-composite-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.eldwood", + Two, + ), + ): "weapon-sceptre-sceptre-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.eldwood", + Two, + ), + ): "weapon-sceptre-arbor-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.eldwood", + Two, + ), + ): "weapon-sceptre-cane-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.eldwood", + Two, + ), + ): "weapon-sceptre-crook-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.eldwood", + Two, + ), + ): "weapon-sceptre-ornate-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.eldwood", + Two, + ), + ): "weapon-sceptre-crozier-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.eldwood", + Two, + ), + ): "weapon-sceptre-grandsceptre-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-sword-ornate-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-sword-ornate-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-sword-zweihander-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-sword-sabre-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-sword-sabre-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-sword-sawblade-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-sword-sawblade-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-sword-greatsword-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-sword-katana-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-sword-katana-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.steel", + Two, + ), + ): "weapon-sword-longsword-steel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.steel", + One, + ), + ): "weapon-sword-longsword-steel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.wood", + Two, + ), + ): "weapon-staff-rod-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.wood", + Two, + ), + ): "weapon-staff-pole-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.wood", + Two, + ), + ): "weapon-staff-staff-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.wood", + Two, + ), + ): "weapon-staff-ornate-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.wood", + Two, + ), + ): "weapon-staff-brand-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.wood", + Two, + ), + ): "weapon-staff-grandstaff-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.wood", + Two, + ), + ): "weapon-staff-longpole-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-sword-greatsword-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-sword-zweihander-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-sword-sawblade-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-sword-sawblade-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-sword-katana-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-sword-katana-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-sword-ornate-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-sword-ornate-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-sword-longsword-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-sword-longsword-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.bloodsteel", + Two, + ), + ): "weapon-sword-sabre-bloodsteel-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.bloodsteel", + One, + ), + ): "weapon-sword-sabre-bloodsteel-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-hammer-warhammer-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-hammer-warhammer-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-hammer-maul-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-hammer-spikedmace-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-hammer-spikedmace-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-hammer-hammer-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-hammer-hammer-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-hammer-greatmace-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-hammer-ornate-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.iron", + One, + ), + ): "weapon-hammer-ornate-iron-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.iron", + Two, + ), + ): "weapon-hammer-greathammer-iron-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.ironwood", + Two, + ), + ): "weapon-sceptre-ornate-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.ironwood", + Two, + ), + ): "weapon-sceptre-cane-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.ironwood", + Two, + ), + ): "weapon-sceptre-sceptre-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.ironwood", + Two, + ), + ): "weapon-sceptre-crozier-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.ironwood", + Two, + ), + ): "weapon-sceptre-grandsceptre-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.ironwood", + Two, + ), + ): "weapon-sceptre-arbor-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.ironwood", + Two, + ), + ): "weapon-sceptre-crook-ironwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.greatbow", + "common.items.log.eldwood", + Two, + ), + ): "weapon-bow-greatbow-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.warbow", + "common.items.log.eldwood", + Two, + ), + ): "weapon-bow-warbow-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.longbow", + "common.items.log.eldwood", + Two, + ), + ): "weapon-bow-longbow-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.ornate", + "common.items.log.eldwood", + Two, + ), + ): "weapon-bow-ornate-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.bow", + "common.items.log.eldwood", + Two, + ), + ): "weapon-bow-bow-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.shortbow", + "common.items.log.eldwood", + Two, + ), + ): "weapon-bow-shortbow-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.bow.composite", + "common.items.log.eldwood", + Two, + ), + ): "weapon-bow-composite-eldwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.hardwood", + Two, + ), + ): "weapon-staff-ornate-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.hardwood", + Two, + ), + ): "weapon-staff-pole-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.hardwood", + Two, + ), + ): "weapon-staff-staff-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.hardwood", + Two, + ), + ): "weapon-staff-rod-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.hardwood", + Two, + ), + ): "weapon-staff-longpole-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.hardwood", + Two, + ), + ): "weapon-staff-brand-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.hardwood", + Two, + ), + ): "weapon-staff-grandstaff-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.wood", + Two, + ), + ): "weapon-sceptre-grandsceptre-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.wood", + Two, + ), + ): "weapon-sceptre-sceptre-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.wood", + Two, + ), + ): "weapon-sceptre-crozier-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.wood", + Two, + ), + ): "weapon-sceptre-crook-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.wood", + Two, + ), + ): "weapon-sceptre-ornate-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.wood", + Two, + ), + ): "weapon-sceptre-cane-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.wood", + Two, + ), + ): "weapon-sceptre-arbor-wood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-sword-sabre-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sabre", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-sword-sabre-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-sword-sawblade-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.sawblade", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-sword-sawblade-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-sword-katana-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.katana", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-sword-katana-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-sword-ornate-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.ornate", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-sword-ornate-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.zweihander", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-sword-zweihander-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.greatsword", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-sword-greatsword-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-sword-longsword-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sword.longsword", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-sword-longsword-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.grandstaff", + "common.items.log.bamboo", + Two, + ), + ): "weapon-staff-grandstaff-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.longpole", + "common.items.log.bamboo", + Two, + ), + ): "weapon-staff-longpole-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.rod", + "common.items.log.bamboo", + Two, + ), + ): "weapon-staff-rod-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.ornate", + "common.items.log.bamboo", + Two, + ), + ): "weapon-staff-ornate-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.pole", + "common.items.log.bamboo", + Two, + ), + ): "weapon-staff-pole-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.staff", + "common.items.log.bamboo", + Two, + ), + ): "weapon-staff-staff-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.staff.brand", + "common.items.log.bamboo", + Two, + ), + ): "weapon-staff-brand-bamboo", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.cane", + "common.items.log.hardwood", + Two, + ), + ): "weapon-sceptre-cane-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crook", + "common.items.log.hardwood", + Two, + ), + ): "weapon-sceptre-crook-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.sceptre", + "common.items.log.hardwood", + Two, + ), + ): "weapon-sceptre-sceptre-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.crozier", + "common.items.log.hardwood", + Two, + ), + ): "weapon-sceptre-crozier-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.ornate", + "common.items.log.hardwood", + Two, + ), + ): "weapon-sceptre-ornate-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.arbor", + "common.items.log.hardwood", + Two, + ), + ): "weapon-sceptre-arbor-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.sceptre.grandsceptre", + "common.items.log.hardwood", + Two, + ), + ): "weapon-sceptre-grandsceptre-hardwood", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greathammer", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-hammer-greathammer-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-hammer-ornate-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.ornate", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-hammer-ornate-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-hammer-warhammer-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.warhammer", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-hammer-warhammer-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.greatmace", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-hammer-greatmace-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.maul", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-hammer-maul-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-hammer-spikedmace-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.spikedmace", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-hammer-spikedmace-cobalt-1h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.cobalt", + Two, + ), + ): "weapon-hammer-hammer-cobalt-2h", + ModularWeapon( + ( + "common.items.modular.weapon.primary.hammer.hammer", + "common.items.mineral.ingot.cobalt", + One, + ), + ): "weapon-hammer-hammer-cobalt-1h", + }, +) \ No newline at end of file diff --git a/assets/voxygen/i18n/en/item/armor.ftl b/assets/voxygen/i18n/en/item/armor.ftl new file mode 100644 index 0000000000..c76b72ee5a --- /dev/null +++ b/assets/voxygen/i18n/en/item/armor.ftl @@ -0,0 +1,1086 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +armor-leather_blue-pants = Blue Leather Cuirass + .desc = {""} + +armor-misc-back-backpack = Rugged Backpack + .desc = Keeps all your stuff together. + +armor-leather_blue-back = Blue Traveler Coat + .desc = {""} + +armor-hide-carapace-back = Carapace Cape + .desc = Made from the shell that once shielded a beast. + +armor-hide-carapace-belt = Carapace Belt + .desc = Made from the shell that once shielded a beast. + +armor-hide-carapace-chest = Carapace Cuirass + .desc = Made from the shell that once shielded a beast. + +armor-hide-carapace-foot = Carapace Treads + .desc = Made from the shell that once shielded a beast. + +armor-hide-carapace-hand = Carapace Grips + .desc = Made from the shell that once shielded a beast. + +armor-hide-carapace-pants = Carapace Leggings + .desc = Made from the shell that once shielded a beast. + +armor-hide-carapace-shoulder = Carapace Shoulderpads + .desc = Made from the shell that once shielded a beast. + +armor-hide-primal-back = Primal Cape + .desc = Smithed from hide tougher than steel. + +armor-hide-primal-belt = Primal Sash + .desc = Smithed from hide tougher than steel. + +armor-hide-primal-chest = Primal Cuirass + .desc = Smithed from hide tougher than steel. + +armor-hide-primal-foot = Primal Boots + .desc = Smithed from hide tougher than steel. + +armor-hide-primal-hand = Primal Gauntlets + .desc = Smithed from hide tougher than steel. + +armor-hide-primal-pants = Primal Legs + .desc = Smithed from hide tougher than steel. + +armor-hide-primal-shoulder = Primal Shoulders + .desc = Smithed from hide tougher than steel. + +armor-hide-leather-back = Leather Cloak + .desc = Swift like the wind. + +armor-hide-leather-belt = Leather Belt + .desc = Swift like the wind. + +armor-hide-leather-chest = Leather Chestpiece + .desc = Swift like the wind. + +armor-hide-leather-foot = Leather Boots + .desc = Swift like the wind. + +armor-hide-leather-hand = Leather Gloves + .desc = Swift like the wind. + +armor-misc-head-leather-0 = Leather Cap + .desc = Swift like the wind. + +armor-hide-leather-pants = Leather Pants + .desc = Swift like the wind. + +armor-hide-leather-shoulder = Leather Shoulderpads + .desc = Swift like the wind. + +armor-hide-rawhide-back = Rawhide Cloak + .desc = Tightly packed pieces of leather. Light-weight and sturdy! + +armor-hide-rawhide-belt = Rawhide Belt + .desc = Tightly packed pieces of leather. Light-weight and sturdy! + +armor-hide-rawhide-chest = Rawhide Chestpiece + .desc = Tightly packed pieces of leather. Light-weight and sturdy! + +armor-hide-rawhide-foot = Rawhide Shoes + .desc = Tightly packed pieces of leather. Light-weight and sturdy! + +armor-hide-rawhide-hand = Rawhide Bracers + .desc = Tightly packed pieces of leather. Light-weight and sturdy! + +armor-hide-rawhide-pants = Rawhide Pants + .desc = Tightly packed pieces of leather. Light-weight and sturdy! + +armor-hide-rawhide-shoulder = Rawhide Shoulderpads + .desc = Tightly packed pieces of leather. Light-weight and sturdy! + +armor-hide-scale-back = Scale Cape + .desc = Each embedded scale provides additional protection. + +armor-hide-scale-belt = Scale Girdle + .desc = Each embedded scale provides additional protection. + +armor-hide-scale-chest = Scale Chestpiece + .desc = Each embedded scale provides additional protection. + +armor-hide-scale-foot = Scale Sabatons + .desc = Each embedded scale provides additional protection. + +armor-hide-scale-hand = Scale Fists + .desc = Each embedded scale provides additional protection. + +armor-hide-scale-pants = Scale Leggings + .desc = Each embedded scale provides additional protection. + +armor-hide-scale-shoulder = Scale Shoulderguards + .desc = Each embedded scale provides additional protection. + +armor-hide-dragonscale-back = Dragonscale Cape + .desc = Crafted from the scales of a legendary creature, power can be felt pulsing through it. + +armor-hide-dragonscale-belt = Dragonscale Sash + .desc = Crafted from the scales of a legendary creature, power can be felt pulsing through it. + +armor-hide-dragonscale-chest = Dragonscale Chestplate + .desc = Crafted from the scales of a legendary creature, power can be felt pulsing through it. + +armor-hide-dragonscale-foot = Dragonscale Spurs + .desc = Crafted from the scales of a legendary creature, power can be felt pulsing through it. + +armor-hide-dragonscale-hand = Dragonscale Gloves + .desc = Crafted from the scales of a legendary creature, power can be felt pulsing through it. + +armor-hide-dragonscale-pants = Dragonscale Leggings + .desc = Crafted from the scales of a legendary creature, power can be felt pulsing through it. + +armor-hide-dragonscale-shoulder = Dragonscale Mantle + .desc = Crafted from the scales of a legendary creature, power can be felt pulsing through it. + +armor-cloth_blue-belt = Blue Linen Belt + .desc = A stylish rough fabric belt, dyed blue. + +armor-cloth_blue-chest = Blue Linen Chest + .desc = A stylish rough fabric surcoat, dyed blue. + +armor-cloth_blue-foot = Blue Linen Boots + .desc = Cobbled rough fabric boots, dyed blue. + +armor-cloth_blue-hand = Blue Linen Wrists + .desc = Rough cloth bracelets provide a stylish fashion statement, dyed blue. + +armor-cloth_blue-pants = Blue Linen Skirt + .desc = A stylish, rough fabric skirt, dyed blue. + +armor-cloth_blue-shoulder_0 = Blue Linen Coat + .desc = A rough fabric coat, dyed blue. + +armor-cloth_blue-shoulder_1 = Blue Cloth Pads + .desc = Simple shoulderpads made from blue cloth. + +armor-velorite_battlemage-back = Velorite Battlemage Cloak + .desc = Keeps your shoulders warm. + +armor-velorite_battlemage-belt = Velorite Battlemage Belt + .desc = {""} + +armor-velorite_battlemage-chest = Velorite Battlemage Vest + .desc = {""} + +armor-velorite_battlemage-foot = Velorite Battlemage Boots + .desc = {""} + +armor-velorite_battlemage-hand = Velorite Battlemage Gauntlets + .desc = {""} + +armor-velorite_battlemage-pants = Velorite Battlemage Kilt + .desc = {""} + +armor-velorite_battlemage-shoulder = Velorite Battlemage Guards + .desc = {""} + +armor-boreal-back = Boreal Cloak + .desc = Thick yet surprisingly cold. + +armor-boreal-belt = Boreal Belt + .desc = It's cold. + +armor-boreal-chest = Boreal Chestplate + .desc = So frigid that you can feel it in your heart. + +armor-boreal-foot = Boreal Wrappings + .desc = The blistering cold makes it hard to move. + +armor-boreal-hand = Boreal Gauntlets + .desc = Colder than the touch of death. + +armor-boreal-pants = Boreal Tunic + .desc = Colder than the climate it protects you from. + +armor-boreal-shoulder = Boreal Spaulders + .desc = As though the icy grip of death touches your shoulder. + +armor-assassin-belt = Assassin Belt + .desc = Only the best for a member of the creed. + +armor-assassin-chest = Assassin Chest + .desc = Only the best for a member of the creed. + +armor-assassin-foot = Assassin Boots + .desc = Only the best for a member of the creed. + +armor-assassin-hand = Assassin Gloves + .desc = Only the best for a member of the creed. + +armor-misc-head-assa_mask-0 = Dark Assassin Mask + .desc = A general assassination mask preventing the wearer from being identified. + +armor-assassin-pants = Assassin Pants + .desc = Only the best for a member of the creed. + +armor-assassin-shoulder = Assassin Shoulder Guard + .desc = Only the best for a member of the creed. + +armor-brinestone-back = Brinestone Cloak + .desc = It's not weak. + +armor-brinestone-belt = Brinestone Belt + .desc = Ties it together. + +armor-brinestone-chest = Brinestone Chestplate + .desc = Hard to pierce. + +armor-brinestone-crown = Brinestone Crown + .desc = Makes you look taller. + +armor-brinestone-foot = Brinestone Boots + .desc = Not very comfortable. + +armor-brinestone-hand = Brinestone Gauntlets + .desc = Hits like a rock. + +armor-brinestone-pants = Brinestone Pants + .desc = Do not tumble. + +armor-brinestone-shoulder = Brinestone Pads + .desc = Almost too heavy. + +armor-misc-foot-iceskate = Ice Skates + .desc = Best used on a frozen lake. + +armor-misc-foot-jackalope = Fluffy Jackalope Slippers + .desc = So warm and cozy! + +armor-misc-foot-cloth_sandal = Worn out Sandals + .desc = Loyal companions, though they don't look like they can go much further. + +armor-misc-foot-ski = Wooden skis + .desc = Best used downhill on snow. + +armor-misc-neck-abyssal_gorget = Abyssal Gorget + .desc = Harnessed vigour of the tides + +armor-misc-neck-amethyst = Amethyst Necklace + .desc = A tin necklace lined with amethyst gems. + +armor-misc-neck-ankh_of_life = Ankh of Life + .desc = A unique necklace of unkown origin... You can feel the power flowing through it. + +armor-misc-neck-carcanet_of_wrath = Carcanet of Wrath + .desc = A necklace that gives even the most feeble beings immense amounts of power. + +armor-misc-neck-diamond = Diamond Necklace + .desc = An expensive gold necklace, ornate with exquisite diamonds. + +armor-misc-neck-emerald = Emerald Necklace + .desc = A cobalt necklace, bearing beautiful emerald gems. + +armor-misc-neck-fang = Fang Necklace + .desc = Only the most savage beings can handle the power of this necklace... + +armor-misc-neck-resilience_gem = Gem of Resilience + .desc = Surrounded by a discrete magical glow. + +armor-misc-neck-gold = Gold Necklace + .desc = An expensive gold necklace... looks stolen. + +armor-misc-neck-haniwa_talisman = Haniwa Talisman + .desc = A talisman depicting a figure of unknown origin. + +armor-misc-neck-honeycomb_pendant = Honeycomb Pendant + .desc = This necklace is always spewing out honey... + +armor-misc-neck-pendant_of_protection = Pendant of Protection + .desc = You feel some sort of presence keeping you safe... + +armor-misc-neck-ruby = Ruby Necklace + .desc = An ornate silver necklace, embedded with beautiful rubies. + +armor-misc-neck-sapphire = Sapphire Necklace + .desc = A sturdy iron necklace, with polished sapphire gems embedded into it. + +armor-misc-neck-scratched = Scratched Necklace + .desc = A shoddy necklace with a string about to snap... + +armor-misc-neck-shell = Seashell Necklace + .desc = Contains the guardian aura of the ocean + +armor-misc-neck-topaz = Topaz Necklace + .desc = A copper necklace, with topaz embedded in the center. + +armor-misc-head-bamboo_twig = Bamboo Twig + .desc = A tiny stray shoot from a larger bamboo shaft. + +armor-misc-head-bear_bonnet = Bear Bonnet + .desc = Wearing the guise of a ferocious bear, its fury becomes your own. + +armor-misc-head-boreal_warhelm = Boreal Warhelmet + .desc = I wonder where it's pointing... + +armor-misc-head-crown = Crown + .desc = A crown fit for royal stature. + +armor-misc-head-exclamation = Exclamation hat + .desc = You feel like bestowing quests. + +armor-misc-head-facegourd = Facegourd + .desc = Pumpkin Head. + +armor-misc-head-gnarling_mask = Chieftain Mask + .desc = It smells like burned wood. + +armor-misc-head-helmet = Helmet + .desc = yep. + +armor-misc-head-hog_hood = Hog Hood + .desc = Wear the guise of a great swine now felled, so that you may honor its sacrifice. + +armor-misc-head-hood = Hood + .desc = Become one with the treetops. + +armor-misc-head-hood_dark = Dark Hood + .desc = Tis a bit thicker. + +armor-misc-head-howl_cowl = Howl Cowl + .desc = Wearing the guise of a fearsome wolf befits a fearsome hunter. + +armor-misc-head-mitre = Mitre + .desc = Calls strength down from above. + +armor-misc-head-spikeguard = Spiked Crown + .desc = Resembling some sort of thorny crown. + +armor-misc-head-straw = Straw Hat + .desc = Often times worn by villagers. It's simple and stylish! + +armor-misc-head-wanderers_hat = Wanderer's Hat + .desc = The perfect headwear for those who feel at home on the highways and byways of Veloren. + +armor-misc-head-winged_coronet = Winged Coronet + .desc = You feel more connected with nature. + +armor-misc-head-bandana-red = Red Bandana + .desc = Very sneaky, but also, bright red. + +armor-misc-head-bandana-thief = Thief Bandana + .desc = Common bandit's mask. + +armor-misc-pants-grayscale = Hunting Pants + .desc = Crafted from soft, supple leather. + +armor-misc-pants-worker_blue = Blue Worker Pants + .desc = Resilient and reliable. + +armor-misc-pants-worker_brown = Comfortable Worker Pants + .desc = Resilient and reliable. + +armor-tabard_admin = Admin's Tabard + .desc = With great power comes great responsibility. + +armor-misc-shoulder-iron_spikes = Iron Spiked Pauldrons + .desc = The heavy, rough iron plate has an interlocking spikes shoved through several slots in the center to dissuade attackers. + +armor-misc-shoulder-leather_iron_0 = Iron and Leather Spaulders + .desc = Leather shoulders decorated with heavy iron hooks provide protection to the wearer. + +armor-misc-shoulder-leather_iron_1 = Iron and Leather Spaulders + .desc = Leather inset with heavy iron spikes provide solid protection to the wearer. + +armor-misc-shoulder-leather_iron_2 = Iron and Leather Spaulders + .desc = Leather inset with heavy iron bands provide protection to the wearer. + +armor-misc-shoulder-leather_iron_3 = Iron and Leather Spaulders + .desc = Leather inset with iron fragments provide protection to the wearer. + +armor-misc-shoulder-leather_strip = Leather Strips + .desc = Tanned animal hide strips formed into loose shoulder pads. + +armor-misc-chest-worker_green = Green Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-shirt_white = Green Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-worker_green-worker_orange_0 = Orange Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-shirt_white-worker_orange_1 = Orange Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-worker_green-worker_purple_0 = Purple Worker Shirt + .desc = Resilient and reliable. + +armor-misc-chest-shirt_white-worker_purple_1 = Purple Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-worker_purp_brown = Purple Worker Shirt + .desc = Resilient and reliable. + +armor-misc-chest-worker_green-worker_red_0 = Red Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-shirt_white-worker_red_1 = Red Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-worker_green-worker_yellow_0 = Yellow Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-chest-shirt_white-worker_yellow_1 = Yellow Worker Shirt + .desc = Was used by a farmer, until recently. + +armor-misc-ring-amethyst = Amethyst Ring + .desc = A tin ring with an amethyst gem. + +armor-misc-ring-diamond = Diamond Ring + .desc = A gold ring with an expensive diamond. + +armor-misc-ring-emerald = Emerald Ring + .desc = A cobalt ring with an emerald gem. + +armor-misc-ring-gold = Gold Ring + .desc = A plain gold ring... almost as if it is missing a gem. + +armor-misc-ring-ruby = Ruby Ring + .desc = A silver ring with a ruby gem. + +armor-misc-ring-sapphire = Sapphire Ring + .desc = An iron ring with a sapphire gem. + +armor-misc-ring-scratched = Scratched Ring + .desc = Barely fits your finger. + +armor-misc-ring-topaz = Topaz Ring + .desc = A copper ring with a topaz gem. + +armor-misc-bag-heavy_seabag = Heavy Seabag + .desc = Commonly used by sailors. + +armor-misc-bag-knitted_red_pouch = Knitted Red Pouch + .desc = A sizeable red bag with two pouches, made of wool and dye. + +armor-misc-bag-liana_kit = Liana Kit + .desc = Woven from dried lianas. + +armor-misc-bag-mindflayer_spellbag = Mindflayer Spellbag + .desc = + You can almost feel the Mindflayer's + evil presence flowing through the fabric. + +armor-misc-bag-reliable_backpack = Reliable Backpack + .desc = It will never give you up. + +armor-misc-bag-reliable_leather_pack = Reliable Leather Pack + .desc = It will never give you up. + +armor-misc-bag-soulkeeper_cursed = Cursed Soulkeeper + .desc = WIP + +armor-misc-bag-soulkeeper_pure = Purified Soulkeeper + .desc = WIP + +armor-misc-bag-sturdy_red_backpack = Sturdy Red Saddlebag + .desc = A truly reliable and sizeable bag, embroidered with amethyst and thick leather. + +armor-misc-bag-tiny_leather_pouch = Small Leather Pouch + .desc = A small reliable leather pouch. + +armor-misc-bag-tiny_red_pouch = Tiny Red Pouch + .desc = Made from multiple patches of dyed cloth. + +armor-misc-bag-troll_hide_pack = Trollhide Pack + .desc = Trolls were definitely hurt in the making of this. + +armor-misc-bag-woven_red_bag = Woven Red Bag + .desc = A moderately sized red bag. Although it still feels pretty cramped. + +armor-misc-back-admin = Admin's Cape + .desc = + With great power comes + great responsibility. + +armor-misc-back-backpack-backpack = Traveler's Backpack + .desc = Comfortable and with enough capacity, its a hoarder's best friend. + +armor-misc-back-dungeon_purple = Purple Cultist Cape + .desc = Smells like dark magic and candles. + +armor-misc-back-short-0 = Short leather Cape + .desc = Probably made of the finest leather. + +armor-misc-back-short-1 = Green Blanket + .desc = Keeps your shoulders warm. + +armor-savage-back = Savage Cape + .desc = Brings the fury of the barbarians. + +armor-savage-belt = Savage Belt + .desc = Brings the fury of the barbarians. + +armor-savage-chest = Savage Cuirass + .desc = Brings the fury of the barbarians. + +armor-savage-foot = Savage Boots + .desc = Brings the fury of the barbarians. + +armor-savage-hand = Savage Gauntlets + .desc = Brings the fury of the barbarians. + +armor-savage-pants = Savage Chausses + .desc = Brings the fury of the barbarians. + +armor-savage-shoulder = Savage Shoulder Pad + .desc = Brings the fury of the barbarians. + +armor-witch-hat = Witch Hat + .desc = Draws strength from dark arts. + +armor-pirate-hat = Pirate Hat + .desc = It seems like a parrot was perched up here. + +armor-miner-helmet = Miner Helmet + .desc = Someone carved 'Mine!' into the inside. + +armor-bonerattler-belt = Bonerattler Belt + .desc = Sections of vertebrae fastened together with hide and a bonerattler eye for the buckle. + +armor-bonerattler-chest = Bonerattler Cuirass + .desc = The spiny back and hide of a bonerattler fastened together into a protective cuirass. + +armor-bonerattler-foot = Bonerattler Boots + .desc = Boots made from the claws and hide of a bonerattler. + +armor-bonerattler-hand = Bonerattler Gauntlets + .desc = The hide and bone from a bonerattler provide strong protection for the wearer. + +armor-bonerattler-pants = Bonerattler Chausses + .desc = Assorted bones and hide from a bonerattler provide protection around the wearer's legs. + +armor-bonerattler-shoulder = Bonerattler Shoulder Pad + .desc = Roughly formed bonerattler hide provide some strong protection. + +armor-cardinal-belt = Cardinal's Belt + .desc = Seemlessly transitions... + +armor-cardinal-chest = Cardinal's Cloak + .desc = A part of the cardinal's exquisite cloak. + +armor-cardinal-foot = Cardinal's Boots + .desc = The boots with millions of steps. + +armor-cardinal-hand = Cardinal's Gloves + .desc = Bloodstained and rugged. + +armor-cardinal-mitre = Cardinal Mitre + .desc = Induces respect. + +armor-cardinal-pants = Cardinal's Jeans + .desc = Pants with many experiences. + +armor-cardinal-shoulder = Cardinal's Shoulderguard + .desc = The other was lost in a vicious fight. + +armor-twigsleaves-belt = Leafy Belt + .desc = Dried leaves cover over the standard twig belt, providing a slightly different texture. + +armor-twigsleaves-chest = Leafy Shirt + .desc = Leaves cover the magically imbued twig shirt, providing a more natural appearance. + +armor-twigsleaves-foot = Leafy Boots + .desc = Leaves cover the magically entwined twigs to provide simple protection from the elements. + +armor-twigsleaves-hand = Leafy Wraps + .desc = Leaves help hide the magic-interlocking twigs, and provide mild protection from the elements. + +armor-twigsleaves-pants = Leafy Pants + .desc = Leaves cover the magically imbued chainmail twigs, providing protection from the elements. + +armor-twigsleaves-shoulder = Leafy Shoulders + .desc = Leaves cover over the twigs to provide better protection from the elements. + +armor-twigsflowers-belt = Flowery Belt + .desc = Magically imbued twigs, held together with a flower intertwining its stem to hold the belt together. + +armor-twigsflowers-chest = Flowery Shirt + .desc = Magically imbued twigs decorated with flowers and their stems, letting others know your intentions of peace and love. + +armor-twigsflowers-foot = Flowery Boots + .desc = Woven and magically imbued, these boots of twigs and flowers provide simple protection and peace to the wearer. + +armor-twigsflowers-hand = Flowery Wraps + .desc = Wrapped and intertwined twigs held together with magic and flowers with their stems, providing peace and protection for the wearer. + +armor-twigsflowers-pants = Flowery Pants + .desc = Chainmail woven twigs enhanced with flower stems to provide protection and peace. + +armor-twigsflowers-shoulder = Flowery Shoulders + .desc = Flowers join the tied twigs to provide protection and peace to the wearer. + +armor-leather_plate-belt = Leather Plate Belt + .desc = Leather adorned with steel for better protection. + +armor-leather_plate-chest = Leather Plate Chest + .desc = Leather adorned with steel for better protection. + +armor-leather_plate-foot = Leather Plate Boots + .desc = Leather adorned with steel for better protection. + +armor-leather_plate-hand = Leather Plate Gloves + .desc = Leather adorned with steel for better protection. + +armor-leather_plate-pants = Leather Plate Chausses + .desc = Leather adorned with steel for better protection. + +armor-leather_plate-shoulder = Leather Plate Shoulder Pad + .desc = Leather adorned with steel for better protection. + +armor-mail-bloodsteel-back = Bloodsteel Cape + .desc = Forged to preserve life, at the cost of another. + +armor-mail-bloodsteel-belt = Bloodsteel Girdle + .desc = Forged to preserve life, at the cost of another. + +armor-mail-bloodsteel-chest = Bloodsteel Chest + .desc = Forged to preserve life, at the cost of another. + +armor-mail-bloodsteel-foot = Bloodsteel Sabatons + .desc = Forged to preserve life, at the cost of another. + +armor-mail-bloodsteel-hand = Bloodsteel Gauntlets + .desc = Forged to preserve life, at the cost of another. + +armor-mail-bloodsteel-pants = Bloodsteel Legs + .desc = Forged to preserve life, at the cost of another. + +armor-mail-bloodsteel-shoulder = Bloodsteel Pauldrons + .desc = Forged to preserve life, at the cost of another. + +armor-mail-cobalt-back = Cobalt Cape + .desc = Ornamental and impenetrable, the metal will never dull. + +armor-mail-cobalt-belt = Cobalt Girdle + .desc = Ornamental and impenetrable, the metal will never dull. + +armor-mail-cobalt-chest = Cobalt Chestpiece + .desc = Ornamental and impenetrable, the metal will never dull. + +armor-mail-cobalt-foot = Cobalt Footguards + .desc = Ornamental and impenetrable, the metal will never dull. + +armor-mail-cobalt-hand = Cobalt Gauntlets + .desc = Ornamental and impenetrable, the metal will never dull. + +armor-mail-cobalt-pants = Cobalt Leggings + .desc = Ornamental and impenetrable, the metal will never dull. + +armor-mail-cobalt-shoulder = Cobalt Shoulderguards + .desc = Ornamental and impenetrable, the metal will never dull. + +armor-mail-bronze-back = Bronze Cloak + .desc = 'Heavy and dull, but it can take a punch.' + +armor-mail-bronze-belt = Bronze Girdle + .desc = 'Heavy and dull, but it can take a punch.' + +armor-mail-bronze-chest = Bronze Chestguard + .desc = Heavy and dull, but it can take a punch. + +armor-mail-bronze-foot = Bronze Shoes + .desc = 'Heavy and dull, but it can take a punch. + +armor-mail-bronze-hand = Bronze Gauntlets + .desc = 'Heavy and dull, but it can take a punch.' + +armor-mail-bronze-pants = Bronze Pantalons + .desc = 'Heavy and dull, but it can take a punch.' + +armor-mail-bronze-shoulder = Bronze Guards + .desc = Heavy and dull, but it can take a punch. + +armor-mail-orichalcum-6 = Orichalcum Cape + .desc = An ancient alloy. Myths remain of heroes who once wore this metal. + +armor-mail-orichalcum-2 = Orichalcum Belt + .desc = An ancient alloy. Myths remain of heroes who once wore this metal. + +armor-mail-orichalcum = Orichalcum Chestguard + .desc = An ancient alloy. Myths remain of heroes who once wore this metal. + +armor-mail-orichalcum-3 = Orichalcum Warboots + .desc = An ancient alloy. Myths remain of heroes who once wore this metal. + +armor-mail-orichalcum-4 = Orichalcum Gloves + .desc = An ancient alloy. Myths remain of heroes who once wore this metal. + +armor-mail-orichalcum-1 = Orichalcum Legplates + .desc = An ancient alloy. Myths remain of heroes who once wore this metal. + +armor-mail-orichalcum-5 = Orichalcum Mantle + .desc = An ancient alloy. Myths remain of heroes who once wore this armor. + +armor-mail-steel-back = Steel Cape + .desc = Metal alloy interlocking plates to improve protection. + +armor-mail-steel-belt = Steel Belt + .desc = Metal alloy interlocking plates to improve protection. + +armor-mail-steel-chest = Steel Cuirass + .desc = The metal alloy provides a somewhat lighter and stronger cuirass. + +armor-mail-steel-foot = Steel Boots + .desc = Metal alloy boots providing a more comfortable and durable protection. + +armor-mail-steel-hand = Steel Gauntlets + .desc = The metal alloy provides better protection and lighter weight, a quite comfortable gauntlet. + +armor-mail-steel-pants = Steel Chausses + .desc = The metal alloy provides improvements to fit, durability, and lightness. + +armor-mail-steel-shoulder = Steel Shoulders + .desc = The metal alloy plates provide better protection and comfort. + +armor-mail-iron-back = Iron Cloak + .desc = Sturdy and unyielding, across ages of war. + +armor-mail-iron-belt = Iron Belt + .desc = Sturdy and unyielding, across ages of war. + +armor-mail-iron-chest = Iron Chestguard + .desc = Sturdy and unyielding, across ages of war. + +armor-mail-iron-foot = Iron Footguards + .desc = Sturdy and unyielding, across ages of war. + +armor-mail-iron-hand = Iron Fists + .desc = Sturdy and unyielding, across ages of war. + +armor-mail-iron-pants = Iron Pants + .desc = Sturdy and unyielding, across ages of war. + +armor-mail-iron-shoulder = Iron Shoulderpads + .desc = Sturdy and unyielding, across ages of war. + +armor-cloth_purple-belt = Purple Linen Belt + .desc = A stylish rough fabric belt, dyed purple. + +armor-cloth_purple-chest = Purple Linen Chest + .desc = A stylish rough fabric surcoat, dyed purple. + +armor-cloth_purple-foot = Purple Linen Boots + .desc = Cobbled rough fabric boots, dyed purple. + +armor-cloth_purple-hand = Purple Linen Wrists + .desc = Rough cloth bracelets provide a stylish fashion statement, dyed purple. + +armor-cloth_purple-pants = Purple Linen Skirt + .desc = A stylish, rough fabric skirt, dyed purple. + +armor-cloth_purple-shoulder = Purple Linen Coat + .desc = A rough fabric coat, dyed purple. + +armor-rugged-chest = Rugged Shirt + .desc = Smells like Adventure. + +armor-rugged-pants = Rugged Commoner's Pants + .desc = They remind you of the old days. + +armor-cloth_green-belt = Green Linen Belt + .desc = A stylish rough fabric belt, dyed green. + +armor-cloth_green-chest = Green Linen Chest + .desc = A stylish rough fabric surcoat, dyed green. + +armor-cloth_green-foot = Green Linen Boots + .desc = Cobbled rough fabric boots, dyed green. + +armor-cloth_green-hand = Green Linen Wrists + .desc = Rough cloth bracelets provide a stylish fashion statement, dyed green. + +armor-cloth_green-pants = Green Linen Skirt + .desc = A stylish, rough fabric skirt, dyed green. + +armor-cloth_green-shoulder = Green Linen Coat + .desc = A rough fabric coat, dyed green. + +armor-merchant-back = Merchant Backpack + .desc = {""} + +armor-merchant-belt = Merchant Belt + .desc = {""} + +armor-merchant-chest = Merchant Jacket + .desc = {""} + +armor-merchant-foot = Merchant Boots + .desc = {""} + +armor-merchant-hand = Merchant Gloves + .desc = {""} + +armor-merchant-pants = Merchant Pants + .desc = {""} + +armor-merchant-shoulder_l = Merchant Mantle + .desc = {""} + +armor-merchant-turban = Impressive Turban + .desc = An incredibly fancy and light-weight turban, quite expensive too. + +armor-tarasque-belt = Tarasque Belt + .desc = Shattered band of a tarasque shell, making for a strong belt. + +armor-tarasque-chest = Tarasque Cuirass + .desc = The rough protective underbelly and back of a tarasque's shell, formed to fit humanoid proportions. + +armor-tarasque-foot = Tarasque Boots + .desc = Tarasque claws form the outside of these boots, protecting the wearer's feet. + +armor-tarasque-hand = Tarasque Gauntlets + .desc = Shattered fragments from a tarasque shell shaped into a protective gauntlets. + +armor-tarasque-pants = Tarasque Chausses + .desc = Fragmented tarasque shell tied together to form protective leg armor. + +armor-tarasque-shoulder = Tarasque Shoulder Pad + .desc = Spiky tarasque shell fragments formed to fit as shoulder guards. + +armor-twigs-belt = Twig Belt + .desc = Small bits of nature magically held together into the shape of a belt. + +armor-twigs-chest = Twig Shirt + .desc = Small sticks magically imbued to hold together to form a shirt. + +armor-twigs-foot = Twig Boots + .desc = Small twigs intertwined and imbued with magic to provide simple protection. + +armor-twigs-hand = Twig Wraps + .desc = Magically imbued twigs interlocked into simple hand wraps. + +armor-twigs-pants = Twig Pants + .desc = Magically imbued twigs formed into links similar to chainmail. + +armor-twigs-shoulder = Twig Shoulders + .desc = Spaulders made from tightly tied twigs. + +armor-cultist-bandana = Cultist Bandana + .desc = Ceremonial attire used by members. + +armor-cultist-belt = Cultist Belt + .desc = Ceremonial attire used by members. + +armor-cultist-chest = Cultist Chest + .desc = Ceremonial attire used by members. + +armor-cultist-foot = Cultist Boots + .desc = Ceremonial attire used by members. + +armor-cultist-hand = Cultist Gloves + .desc = Ceremonial attire used by members. + +armor-cultist-necklace = Cultist Amulet + .desc = You can still feel the Mindflayer's presence within this amulet... + +armor-cultist-pants = Cultist Skirt + .desc = Ceremonial attire used by members. + +armor-cultist-ring = Cultist Signet Ring + .desc = Once belonged to a cultist. + +armor-cultist-shoulder = Cultist Mantle + .desc = Ceremonial attire used by members. + +armor-cloth-moonweave-back = Moonweave Cape + .desc = The fabric dances silently, like moonlight. + +armor-cloth-moonweave-belt = Moonweave Belt + .desc = The fabric dances silently, like moonlight. + +armor-cloth-moonweave-chest = Moonweave Vest + .desc = The fabric dances silently, like moonlight. + +armor-cloth-moonweave-foot = Moonweave Boots + .desc = The fabric dances silently, like moonlight. + +armor-cloth-moonweave-hand = Moonweave Gloves + .desc = The fabric dances silently, like moonlight. + +armor-cloth-moonweave-pants = Moonweave Legs + .desc = The fabric dances silently, like moonlight. + +armor-cloth-moonweave-shoulder = Moonweave Shoulders + .desc = The fabric dances silently, like moonlight. + +armor-cloth-linen-back = Linen Shawl + .desc = Roughly stitched, but it seems to hold. + +armor-cloth-linen-belt = Linen Sash + .desc = Roughly stitched, but it seems to hold. + +armor-cloth-linen-chest = Linen Vest + .desc = Roughly stitched, but it seems to hold. + +armor-cloth-linen-foot = Linen Feet + .desc = Roughly stitched, but it seems to hold. + +armor-cloth-linen-hand = Linen Handwraps + .desc = Roughly stitched, but it seems to hold. + +armor-cloth-linen-pants = Linen Pants + .desc = Roughly stitched, but it seems to hold. + +armor-cloth-linen-shoulder = Linen Shoulders + .desc = Roughly stitched, but it seems to hold. + +armor-cloth-sunsilk-back = Sunsilk Cape + .desc = It radiates with the sun's power, and the grace to harness it. + +armor-cloth-sunsilk-belt = Sunsilk Sash + .desc = It radiates with the sun's power, and the grace to harness it. + +armor-cloth-sunsilk-chest = Sunsilk Tunic + .desc = It radiates with the sun's power, and the grace to harness it. + +armor-cloth-sunsilk-foot = Sunsilk Footwraps + .desc = It radiates with the sun's power, and the grace to harness it. + +armor-cloth-sunsilk-hand = Sunsilk Handwraps + .desc = It radiates with the sun's power, and the grace to harness it. + +armor-cloth-sunsilk-pants = Sunsilk Kilt + .desc = It radiates with the sun's power, and the grace to harness it. + +armor-cloth-sunsilk-shoulder = Sunsilk Shoulderwraps + .desc = It radiates with the sun's power, and the grace to harness it. + +armor-cloth-woolen-back = Woolen Cloak + .desc = Thick and ready for the snow. + +armor-cloth-woolen-belt = Woolen Belt + .desc = Thick and ready for the snow. + +armor-cloth-woolen-chest = Woolen Parka + .desc = Thick and ready for the snow. + +armor-cloth-woolen-foot = Woolen Boots + .desc = Thick and ready for the snow. + +armor-cloth-woolen-hand = Woolen Mittens + .desc = Thick and ready for the snow. + +armor-cloth-woolen-pants = Woolen Pants + .desc = Thick and ready for the snow. + +armor-cloth-woolen-shoulder = Woolen Shoulders + .desc = Thick and ready for the snow. + +armor-cloth-silken-back = Silken Cape + .desc = Weaved with care by a skilled tailor. + +armor-cloth-silken-belt = Silken Sash + .desc = Weaved with care by a skilled tailor. + +armor-cloth-silken-chest = Silken Robe + .desc = Weaved with care by a skilled tailor. + +armor-cloth-silken-foot = Silken Feet + .desc = Weaved with care by a skilled tailor. + +armor-cloth-silken-hand = Silken Wraps + .desc = Weaved with care by a skilled tailor. + +armor-cloth-silken-pants = Silken Skirt + .desc = Weaved with care by a skilled tailor. + +armor-cloth-silken-shoulder = Silken Shoulders + .desc = Weaved with care by a skilled tailor. + +armor-cloth-druid-back = Druid Cape + .desc = Incredibly light, with the essence of nature. + +armor-cloth-druid-belt = Druid Sash + .desc = Incredibly light, with the essence of nature. + +armor-cloth-druid-chest = Druid Chestguard + .desc = Incredibly light, with the essence of nature. + +armor-cloth-druid-foot = Druid Kickers + .desc = Incredibly light, with the essence of nature. + +armor-cloth-druid-hand = Druid Handwraps + .desc = Incredibly light, with the essence of nature. + +armor-cloth-druid-pants = Druid Leggings + .desc = Incredibly light, with the essence of nature. + +armor-cloth-druid-shoulder = Druid Shoulderpads + .desc = Incredibly light, with the essence of nature. + +armor-ferocious-back = Ferocious Mantle + .desc = The dark side of nature + +armor-ferocious-belt = Ferocious Sash + .desc = The dark side of nature + +armor-ferocious-chest = Ferocious Shirt + .desc = The dark side of nature + +armor-ferocious-foot = Ferocious Waraji + .desc = The dark side of nature + +armor-ferocious-hand = Ferocious Wraps + .desc = The dark side of nature + +armor-ferocious-pants = Ferocious Shorts + .desc = The dark side of nature + +armor-ferocious-shoulder = Ferocious Guards + .desc = The dark side of nature + +armor-tabard_admin-admin = Admin's Tabard + .desc = + With great power comes + great responsibility. + +armor-misc-back-admin-admin_back = Admin's Cape + .desc = + With great power comes + great responsibility. + +armor-misc-bag-admin_black_hole = Admin's Black Hole + .desc = They say it will fit anything. + +armor-velorite_battlemage-belt-cultist_belt = Velorite Belt + .desc = {""} + +armor-velorite_battlemage-foot-cultist_boots = Velorite Boots + .desc = {""} + +armor-velorite_battlemage-chest-cultist_chest_blue = Velorite Chest + .desc = {""} + +armor-velorite_battlemage-hand-cultist_hands_blue = Velorite Gloves + .desc = {""} + +armor-velorite_battlemage-pants-cultist_legs_blue = Velorite Skirt + .desc = {""} + +armor-velorite_battlemage-shoulder-cultist_shoulder_blue = Velorite Mantle + .desc = {""} + +armor-velorite_battlemage-back-dungeon_purple = Velorite Admin Cape + .desc = Where did I put my banhammer again? + +armor-misc-head-woolly_wintercap = Woolly Wintercap + .desc = Simple, stylish, and festive. diff --git a/assets/voxygen/i18n/en/item/common.ftl b/assets/voxygen/i18n/en/item/common.ftl new file mode 100644 index 0000000000..d836ee1fb1 --- /dev/null +++ b/assets/voxygen/i18n/en/item/common.ftl @@ -0,0 +1,1234 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +common-items-testing-test_bag_18_slot = Test 18 slot bag + .desc = Used for unit tests do not delete + +common-items-testing-test_bag_9_slot = Test 9 slot bag + .desc = Used for unit tests do not delete + +common-items-testing-test_boots = Testing Boots + .desc = Hopefully this test doesn't break! + +common-items-npc_armor-pants-leather_blue = Blue Leather Guards + .desc = {""} + +common-items-npc_armor-pants-plate_red = Iron Legguards + .desc = Greaves forged from iron. + +common-items-npc_armor-quadruped_low-dagon = Dagon's Scales + .desc = Rigid enough to withstand the pressure of the deep ocean. + +common-items-npc_armor-quadruped_low-generic = Quad Low Generic + .desc = Scaly. + +common-items-npc_armor-quadruped_low-shell = Quad Low Shell + .desc = Shell. + +common-items-npc_armor-bird_large-phoenix = Phoenix Armor + .desc = The thickest feather you have ever seen! + +common-items-npc_armor-bird_large-wyvern = Wyvern Armor + .desc = Generic Protection. + +common-items-npc_armor-golem-claygolem = Clay Golem Armor + .desc = Worn by clay golem. + +common-items-npc_armor-golem-woodgolem = Wood Golem Armor + .desc = Yeet + +common-items-npc_armor-biped_small-myrmidon-foot-hoplite = Myrmidon Hoplite + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-foot-marksman = Myrmidon Marksman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-foot-strategian = Myrmidon Strategian + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-head-hoplite = Myrmidon Hoplite + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-myrmidon-head-marksman = Myrmidon Marksman + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-myrmidon-head-strategian = Myrmidon Strategian + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-myrmidon-pants-hoplite = Myrmidon Hoplite + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-pants-marksman = Myrmidon Marksman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-pants-strategian = Myrmidon Strategian + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-chest-hoplite = Myrmidon Hoplite + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-myrmidon-chest-marksman = Myrmidon Marksman + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-myrmidon-chest-strategian = Myrmidon Strategian + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-myrmidon-hand-hoplite = Myrmidon Hoplite + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-hand-marksman = Myrmidon Marksman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-hand-strategian = Myrmidon Strategian + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-tail-hoplite = Myrmidon Hoplite + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-tail-marksman = Myrmidon Marksman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-myrmidon-tail-strategian = Myrmidon Strategian + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-foot-sniper = Sahagin Sniper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-foot-sorcerer = Sahagin Sorcerer + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-foot-spearman = Sahagin Spearman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-head-sniper = Sahagin Sniper + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-sahagin-head-sorcerer = Sahagin Sorcerer + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-sahagin-head-spearman = Sahagin Spearman + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-sahagin-pants-sniper = Sahagin Sniper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-pants-sorcerer = Sahagin Sorcerer + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-pants-spearman = Sahagin Spearman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-chest-sniper = Sahagin Sniper + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-sahagin-chest-sorcerer = Sahagin Sorcerer + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-sahagin-chest-spearman = Sahagin Spearman + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-sahagin-hand-sniper = Sahagin Sniper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-hand-sorcerer = Sahagin Sorcerer + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-hand-spearman = Sahagin Spearman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-tail-sniper = Sahagin Sniper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-tail-sorcerer = Sahagin Sorcerer + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-sahagin-tail-spearman = Sahagin Spearman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-adlet-foot-hunter = Adlet Hunter + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-foot-icepicker = Adlet Icepicker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-foot-tracker = Adlet Tracker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-head-hunter = Adlet Hunter + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-head-icepicker = Adlet Icepicker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-head-tracker = Adlet Tracker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-pants-hunter = Adlet Hunter + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-adlet-pants-icepicker = Adlet Icepicker + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-adlet-pants-tracker = Adlet Tracker + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-adlet-chest-hunter = Adlet Hunter + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-chest-icepicker = Adlet Icepicker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-chest-tracker = Adlet Tracker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-hand-hunter = Adlet Hunter + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-adlet-hand-icepicker = Adlet Icepicker + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-adlet-hand-tracker = Adlet Tracker + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-adlet-tail-hunter = Adlet Hunter + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-tail-icepicker = Adlet Icepicker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-adlet-tail-tracker = Adlet Tracker + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-foot-chieftain = Gnarling Chieftain + .desc = Only worn by the most spiritual of Gnarlings. + +common-items-npc_armor-biped_small-gnarling-foot-logger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-foot-mugger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-foot-stalker = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-head-chieftain = Gnarling Chieftain + .desc = Only worn by the most spiritual of Gnarlings. + +common-items-npc_armor-biped_small-gnarling-head-logger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-head-mugger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-head-stalker = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-pants-chieftain = Gnarling Chieftain + .desc = Only worn by the most spiritual of Gnarlings. + +common-items-npc_armor-biped_small-gnarling-pants-logger = Gnarling + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnarling-pants-mugger = Gnarling + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnarling-pants-stalker = Gnarling + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnarling-chest-chieftain = Gnarling Chieftain + .desc = Only worn by the most spiritual of Gnarlings. + +common-items-npc_armor-biped_small-gnarling-chest-logger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-chest-mugger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-chest-stalker = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-hand-chieftain = Gnarling Chieftain + .desc = Only worn by the most spiritual of Gnarlings. + +common-items-npc_armor-biped_small-gnarling-hand-logger = Gnarling + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnarling-hand-mugger = Gnarling + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnarling-hand-stalker = Gnarling + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnarling-tail-chieftain = Gnarling Chieftain + .desc = Only worn by the most spiritual of Gnarlings. + +common-items-npc_armor-biped_small-gnarling-tail-logger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-tail-mugger = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnarling-tail-stalker = Gnarling + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-kappa-foot-kappa = Kappa + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-kappa-head-kappa = Kappa + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-kappa-pants-kappa = Kappa + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-kappa-chest-kappa = Kappa + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-kappa-hand-kappa = Kappa + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-kappa-tail-kappa = Kappa + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-boreal-foot-warrior = Boreal Wrappings + .desc = The blistering cold makes it hard to move. + +common-items-npc_armor-biped_small-boreal-head-warrior = Boreal Helmet + .desc = Did somebody say...BRAINFREEZE?! + +common-items-npc_armor-biped_small-boreal-pants-warrior = Boreal Tunic + .desc = Colder than the climate it protects you from. + +common-items-npc_armor-biped_small-boreal-chest-warrior = Boreal Chestplate + .desc = So frigid that you can feel it in your heart. + +common-items-npc_armor-biped_small-boreal-hand-warrior = Boreal Gauntlets + .desc = Colder than the touch of death. + +common-items-npc_armor-biped_small-bushly-foot-bushly = Bushly + .desc = Plant Creature + +common-items-npc_armor-biped_small-bushly-pants-bushly = Bushly + .desc = Plant Creature + +common-items-npc_armor-biped_small-bushly-chest-bushly = Bushly + .desc = Plant Creature + +common-items-npc_armor-biped_small-bushly-hand-bushly = Mandragora + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-clockwork-foot-clockwork = Clockwork Foot + .desc = Clockwork Foot. + +common-items-npc_armor-biped_small-clockwork-head-clockwork = Clockwork Head + .desc = Clockwork Head + +common-items-npc_armor-biped_small-clockwork-pants-clockwork = Clockwork Pants + .desc = Clockwork Pants + +common-items-npc_armor-biped_small-clockwork-chest-clockwork = Clockwork Chest + .desc = Clockwork Chest + +common-items-npc_armor-biped_small-clockwork-hand-clockwork = Clockwork Hand + .desc = Clockwork Hand + +common-items-npc_armor-biped_small-haniwa-foot-archer = Haniwa Archer + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-foot-guard = Haniwa Guard + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-foot-soldier = Haniwa Soldier + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-head-archer = Haniwa Archer + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-haniwa-head-guard = Haniwa Guard + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-haniwa-head-soldier = Haniwa Soldier + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-haniwa-pants-archer = Haniwa Archer + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-pants-guard = Haniwa Guard + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-pants-soldier = Haniwa Soldier + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-chest-archer = Haniwa Archer + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-haniwa-chest-guard = Haniwa Guard + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-haniwa-chest-soldier = Haniwa Soldier + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-haniwa-hand-archer = Haniwa Archer + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-hand-guard = Haniwa Guard + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-haniwa-hand-soldier = Haniwa Soldier + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-husk-foot-husk = Husk + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-husk-head-husk = Husk + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-husk-pants-husk = Husk + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-husk-chest-husk = Husk + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-husk-hand-husk = Husk + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-husk-tail-husk = Husk + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-flamekeeper-foot-flamekeeper = Flamekeeper Foot + .desc = Flamekeeper Foot. + +common-items-npc_armor-biped_small-flamekeeper-head-flamekeeper = Flamekeeper Head + .desc = Flamekeeper Head + +common-items-npc_armor-biped_small-flamekeeper-pants-flamekeeper = Flamekeeper Pants + .desc = Flamekeeper Pants + +common-items-npc_armor-biped_small-flamekeeper-chest-flamekeeper = Flamekeeper Chest + .desc = Flamekeeper Chest + +common-items-npc_armor-biped_small-flamekeeper-hand-flamekeeper = Flamekeeper Hand + .desc = Flamekeeper Hand + +common-items-npc_armor-biped_small-gnome-foot-gnome = Gnome + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnome-head-gnome = Gnome + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnome-pants-gnome = Gnome + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnome-chest-gnome = Gnome + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnome-hand-gnome = Gnome + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-mandragora-foot-mandragora = Mandragora + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-mandragora-pants-mandragora = Mandragora + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-mandragora-chest-mandragora = Mandragora + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-mandragora-hand-mandragora = Mandragora + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-mandragora-tail-mandragora = Mandragora + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-irrwurz-foot-irrwurz = Irrwurz + .desc = Plant Creature + +common-items-npc_armor-biped_small-irrwurz-pants-irrwurz = Irrwurz + .desc = Plant Creature + +common-items-npc_armor-biped_small-irrwurz-chest-irrwurz = Irrwurz + .desc = Plant Creature + +common-items-npc_armor-biped_small-irrwurz-hand-irrwurz = Irrwurz + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnoll-foot-rogue = Gnoll Rogue + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-foot-shaman = Gnoll Shaman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-foot-trapper = Gnoll Trapper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-head-rogue = Gnoll Rogue + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnoll-head-shaman = Gnoll Shaman + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnoll-head-trapper = Gnoll Trapper + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnoll-pants-rogue = Gnoll Rogue + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-pants-shaman = Gnoll Shaman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-pants-trapper = Gnoll Trapper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-chest-rogue = Gnoll Rogue + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnoll-chest-shaman = Gnoll Shaman + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnoll-chest-trapper = Gnoll Trapper + .desc = Ceremonial attire used by members. + +common-items-npc_armor-biped_small-gnoll-hand-rogue = Gnoll Rogue + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-hand-shaman = Gnoll Shaman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-hand-trapper = Gnoll Trapper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-tail-rogue = Gnoll Rogue + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-tail-shaman = Gnoll Shaman + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-biped_small-gnoll-tail-trapper = Gnoll Trapper + .desc = Ceremonial attire used by members.. + +common-items-npc_armor-chest-plate_red = Iron Chestplate + .desc = A chestplate forged from iron. + +common-items-npc_armor-arthropod-generic = Arthropod Armor + .desc = Worn by arthropods. + +common-items-npc_armor-quadruped_medium-frostfang = Frostfang's Thick Skin + .desc = testing123 + +common-items-npc_armor-quadruped_medium-roshwalr = Roshwalr's Thick Skin + .desc = testing123 + +common-items-npc_armor-theropod-rugged = Theropod Rugged + .desc = stronk. + +common-items-npc_armor-biped_large-cyclops = Cyclops Armor + .desc = Made of mysteries. + +common-items-npc_armor-biped_large-dullahan = Dullahan Itself Armor + .desc = Made of It ownself. + +common-items-npc_armor-biped_large-generic = Generic Biped Large + .desc = Worn by bipeds. + +common-items-npc_armor-biped_large-gigas_frost = Frost Gigas Armor + .desc = The best defense is a good offense. + +common-items-npc_armor-biped_large-harvester = Harvester Shirt + .desc = Made of sunflowers. + +common-items-npc_armor-biped_large-mindflayer = Mindflayer Armor + .desc = Worn by mindflayer. + +common-items-npc_armor-biped_large-minotaur = Minotaur Armor + .desc = The best defense is a good offense. + +common-items-npc_armor-biped_large-tidal_warrior = Tidal Warrior Armor + .desc = Made of fish scales. + +common-items-npc_armor-biped_large-tursus = Tursus Skin + .desc = Born with it + +common-items-npc_armor-biped_large-warlock = Giant Warlock Chest + .desc = Made of darkest silk. + +common-items-npc_armor-biped_large-warlord = Giant Warlord Chest + .desc = Made of darkest steel. + +common-items-npc_armor-biped_large-yeti = Yeti Hide + .desc = Strong as Yeti itself. + +common-items-weapons-empty-empty = Empty Item + .desc = This item may grant abilities, but is invisible + +common-items-weapons-sceptre-belzeshrub = Belzeshrub the Broom God + .desc = 'Is it... alive?' + +common-items-armor-alchemist-belt = Alchemist Belt + .desc = {""} + +common-items-armor-alchemist-chest = Alchemist Jacket + .desc = {""} + +common-items-armor-alchemist-hat = Alchemist Hat + .desc = It seems like a parrot was perched up here. + +common-items-armor-alchemist-pants = Alchemist Pants + .desc = {""} + +common-items-armor-misc-head-headband = Headband + .desc = A simple headband, it's nothing special. + +common-items-armor-witch-back = Witch Cape + .desc = {""} + +common-items-armor-witch-belt = Witch Belt + .desc = {""} + +common-items-armor-witch-chest = Witch Robe + .desc = {""} + +common-items-armor-witch-foot = Witch Boots + .desc = {""} + +common-items-armor-witch-hand = Witch Handwarmers + .desc = {""} + +common-items-armor-witch-pants = Witch Skirt + .desc = {""} + +common-items-armor-witch-shoulder = Witch Mantle + .desc = {""} + +common-items-armor-pirate-belt = Pirate Belt + .desc = {""} + +common-items-armor-pirate-chest = Pirate Jacket + .desc = {""} + +common-items-armor-pirate-foot = Pirate Boots + .desc = {""} + +common-items-armor-pirate-hand = Pirate Gloves + .desc = {""} + +common-items-armor-pirate-pants = Pirate Pants + .desc = {""} + +common-items-armor-pirate-shoulder = Pirate Mantle + .desc = {""} + +common-items-armor-miner-back = Miner's Backpack + .desc = Battered from heavy rocks being carried inside. + +common-items-armor-miner-belt = Miner's Belt + .desc = {""} + +common-items-armor-miner-chest = Miner's Vestment + .desc = Rock dust is covering most of the leather parts. + +common-items-armor-miner-foot = Miner's Footwear + .desc = Someone carved 'Mine!' into the inside. + +common-items-armor-miner-hand = Miner's Gloves + .desc = Someone carved 'Mine!' into the inside. + +common-items-armor-miner-pants = Miner's pantaloons. + .desc = {""} + +common-items-armor-miner-shoulder = Miner's Pauldrons. + .desc = Protects Cave-in and out. + +common-items-armor-miner-shoulder_captain = Captain's Pauldrons. + .desc = {""} + +common-items-armor-miner-shoulder_flame = Flamekeeper's Pauldrons. + .desc = {""} + +common-items-armor-miner-shoulder_overseer = Overseer's Pauldrons. + .desc = {""} + +common-items-armor-chef-belt = Chef Belt + .desc = {""} + +common-items-armor-chef-chest = Chef Jacket + .desc = {""} + +common-items-armor-chef-hat = Chef Hat + .desc = {""} + +common-items-armor-chef-pants = Chef Pants + .desc = {""} + +common-items-armor-blacksmith-belt = Blacksmith Belt + .desc = {""} + +common-items-armor-blacksmith-chest = Blacksmith Jacket + .desc = {""} + +common-items-armor-blacksmith-hand = Blacksmith Gloves + .desc = {""} + +common-items-armor-blacksmith-hat = Blacksmith Hat + .desc = {""} + +common-items-armor-blacksmith-pants = Blacksmith Pants + .desc = {""} + +common-items-armor-leather_plate-helmet = Leather Plate Helmet + .desc = Leather adorned with steel for better protection. + +common-items-food-coltsfoot = Coltsfoot + .desc = A daisy-like flower often used in herbal teas. + +common-items-food-dandelion = Dandelion + .desc = A small, yellow flower. Uses the wind to spread its seeds. + +common-items-food-garlic = Garlic + .desc = Make sure to brush your teeth after eating. + +common-items-food-meat = Meat + .desc = Meat. The lifeblood of mankind. + +common-items-food-onion = Onion + .desc = A vegetable that's made the toughest men cry. + +common-items-food-sage = Sage + .desc = A herb commonly used in tea. + +common-items-grasses-medium = Medium Grass + .desc = Greener than an orc's snout. + +common-items-grasses-short = Short Grass + .desc = Greener than an orc's snout. + +common-items-boss_drops-exp_flask = Flask of Velorite Dust + .desc = Take with plenty of water + +common-items-boss_drops-xp_potion = Potion of Skill + .desc = It doesn't seem to be doing anything... + +common-items-mineral-stone-basalt = Basalt + .desc = A dark volcanic rock, most volcanic rock tends to be basalt.. + +common-items-mineral-stone-granite = Granite + .desc = A light-colored igneous rock, coarse-grained and formed by intrusion. + +common-items-mineral-stone-obsidian = Obsidian + .desc = An igneous rock that comes from felsic lava, it never seems to dwindle. + +common-items-tool-pickaxe_velorite = Velorite Pickaxe + .desc = Allows for swift excavation of any ore in sight. + +common-items-npc_weapons-biped_small-mandragora = Mandragora + .desc = Testing + +common-items-npc_weapons-biped_small-myrmidon-hoplite = Hoplite Spear + .desc = {""} + +common-items-npc_weapons-biped_small-myrmidon-marksman = Marksman Bow + .desc = {""} + +common-items-npc_weapons-biped_small-myrmidon-strategian = Strategian Axe + .desc = {""} + +common-items-npc_weapons-biped_small-sahagin-sniper = Sniper Bow + .desc = {""} + +common-items-npc_weapons-biped_small-sahagin-sorcerer = Sorcerer Staff + .desc = {""} + +common-items-npc_weapons-biped_small-sahagin-spearman = Spearman Spear + .desc = {""} + +common-items-npc_weapons-biped_small-adlet-hunter = Hunter Spear + .desc = {""} + +common-items-npc_weapons-biped_small-adlet-icepicker = Icepicker Pick + .desc = {""} + +common-items-npc_weapons-biped_small-adlet-tracker = Tracker Bow + .desc = {""} + +common-items-npc_weapons-biped_small-gnarling-chieftain = Chieftain Staff + .desc = {""} + +common-items-npc_weapons-biped_small-gnarling-greentotem = Gnarling Green Totem + .desc = Yeet + +common-items-npc_weapons-biped_small-gnarling-logger = Logger Axe + .desc = {""} + +common-items-npc_weapons-biped_small-gnarling-mugger = Mugger Dagger + .desc = {""} + +common-items-npc_weapons-biped_small-gnarling-redtotem = Gnarling Red Totem + .desc = Yeet + +common-items-npc_weapons-biped_small-gnarling-stalker = Stalker Blowgun + .desc = {""} + +common-items-npc_weapons-biped_small-gnarling-whitetotem = Gnarling White Totem + .desc = Yeet + +common-items-npc_weapons-biped_small-boreal-bow = Boreal Bow + .desc = {""} + +common-items-npc_weapons-biped_small-boreal-hammer = Boreal Hammer + .desc = {""} + +common-items-npc_weapons-biped_small-haniwa-archer = Archer Bow + .desc = {""} + +common-items-npc_weapons-biped_small-haniwa-guard = Guard Spear + .desc = {""} + +common-items-npc_weapons-biped_small-haniwa-soldier = Soldier Sword + .desc = {""} + +common-items-npc_weapons-bow-bipedlarge-velorite = Giant Velorite Bow + .desc = Infused with Velorite power. + +common-items-npc_weapons-bow-saurok_bow = Saurok bow + .desc = Placeholder + +common-items-npc_weapons-axe-gigas_frost_axe = Frost Gigas Axe + .desc = Placeholder + +common-items-npc_weapons-axe-minotaur_axe = Minotaur Axe + .desc = Placeholder + +common-items-npc_weapons-axe-oni_blue_axe = Blue Oni Axe + .desc = Placeholder + +common-items-npc_weapons-staff-bipedlarge-cultist = Giant Cultist Staff + .desc = The fire gives off no heat. + +common-items-npc_weapons-staff-mindflayer_staff = Mindflayer Staff + .desc = Placeholder + +common-items-npc_weapons-staff-ogre_staff = Ogre Staff + .desc = Placeholder + +common-items-npc_weapons-staff-saurok_staff = Saurok Staff + .desc = Placeholder + +common-items-npc_weapons-sword-adlet_elder_sword = Adlet Elder Sword + .desc = Placeholder + +common-items-npc_weapons-sword-bipedlarge-cultist = Giant Cultist Greatsword + .desc = This belonged to an evil Cult Leader. + +common-items-npc_weapons-sword-dullahan_sword = Dullahan Sword + .desc = Placeholder + +common-items-npc_weapons-sword-pickaxe_velorite_sword = Velorite Pickaxe + .desc = {""} + +common-items-npc_weapons-sword-saurok_sword = Saurok Sword + .desc = Placeholder + +common-items-npc_weapons-unique-akhlut = Quad Med Basic + .desc = testing123 + +common-items-npc_weapons-unique-asp = Asp + .desc = testing123 + +common-items-npc_weapons-unique-basilisk = Basilisk + .desc = testing123 + +common-items-npc_weapons-unique-beast_claws = Beast Claws + .desc = Was attached to a beast. + +common-items-npc_weapons-unique-birdlargebasic = Bird Large Basic + .desc = testing123 + +common-items-npc_weapons-unique-birdlargebreathe = Bird Large Breathe + .desc = testing123 + +common-items-npc_weapons-unique-birdlargefire = Bird Large Fire + .desc = Fiery touch of a mighty aerial beast + +common-items-npc_weapons-unique-birdmediumbasic = Bird Medium Basic + .desc = BiteBiteBite!!! FightFightFight!!! + +common-items-npc_weapons-unique-bushly = Starter Grace + .desc = Fret not, newbies shant cry. + +common-items-npc_weapons-unique-cardinal = Caduceus + .desc = The snakes seem to be alive + +common-items-npc_weapons-unique-clay_golem_fist = Clay Golem Fists + .desc = Yeet. + +common-items-npc_weapons-unique-clockwork = Clockwork + .desc = testing123 + +common-items-npc_weapons-unique-cloudwyvern = Cloud Wyvern + .desc = testing123 + +common-items-npc_weapons-unique-coral_golem_fist = Coral Golem Fists + .desc = Yeet + +common-items-npc_weapons-unique-crab_pincer = Crab Pincer + .desc = testing123 + +common-items-npc_weapons-unique-dagon = Dagon Kit + .desc = Ocean Power! + +common-items-npc_weapons-unique-deadwood = Deadwood + .desc = testing123 + +common-items-npc_weapons-unique-driggle = Starter Grace + .desc = Fret not, newbies shant cry. + +common-items-npc_weapons-unique-emberfly = Starter Grace + .desc = Fret not, newbies shant cry. + +common-items-npc_weapons-unique-fiery_tornado = FieryTornado + .desc = Fiery Tornado weapon + +common-items-npc_weapons-unique-flamekeeper_staff = Flamekeeper Staff + .desc = Flamekeeper Staff + +common-items-npc_weapons-unique-flamethrower = Flamethrower + .desc = Throwing Flames + +common-items-npc_weapons-unique-flamewyvern = Flame Wyvern + .desc = testing123 + +common-items-npc_weapons-unique-frostfang = Frostfang + .desc = testing123 + +common-items-npc_weapons-unique-frostwyvern = Frost Wyvern + .desc = testing123 + +common-items-npc_weapons-unique-haniwa_sentry = Haniwa Sentry + .desc = Rotating turret weapon + +common-items-npc_weapons-unique-hermit_alligator = Hermit Alligator Teeth + .desc = Grrr! + +common-items-npc_weapons-unique-husk = Husk + .desc = testing123 + +common-items-npc_weapons-unique-husk_brute = Husk Brute + .desc = testing123 + +common-items-npc_weapons-unique-icedrake = Ice Drake + .desc = testing123 + +common-items-npc_weapons-unique-irrwurz = Starter Grace + .desc = Fret not, newbies shant cry. + +common-items-npc_weapons-unique-maneater = Maneater + .desc = testing123 + +common-items-npc_weapons-unique-mossysnail = Starter Grace + .desc = Fret not, newbies shant cry. + +common-items-npc_weapons-unique-organ = Organ Aura + .desc = Motivational Tune + +common-items-npc_weapons-unique-quadlowbasic = Quad Low Basic + .desc = testing123 + +common-items-npc_weapons-unique-quadlowbeam = Quad Small Beam + .desc = testing123 + +common-items-npc_weapons-unique-quadlowbreathe = Quad Low Breathe + .desc = testing123 + +common-items-npc_weapons-unique-quadlowquick = Quad Low Quick + .desc = testing123 + +common-items-npc_weapons-unique-quadlowtail = Quad Low Tail + .desc = testing123 + +common-items-npc_weapons-unique-quadmedbasic = Quad Med Basic + .desc = testing123 + +common-items-npc_weapons-unique-quadmedbasicgentle = Quad Med Basic + .desc = testing123 + +common-items-npc_weapons-unique-quadmedcharge = Quad Med Charge + .desc = testing123 + +common-items-npc_weapons-unique-quadmedhoof = Quad Med Hoof + .desc = testing123 + +common-items-npc_weapons-unique-quadmedjump = Quad Med Jump + .desc = testing123 + +common-items-npc_weapons-unique-quadmedquick = Quad Med Quick + .desc = testing123 + +common-items-npc_weapons-unique-quadsmallbasic = Quad Small Basic + .desc = testing123 + +common-items-npc_weapons-unique-roshwalr = Roshwalr + .desc = testing123 + +common-items-npc_weapons-unique-sea_bishop_sceptre = Sea Bishop Sceptre + .desc = Hits like a wave. + +common-items-npc_weapons-unique-seawyvern = Sea Wyvern + .desc = testing123 + +common-items-npc_weapons-unique-simpleflyingbasic = Simple Flying Melee + .desc = I believe I can fly!!!!! + +common-items-npc_weapons-unique-stone_golems_fist = Stone Golem's Fist + .desc = Was attached to a mighty stone golem. + +common-items-npc_weapons-unique-theropodbasic = Theropod Basic + .desc = testing123 + +common-items-npc_weapons-unique-theropodbird = Theropod Bird + .desc = testing123 + +common-items-npc_weapons-unique-theropodcharge = Theropod Charge + .desc = testing123 + +common-items-npc_weapons-unique-theropodsmall = Theropod Small + .desc = testing123 + +common-items-npc_weapons-unique-tidal_claws = Tidal Claws + .desc = Snip snap + +common-items-npc_weapons-unique-tidal_totem = Tidal Totem + .desc = Yeet + +common-items-npc_weapons-unique-tornado = Tornado + .desc = Tornado weapon + +common-items-npc_weapons-unique-treantsapling = Starter Grace + .desc = Fret not, newbies shant cry. + +common-items-npc_weapons-unique-turret = Turret + .desc = Turret weapon + +common-items-npc_weapons-unique-tursus_claws = Tursus Claws + .desc = Was attached to a beast. + +common-items-npc_weapons-unique-wealdwyvern = Weald Wyvern + .desc = testing123 + +common-items-npc_weapons-unique-wendigo_magic = Wendigo Magic + .desc = spook. + +common-items-npc_weapons-unique-wood_golem_fist = Wood Golem Fists + .desc = Yeet + +common-items-npc_weapons-unique-arthropods-antlion = Antlion + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-blackwidow = Black Widow + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-cavespider = Cave Spider + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-dagonite = Dagonite + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-hornbeetle = Horn Beetle + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-leafbeetle = Leaf Beetle + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-mosscrawler = Moss Crawler + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-tarantula = Tarantula + .desc = testing123 + +common-items-npc_weapons-unique-arthropods-weevil = Weevil + .desc = testing123 + +common-items-npc_weapons-hammer-bipedlarge-cultist = Giant Cultist Warhammer + .desc = This belonged to an evil Cult Leader. + +common-items-npc_weapons-hammer-cyclops_hammer = Cyclops Hammer + .desc = Placeholder + +common-items-npc_weapons-hammer-harvester_scythe = Harvester Sythe + .desc = Placeholder + +common-items-npc_weapons-hammer-ogre_hammer = Ogre Hammer + .desc = Placeholder + +common-items-npc_weapons-hammer-oni_red_hammer = Red Oni Hammer + .desc = Placeholder + +common-items-npc_weapons-hammer-troll_hammer = Troll Hammer + .desc = Placeholder + +common-items-npc_weapons-hammer-wendigo_hammer = Wendigo Hammer + .desc = Placeholder + +common-items-npc_weapons-hammer-yeti_hammer = Yeti Hammer + .desc = Placeholder + +common-items-modular-weapon-primary-bow-bow = Bow Limbs + .desc = {""} + +common-items-modular-weapon-primary-bow-composite = Composite Bow Limbs + .desc = {""} + +common-items-modular-weapon-primary-bow-greatbow = Greatbow Limbs + .desc = {""} + +common-items-modular-weapon-primary-bow-longbow = Longbow Limbs + .desc = {""} + +common-items-modular-weapon-primary-bow-ornate = Ornate Bow Limbs + .desc = {""} + +common-items-modular-weapon-primary-bow-shortbow = Shortbow Limbs + .desc = {""} + +common-items-modular-weapon-primary-bow-warbow = Warbow Limbs + .desc = {""} + +common-items-modular-weapon-primary-axe-axe = Axe Head + .desc = {""} + +common-items-modular-weapon-primary-axe-battleaxe = Battleaxe Head + .desc = {""} + +common-items-modular-weapon-primary-axe-greataxe = Greataxe Head + .desc = {""} + +common-items-modular-weapon-primary-axe-jagged = Jagged Axe Head + .desc = {""} + +common-items-modular-weapon-primary-axe-labrys = Labrys Head + .desc = {""} + +common-items-modular-weapon-primary-axe-ornate = Ornate Axe Head + .desc = {""} + +common-items-modular-weapon-primary-axe-poleaxe = Poleaxe Head + .desc = {""} + +common-items-modular-weapon-primary-staff-brand = Brand Shaft + .desc = {""} + +common-items-modular-weapon-primary-staff-grandstaff = Grandstaff Shaft + .desc = {""} + +common-items-modular-weapon-primary-staff-longpole = Long Pole Shaft + .desc = {""} + +common-items-modular-weapon-primary-staff-ornate = Ornate Staff Shaft + .desc = {""} + +common-items-modular-weapon-primary-staff-pole = Pole Shaft + .desc = {""} + +common-items-modular-weapon-primary-staff-rod = Rod Shaft + .desc = {""} + +common-items-modular-weapon-primary-staff-staff = Staff Shaft + .desc = {""} + +common-items-modular-weapon-primary-sword-greatsword = Greatsword Blade + .desc = {""} + +common-items-modular-weapon-primary-sword-katana = Katana Blade + .desc = {""} + +common-items-modular-weapon-primary-sword-longsword = Longsword Blade + .desc = {""} + +common-items-modular-weapon-primary-sword-ornate = Ornate Sword Blade + .desc = {""} + +common-items-modular-weapon-primary-sword-sabre = Sabre Blade + .desc = {""} + +common-items-modular-weapon-primary-sword-sawblade = Sawblade + .desc = {""} + +common-items-modular-weapon-primary-sword-zweihander = Zweihander Blade + .desc = {""} + +common-items-modular-weapon-primary-sceptre-arbor = Arbor Shaft + .desc = {""} + +common-items-modular-weapon-primary-sceptre-cane = Cane Shaft + .desc = {""} + +common-items-modular-weapon-primary-sceptre-crook = Crook Shaft + .desc = {""} + +common-items-modular-weapon-primary-sceptre-crozier = Crozier Shaft + .desc = {""} + +common-items-modular-weapon-primary-sceptre-grandsceptre = Grandsceptre Shaft + .desc = {""} + +common-items-modular-weapon-primary-sceptre-ornate = Ornate Sceptre Shaft + .desc = {""} + +common-items-modular-weapon-primary-sceptre-sceptre = Sceptre Shaft + .desc = {""} + +common-items-modular-weapon-primary-hammer-greathammer = Greathammer Head + .desc = {""} + +common-items-modular-weapon-primary-hammer-greatmace = Greatmace Head + .desc = {""} + +common-items-modular-weapon-primary-hammer-hammer = Hammer Head + .desc = {""} + +common-items-modular-weapon-primary-hammer-maul = Maul Head + .desc = {""} + +common-items-modular-weapon-primary-hammer-ornate = Ornate Hammer Head + .desc = {""} + +common-items-modular-weapon-primary-hammer-spikedmace = Spiked Mace Head + .desc = {""} + +common-items-modular-weapon-primary-hammer-warhammer = Warhammer Head + .desc = {""} + +common-items-crafting_ing-rock = Rock + .desc = Made up of a bunch of different minerals, looks like it would hurt to get hit with. + +common-items-crafting_ing-animal_misc-bone = Thick Bone + .desc = A thick bone, it seems sturdy enough to craft with. + +common-items-crafting_ing-animal_misc-ember = Ember + .desc = A flicking ember left by a fiery creature. + +common-items-crafting_ing-animal_misc-feather = Feather + .desc = Feather from a bird. + +common-items-tag_examples-cultist = Anything related to cultists + .desc = These items are a little creepy. + +common-items-tag_examples-gnarling = Attire of the Gnarling tribes + .desc = Worn by Gnarlings and their Chieftains. + +common-items-flowers-blue = Blue Flower + .desc = Matches the color of the sky. + +common-items-flowers-pink = Pink Flower + .desc = Looks like a lollipop. + +common-items-flowers-white = White flower + .desc = Pure and precious. diff --git a/assets/voxygen/i18n/en/item/glider.ftl b/assets/voxygen/i18n/en/item/glider.ftl new file mode 100644 index 0000000000..cb5aa55a6d --- /dev/null +++ b/assets/voxygen/i18n/en/item/glider.ftl @@ -0,0 +1,61 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +glider-basic_red = Red Cloth Glider + .desc = A simple glider, but with a striking red color. + +glider-basic_white = Plain Cloth Glider + .desc = Simple, but classy. + +glider-blue = Blue Falcon + .desc = Sky colored. + +glider-butterfly3 = Moonlit Love + .desc = Love is in the air. + +glider-cloverleaf = Cloverleaf + .desc = Brings luck to its owner. Light-weight and cheap to make, and also very cute! + +glider-leaves = Leaves Glider + .desc = Soar among the trees + +glider-butterfly2 = Orange Monarch + .desc = The delicate wings flutter faintly. + +glider-moonrise = Aquatic Night + .desc = The stars are beautiful tonight. + +glider-butterfly1 = Blue Morpho + .desc = The delicate wings flutter faintly. + +glider-moth = Green Luna + .desc = The delicate wings flutter faintly. + +glider-sandraptor = Sand Raptor Wings + .desc = Take flight with the wings of a thirsty predator + +glider-cultists = Skullgrin + .desc = Death from above. + +glider-snowraptor = Snow Raptor Wings + .desc = Take flight with the wings of a cold-blooded predator + +glider-sunset = Horizon + .desc = It isn't high noon. + +glider-winter_wings = Wings of Winter + .desc = Sparkles brilliantly and cooly even under the warm sun. + +glider-woodraptor = Wood Raptor Wings + .desc = Take flight with the wings of a stealthy predator diff --git a/assets/voxygen/i18n/en/item/items.ftl b/assets/voxygen/i18n/en/item/items.ftl new file mode 100644 index 0000000000..fa95f5444f --- /dev/null +++ b/assets/voxygen/i18n/en/item/items.ftl @@ -0,0 +1,19 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +items-keeper_goggle = Left Goggle-Glass + .desc = Looks like it could open a door... + +items-keeper_goggle-flamekeeper_right = Right Goggle-Glass + .desc = Looks like it could open a door... diff --git a/assets/voxygen/i18n/en/item/lantern.ftl b/assets/voxygen/i18n/en/item/lantern.ftl new file mode 100644 index 0000000000..de0223e10d --- /dev/null +++ b/assets/voxygen/i18n/en/item/lantern.ftl @@ -0,0 +1,39 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +lantern-magic_lantern = Magic Lantern + .desc = + Illuminates even the darkest dungeon + A great monster was slain for this item + +lantern-black-0 = Black Lantern + .desc = Quite common due to popular use of budding adventurers! + +lantern-blue-0 = Cool Blue Lantern + .desc = This lantern is surprisingly cold when lit. + +lantern-geode_purp = Purple Geode + .desc = Emits a calming glow, helps to calm your nerves. + +lantern-green-0 = Lime Zest Lantern + .desc = It has an opening that could fit a ring... + +lantern-polaris = Polaris + .desc = Christmas Lantern. + +lantern-pumpkin = Eerie Pumpkin + .desc = Did it just blink?! + +lantern-red-0 = Red Lantern + .desc = Caution: contents hot diff --git a/assets/voxygen/i18n/en/item/object.ftl b/assets/voxygen/i18n/en/item/object.ftl new file mode 100644 index 0000000000..7ccac12dad --- /dev/null +++ b/assets/voxygen/i18n/en/item/object.ftl @@ -0,0 +1,161 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +object-key_bone = Bone Key + .desc = Used to open bone locks. Will break after use. + +object-key_glass = Glass Key + .desc = Used to open Glass Barriers. Will break after use. + +object-key_rusty-0 = Rusty Tower Key + .desc = Smells like magic with a bit of... cheese? + +object-key_rusty-0-ancient = Ancient Key + .desc = If you are lucky it works one more time before breaking. + +object-key_rusty-0-backdoor = Backdoor Key + .desc = If you are lucky it works one more time before breaking. + +object-key_rusty-0-overseer = Overseer Key + .desc = If you are lucky it works one more time before breaking. + +object-key_rusty-0-smelting = Smelting Room Key + .desc = If you are lucky it works one more time before breaking. + +object-item_cheese = Golden Cheese + .desc = They say gods eat it to get eternal youth. + +object-bomb = Bomb + .desc = A highly explosive device, demolitionists adore them! + +object-v-coin = Coins + .desc = Precious coins, can be exchanged for goods and services. + +object-collar = Collar + .desc = Tames neutral wild animals within 5 blocks + +object-lockpick = Common Lockpick + .desc = Used to open common locks. Will break after use. + +object-training_dummy = Training Dummy + .desc = His name is William. Fire at will. + +object-apple_half = Apple + .desc = Red and juicy + +object-mushroom_curry = Mushroom Curry + .desc = Who could say no to that? + +object-apple_stick = Apple Stick + .desc = The stick makes it easier to carry! + +object-blue_cheese = Blue Cheese + .desc = Pungent and filling + +object-cactus_drink = Cactus Colada + .desc = Giving you that special prickle. + +object-cheese = Dwarven Cheese + .desc = Made from goat milk from the finest dwarven produce. Aromatic and nutritious! + +object-coconut_half = Coconut + .desc = Reliable source of water and fat. Can often be found growing on palm trees. + +object-honeycorn = Honeycorn + .desc = Sweeet + +object-mushroom_stick = Mushroom Stick + .desc = Roasted mushrooms on a stick for easy carrying + +object-pumpkin_spice_brew = Pumpkin Spice Brew + .desc = Brewed from moldy pumpkins. + +object-sunflower_ice_tea = Sunflower Ice Tea + .desc = Brewed from freshly shelled sunflower seeds + +object-potion_red = Potent Potion + .desc = A potent healing potion. + +object-mortar_pestle = Mortar and Pestle + .desc = Crushes and grinds things into a fine powder or paste. Needed to craft various items. + +object-sewing_set = Sewing Set + .desc = Used to craft various items. + +object-potion_empty = Empty Vial + .desc = A simple glass vial used for holding various fluids. + +object-glacial_crystal = Glacial Crystal + .desc = The purest form of ice, cold enough to cool lava. + +object-honey = Honey + .desc = Stolen from a beehive. Surely the bees won't be happy with this! + +object-glowing_remains = Glowing Remains + .desc = + Looted from an evil being. + + With some additional work it can surely be + brought back to its former glory... + +object-elegant_crest = Elegant Crest + .desc = + A flawless crest from some majestic creature. + + This can be used when crafting weapons. + +object-ice_shard = Icy Shard + .desc = Looted from a frosty creature. + +object-long_tusk = Long Tusk + .desc = + A pointy tusk from some beast. + + This can be used when crafting weapons. + +object-raptor_feather = Raptor Feather + .desc = A large colorful feather from a raptor. + +object-strong_pincer = Strong Pincer + .desc = + The pincer of some creature, it is very tough. + + This can be used when crafting weapons. + +object-curious_potion = Curious Potion + .desc = Wonder what this does... + +object-potion_agility = Potion of Agility + .desc = Fly, you fools! + +object-potion_red-potion_big = Large Potion + .desc = Precious medicine, it makes for the largest rejuvenative flask yet. + +object-potion_combustion = Potion of Combustion + .desc = Sets the user ablaze + +object-potion_red-potion_med = Medium Potion + .desc = An innovative invention from an apothecary, better than its smaller precursors. + +object-potion_red-potion_minor = Minor Potion + .desc = A small potion concocted from apples and honey. + +object-burning_charm = Blazing Charm + .desc = Flame is your ally, harness its power to burn your foes. + +object-frozen_charm = Freezing Charm + .desc = Let your enemies feel the sting of cold as you freeze them in their tracks. + +object-lifesteal_charm = Siphon Charm + .desc = Siphon your target life and use it for your own. diff --git a/assets/voxygen/i18n/en/item/sprite.ftl b/assets/voxygen/i18n/en/item/sprite.ftl new file mode 100644 index 0000000000..8c0578f5d8 --- /dev/null +++ b/assets/voxygen/i18n/en/item/sprite.ftl @@ -0,0 +1,379 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +sprite-crafting_ing-animal_misc-grim_eyeball = Cyclops Eye + .desc = Looks like it could open an ancient mechanism. + +sprite-carrot-carrot = Carrot + .desc = An orange root vegetable. They say it'll improve your vision! + +sprite-cabbage-cabbage = Lettuce + .desc = A vibrant green leafy vegetable. Lettuce make some salads! + +sprite-mushrooms-mushroom-10 = Mushroom + .desc = Hopefully this one is not poisonous + +sprite-food-salad_plain = Plain Salad + .desc = Literally just chopped lettuce. Does this even count as a salad? + +sprite-spore-corruption_spore = Spore of Corruption + .desc = + You feel an evil force pulsating within. + + It may be unwise to hold on to it for too long... + +sprite-tomato-tomato = Tomato + .desc = A red fruit. It's not actually a vegetable! + +sprite-food-salad_tomato = Tomato Salad + .desc = Leafy salad with some chopped, juicy tomatoes mixed in. + +sprite-food-meat-beast_large_cooked = Cooked Meat Slab + .desc = Medium Rare. + +sprite-food-meat-beast_large_raw = Raw Meat Slab + .desc = Chunk of beastly animal meat, best after cooking. + +sprite-food-meat-beast_small_cooked = Cooked Meat Sliver + .desc = Medium Rare. + +sprite-food-meat-beast_small_raw = Raw Meat Sliver + .desc = Small hunk of beastly animal meat, best after cooking. + +sprite-food-meat-bird_cooked = Cooked Bird Meat + .desc = Best enjoyed with one in each hand. + +sprite-food-meat-bird_large_cooked = Huge Cooked Drumstick + .desc = Makes for a legendary meal. + +sprite-food-meat-bird_large_raw = Huge Raw Drumstick + .desc = It's magnificent. + +sprite-food-meat-bird_raw = Raw Bird Meat + .desc = A hefty drumstick. + +sprite-food-meat-fish_cooked = Cooked Fish + .desc = A fresh cooked seafood steak. + +sprite-food-meat-fish_raw = Raw Fish + .desc = A steak chopped from a fish, best after cooking. + +sprite-food-meat-tough_cooked = Cooked Tough Meat + .desc = Tastes exotic. + +sprite-food-meat-tough_raw = Raw Tough Meat + .desc = Peculiar bit of meat, best after cooking. + +sprite-grass-grass_long_5 = Long Grass + .desc = Greener than an orc's snout. + +sprite-mineral-ore-coal = Coal + .desc = A combustible black rock that happens to be really good at burning. + +sprite-mineral-ore-bloodstone = Bloodstone Ore + .desc = A deep red ore, it reminds you of blood. + +sprite-mineral-ore-coal-coal = Coal + .desc = A dark, combustible energy source. + +sprite-mineral-ore-cobalt = Cobalt Ore + .desc = A blue, shiny ore. + +sprite-mineral-ore-copper = Copper Ore + .desc = A brown metal. Key part of bronze. + +sprite-mineral-ore-gold = Gold Ore + .desc = A precious yellow metal. + +sprite-mineral-ore-iron = Iron Ore + .desc = An incredibly common but incredibly versatile metal. + +sprite-mineral-ore-silver = Silver Ore + .desc = A precious shiny greyish-white metal. + +sprite-mineral-ore-tin = Tin Ore + .desc = A silvery metal. One of the components of bronze. + +sprite-velorite-velorite_ore = Velorite + .desc = A bizarre, oddly shimmering ore, its origin seems to be shrouded in mystery. + +sprite-velorite-velorite = Velorite Fragment + .desc = Small runes sparkle on its surface, though you don't know what it means. + +sprite-mineral-ingot-bloodsteel = Bloodsteel Ingot + .desc = + An alloy of bloodstone and iron, with a dark red color. + + This can be used when crafting metal weapons. + +sprite-mineral-ingot-bronze = Bronze Ingot + .desc = + A sturdy alloy made from combining copper and tin. + + This can be used when crafting metal weapons. + +sprite-mineral-ingot-cobalt = Cobalt Ingot + .desc = + A strikingly blue ingot. + + This can be used when crafting metal weapons. + +sprite-mineral-ingot-copper = Copper Ingot + .desc = An ingot with a unique brown color. + +sprite-mineral-ingot-gold = Gold Ingot + .desc = An ingot made of refined metallic gold. + +sprite-mineral-ingot-iron = Iron Ingot + .desc = + An incredibly commonplace metal. + + This can be used when crafting metal weapons. + +sprite-mineral-ingot-orichalcum = Orichalcum Ingot + .desc = + An ingot made of refined orichalcum. + + This can be used when crafting metal weapons. + +sprite-mineral-ingot-silver = Silver Ingot + .desc = An ingot made of refined metallic silver. + +sprite-mineral-ingot-steel = Steel Ingot + .desc = + An alloy of iron and coal that is much tougher than its components. + + This can be used when crafting metal weapons. + +sprite-mineral-ingot-tin = Tin Ingot + .desc = An ingot primarily used to make bronze. + +sprite-mineral-gem-amethystgem = Amethyst + .desc = A precious purple gem. + +sprite-mineral-gem-diamondgem = Diamond + .desc = A sparkling silver gem. + +sprite-mineral-gem-emeraldgem = Emerald + .desc = A vibrant viridian gem. + +sprite-mineral-gem-rubygem = Ruby + .desc = A superbly scarlet gem. + +sprite-mineral-gem-sapphiregem = Sapphire + .desc = A colorful cobalt gem. + +sprite-mineral-gem-topazgem = Topaz + .desc = An outstanding orange gem. + +sprite-wood-item-bamboo = Bamboo + .desc = + A giant woody grass. + + This can be used when crafting wooden weapons. + +sprite-wood-item-eldwood = Eldwood Logs + .desc = + Old logs that emanate magic. + + This can be used when crafting wooden weapons. + +sprite-wood-item-frostwood = Frostwood Logs + .desc = + Chilly wood that comes from cold biomes. Cold to the touch. + + This can be used when crafting wooden weapons. + +sprite-wood-item-hardwood = Hardwood Logs + .desc = + Extra thick and sturdy logs. + + This can be used when crafting wooden weapons. + +sprite-wood-item-ironwood = Ironwood Logs + .desc = + A particularly sturdy wood. + + This can be used when crafting wooden weapons. + +sprite-wood-item-wood = Wood Logs + .desc = + Regular, sturdy wooden logs. + + This can be used when crafting wooden weapons. + +sprite-crafting_ing-abyssal_heart = Abyssal Heart + .desc = Source of Dagons Power. + +sprite-crafting_ing-bowl = Bowl + .desc = A simple bowl for preparing meals. + +sprite-crafting_ing-brinestone = Brinestone + .desc = Used for armor crafting. + +sprite-cacti-flat_cactus_med = Cactus + .desc = Grows in warm and dry places. Very prickly! + +sprite-crafting_ing-coral_branch = Coral Branch + .desc = Treasure from the bottom of the sea. + +sprite-crafting_ing-cotton_boll = Cotton Boll + .desc = Plucked from a common cotton plant. + +sprite-crafting_ing-living_embers = Living Embers + .desc = The smouldering remains of a fiery creature. + +sprite-crafting_ing-oil = Oil + .desc = A measure of thick, sludgy oil. + +sprite-crafting_ing-pearl = Pearl + .desc = Would make a nice lamp. + +sprite-crafting_ing-resin = Resin + .desc = Used for woodworking. + +sprite-seashells-shell-0 = Seashells + .desc = Shells from a sea creature. + +sprite-crafting_ing-sentient_seed = Sentient Seed + .desc = The undeveloped spawn of a sentient plant. + +sprite-crafting_ing-sticky_thread = Sticky Thread + .desc = A messy spider extract, but a tailor may have use for it. + +sprite-rocks-rock-0 = Stones + .desc = Pebbles from the ground, nothing out of the ordinary. + +sprite-twigs-twigs-0 = Twigs + .desc = Found near trees, a squirrel must've knocked it down. + +sprite-crafting_ing-hide-animal_hide = Animal Hide + .desc = A common pelt from most animals. Becomes leather. + +sprite-crafting_ing-hide-carapace = Hard Carapace + .desc = Tough, hard carapace, a shield to many creatures. + +sprite-crafting_ing-hide-dragon_scale = Dragon Scale + .desc = Tough scale from a legendary beast, hot to the touch. + +sprite-crafting_ing-hide-troll_hide = Troll Hide + .desc = Looted from cave trolls. + +sprite-crafting_ing-hide-plate = Plate + .desc = Durable plate from an armored animal. + +sprite-crafting_ing-hide-rugged_hide = Rugged Hide + .desc = A durable pelt from fierce creatures, favored by leatherworkers. + +sprite-crafting_ing-hide-scale = Scale + .desc = Shiny scales found off of an animal. + +sprite-crafting_ing-hide-tough_hide = Tough Hide + .desc = A relatively tough, rough hide. Becomes leather. + +sprite-crafting_ing-animal_misc-claw = Predator Claw + .desc = + Incredibly sharp claw from a predatory animal. + + This can be used when crafting weapons. + +sprite-crafting_ing-animal_misc-fur = Soft Fur + .desc = Soft fur from an animal. + +sprite-crafting_ing-animal_misc-grim_eyeball-grim_eyeball = Grim Eyeball + .desc = Casts a petrifying gaze. + +sprite-crafting_ing-animal_misc-large_horn = Large Horn + .desc = + A huge sharp horn from an animal. + + This can be used when crafting weapons. + +sprite-crafting_ing-animal_misc-lively_vine = Lively Vine + .desc = I think it just moved... + +sprite-crafting_ing-animal_misc-phoenix_feather = Phoenix Feather + .desc = Said to have magical properties. + +sprite-crafting_ing-animal_misc-sharp_fang = Sharp Fang + .desc = + Incredibly sharp tooth from a predatory animal. + + This can be used when crafting weapons. + +sprite-crafting_ing-animal_misc-venom_sac = Venom Sac + .desc = A venomous sac from a poisonous creature. + +sprite-crafting_ing-animal_misc-viscous_ooze = Viscous Ooze + .desc = A measure of viscous ooze from a slimy creature. + +sprite-crafting_ing-leather-leather_strips = Leather Strips + .desc = Simple and versatile. + +sprite-crafting_ing-leather-rigid_leather = Rigid Leather + .desc = Light but layered, perfect for protection. + +sprite-crafting_ing-leather-simple_leather = Simple Leather + .desc = Light and flexible. + +sprite-crafting_ing-leather-thick_leather = Thick Leather + .desc = Strong and durable. + +sprite-crafting_ing-cloth-cloth_strips = Cloth Strips + .desc = Small and soft, yet useful + +sprite-crafting_ing-cloth-cotton = Cotton + .desc = Easy to work with and multi-functional. + +sprite-crafting_ing-cloth-lifecloth = Lifecloth + .desc = A fabric imbued with the gentleness that nature has to offer. + +sprite-crafting_ing-cloth-linen = Linen + .desc = A textile made from flax fibers. + +sprite-crafting_ing-cloth-linen_red = Red Linen + .desc = A flax fiber textile, dyed to stand out. + +sprite-crafting_ing-cloth-moonweave = Moonweave + .desc = A light yet very sturdy textile. + +sprite-crafting_ing-cloth-silk = Silk + .desc = A fine and strong fibre produced by spiders. + +sprite-crafting_ing-cloth-sunsilk = Sunsilk + .desc = A supernaturally strong textile. + +sprite-crafting_ing-cloth-wool = Soft Wool + .desc = Soft wool from an animal. + +sprite-flowers-moonbell = Moonbell + .desc = It glistens brilliantly under the moonlight. + +sprite-crafting_ing-plant_fiber = Plant Fiber + .desc = A length of raw plant material. + +sprite-flowers-pyrebloom = Pyrebloom + .desc = Warm to the touch, long after picking. + +sprite-flowers-flower_red-4 = Red Flower + .desc = Can be used as a dying ingredient. + +sprite-flowers-sunflower_1 = Sunflower + .desc = Smells like summer. + +sprite-flowers-flax = Wild Flax + .desc = Could be used to spin some simple cloth. + +sprite-flowers-sunflower_1-yellow = Yellow Flower + .desc = Glows like the sun. diff --git a/assets/voxygen/i18n/en/item/weapon.ftl b/assets/voxygen/i18n/en/item/weapon.ftl new file mode 100644 index 0000000000..d81380911c --- /dev/null +++ b/assets/voxygen/i18n/en/item/weapon.ftl @@ -0,0 +1,2014 @@ + +### Note to translators. +### Translating this will be *a lot* of work. Concentrate on what's important. +### We don't want you to burn out on 10% of this file and never want to +### contribute. +### +### These files were automatically generated for all possible items in code. +### Some of them are hidden from players, some are only possible to get via +### commands and some simply aren't used anywhere. +### +### Start with other files, translate them first and then maybe come back here. +### If you really want to translate items, start with some subset you know is +### actually used by players. + +weapon-shield-wood-0 = A Tattered Targe + .desc = Should withstand a few more hits, hopefully... + +weapon-dagger-dagger_basic-0 = Suspicious Paper Knife + .desc = Opens letters quickly. + +weapon-dagger-dagger_cult-0 = Magical Cultist Dagger + .desc = This belonged to an evil Cult Leader. + +weapon-dagger-dagger_rusty = Rusty Dagger + .desc = Easily concealed. + +weapon-bow-sagitta = Sagitta + .desc = Said to have slain a dragon with a single arrow + +weapon-bow-starter = Uneven Bow + .desc = Someone carved their initials into it. + +weapon-bow-velorite = Velorite Bow + .desc = Infused with Velorite power. + +weapon-sword-starter_1h = Damaged Gladius + .desc = This blade has seen better days, but surely it will last. + +weapon-axe-2haxe_malachite-0 = Malachite Axe + .desc = Etched axe head decorated with malachite on the blades to provide magical properties. + +weapon-axe-parashu = Parashu + .desc = Said to be able to cleave the heavens. + +weapon-axe-2haxe_rusty = Notched Axe + .desc = Every dent tells the story of a chopped tree. + +weapon-staff-firestaff_cultist = Cultist Staff + .desc = The fire gives off no heat. + +weapon-staff-laevateinn = Laevateinn + .desc = Can shatter the gate of death + +weapon-staff-firestaff_starter = Humble Stick + .desc = Walking stick with a sharpened end. + +weapon-staff-firestaff_starter-starter_staff = Gnarled Rod + .desc = Smells like resin and magic. + +weapon-sword-caladbolg = Caladbolg + .desc = You sense an eldritch presence watching you. + +weapon-sword-cultist = Magical Cultist Greatsword + .desc = This belonged to an evil Cult Leader. + +weapon-sword-frost-0 = Frost Cleaver + .desc = Radiates a freezing aura. + +weapon-sword-frost-1 = Frost Saw + .desc = Forged from a single piece of eternal ice. + +weapon-sword-starter = Damaged Greatsword + .desc = The blade could snap at any moment, but you hope it will endure future fights. + +weapon-tool-broom-0 = Broom + .desc = It's beginning to fall apart. + +weapon-tool-fishing_rod_blue-0 = Fishing Rod + .desc = Smells of fish. + +weapon-tool-golf_club = Golf Club + .desc = Peasant swatter. Fiercely anti-urbanist. Climate crisis? What climate crisis? + +weapon-tool-hoe_green = Hoe + .desc = It's stained with dirt. + +weapon-tool-pickaxe_green-0 = Pickaxe + .desc = It has a chipped edge. + +weapon-tool-pitchfork-0 = Pitchfork + .desc = One of the prongs is broken. + +weapon-tool-rake-0 = Rake + .desc = Held together with twine. + +weapon-tool-shovel_green = Shovel + .desc = It's covered in manure. + +weapon-tool-shovel_gold = Shovel + .desc = It's been recently cleaned. + +weapon-sceptre-amethyst = Amethyst Staff + .desc = Its stone is the closest thing from perfection + +weapon-sceptre-caduceus = Caduceus + .desc = The snakes seem to be alive + +weapon-sceptre-root_evil = The Root of Evil + .desc = 'Everything comes at a price...' + +weapon-sceptre-ore-nature = Velorite Sceptre + .desc = Heals your allies with the mystical Velorite aura. + +weapon-sceptre-wood-simple = Naturalist Walking Stick + .desc = Heals your allies with the power of nature. + +weapon-hammer-burnt_drumstick = Burnt Drumstick + .desc = Might need more practice... + +weapon-hammer-cult_purp-0 = Magical Cultist Warhammer + .desc = This belonged to an evil Cult Leader. + +weapon-hammer-2hhammer_flimsy = Flimsy Hammer + .desc = The head is barely secured. + +weapon-hammer-2hhammer_rusty = Crude Mallet + .desc = Breaks bones like sticks and stones. + +weapon-hammer-2hhammer_mjolnir = Mjolnir + .desc = It's crackling with lightning. + +weapon-hammer-2hhammer_rusty-starter_hammer = Sturdy Old Hammer + .desc = 'Property of...' The rest is missing. + +weapon-tool-broom_belzeshrub_purple = Belzeshrub the Broom-God + .desc = + You can hear him giggle whenever + you hit the ground a bit too hard... + +weapon-sword-frost-1-admin_sword = Admin Greatsword + .desc = Shouldn't this be a hammer? + +weapon-bow-velorite-velorite_bow_debug = Admin Velorite Bow + .desc = Infused with Velorite power. + +weapon-projectile-fireworks_blue-0 = Firework Blue + .desc = Recommended clearance: 42 chonks + +weapon-projectile-fireworks_green-0 = Firework Green + .desc = Watch out for trees. + +weapon-projectile-fireworks_purple-0 = Firework Purple + .desc = Cult favourite. + +weapon-projectile-fireworks_red-0 = Firework Red + .desc = + Humans sometimes use these + as a flare in a pinch. + +weapon-projectile-fireworks_white-0 = Firework White + .desc = Twinkles like the stars + +weapon-projectile-fireworks_yellow-0 = Firework Yellow + .desc = + The Great Doctor passed away after + testing this contraption indoors. + +weapon-hammer-craftsman = Craftsman Hammer + .desc = Used to craft various items. + +weapon-tool-pickaxe_green-1 = Steel Pickaxe + .desc = Allows for swift excavation of any ore in sight. + +weapon-tool-pickaxe_stone = Stone Pickaxe + .desc = Strike the earth! + +weapon-tool-wooden_bass = Double Bass + .desc = Wooden Bass. + +weapon-tool-wooden_flute = Flute + .desc = Wooden Flute. + +weapon-tool-glass_flute = Glass Flute + .desc = What's the Cardinal doing with it? + +weapon-tool-wooden_guitar = Guitar + .desc = Wooden Guitar. + +weapon-tool-black_velvet_guitar = Dark Guitar + .desc = Sounds edgy. + +weapon-tool-icy_talharpa = Icy Talharpa + .desc = Icy Talharpa. + +weapon-tool-wooden_kalimba = Kalimba + .desc = Wooden Kalimba. + +weapon-tool-wooden_lute = Lute + .desc = Wooden Lute. + +weapon-tool-wooden_lyre = Lyre + .desc = Wooden Lyre. + +weapon-tool-melodica = Melodica + .desc = Wooden Melodica. + +weapon-tool-wooden_sitar = Sitar + .desc = Wooden Sitar. + +weapon-tool-washboard = Washboard + .desc = Washboard. + +weapon-tool-wildskin_drum = Wildskin Drum + .desc = one, two, you know what to do! + +weapon-component-bow-grip-long = Long Bow Grip + .desc = {""} + +weapon-component-bow-grip-medium = Medium Bow Grip + .desc = {""} + +weapon-component-bow-grip-short = Short Bow Grip + .desc = {""} + +weapon-component-axe-haft-long = Long Axe Haft + .desc = {""} + +weapon-component-axe-haft-medium = Medium Axe Haft + .desc = {""} + +weapon-component-axe-haft-short = Short Axe Haft + .desc = {""} + +weapon-component-staff-core-heavy = Heavy Pyrocore + .desc = {""} + +weapon-component-staff-core-light = Light Pyrocore + .desc = {""} + +weapon-component-staff-core-medium = Pyrocore + .desc = {""} + +weapon-component-sword-hilt-long = Long Sword Hilt + .desc = {""} + +weapon-component-sword-hilt-medium = Medium Sword Hilt + .desc = {""} + +weapon-component-sword-hilt-short = Short Sword Hilt + .desc = {""} + +weapon-component-sceptre-core-heavy = Heavy Biocore + .desc = {""} + +weapon-component-sceptre-core-light = Light Biocore + .desc = {""} + +weapon-component-sceptre-core-medium = Biocore + .desc = {""} + +weapon-component-hammer-shaft-long = Long Hammer Haft + .desc = {""} + +weapon-component-hammer-shaft-medium = Medium Hammer Haft + .desc = {""} + +weapon-component-hammer-shaft-short = Short Hammer Haft + .desc = {""} + +weapon-component-sword-greatsword-iron = Iron Greatsword Blade + .desc = {""} + +weapon-component-sword-katana-iron = Iron Katana Blade + .desc = {""} + +weapon-component-sword-sawblade-iron = Iron Sawblade + .desc = {""} + +weapon-component-sword-sabre-iron = Iron Sabre Blade + .desc = {""} + +weapon-component-sword-ornate-iron = Iron Ornate Sword Blade + .desc = {""} + +weapon-component-sword-longsword-iron = Iron Longsword Blade + .desc = {""} + +weapon-component-sword-zweihander-iron = Iron Zweihander Blade + .desc = {""} + +weapon-component-bow-shortbow-wood = Wooden Shortbow Limbs + .desc = {""} + +weapon-component-bow-longbow-wood = Wooden Longbow Limbs + .desc = {""} + +weapon-component-bow-ornate-wood = Wooden Ornate Bow Limbs + .desc = {""} + +weapon-component-bow-greatbow-wood = Wooden Greatbow Limbs + .desc = {""} + +weapon-component-bow-composite-wood = Wooden Composite Bow Limbs + .desc = {""} + +weapon-component-bow-bow-wood = Wooden Bow Limbs + .desc = {""} + +weapon-component-bow-warbow-wood = Wooden Warbow Limbs + .desc = {""} + +weapon-component-hammer-maul-bronze = Bronze Maul Head + .desc = {""} + +weapon-component-hammer-hammer-bronze = Bronze Hammer Head + .desc = {""} + +weapon-component-hammer-greatmace-bronze = Bronze Greatmace Head + .desc = {""} + +weapon-component-hammer-spikedmace-bronze = Bronze Spiked Mace Head + .desc = {""} + +weapon-component-hammer-greathammer-bronze = Bronze Greathammer Head + .desc = {""} + +weapon-component-hammer-warhammer-bronze = Bronze Warhammer Head + .desc = {""} + +weapon-component-hammer-ornate-bronze = Bronze Ornate Hammer Head + .desc = {""} + +weapon-component-hammer-maul-bloodsteel = Bloodsteel Maul Head + .desc = {""} + +weapon-component-hammer-greathammer-bloodsteel = Bloodsteel Greathammer Head + .desc = {""} + +weapon-component-hammer-ornate-bloodsteel = Bloodsteel Ornate Hammer Head + .desc = {""} + +weapon-component-hammer-hammer-bloodsteel = Bloodsteel Hammer Head + .desc = {""} + +weapon-component-hammer-spikedmace-bloodsteel = Bloodsteel Spiked Mace Head + .desc = {""} + +weapon-component-hammer-greatmace-bloodsteel = Bloodsteel Greatmace Head + .desc = {""} + +weapon-component-hammer-warhammer-bloodsteel = Bloodsteel Warhammer Head + .desc = {""} + +weapon-component-sceptre-ornate-frostwood = Frostwood Ornate Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-sceptre-frostwood = Frostwood Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-crook-frostwood = Frostwood Crook Shaft + .desc = {""} + +weapon-component-sceptre-grandsceptre-frostwood = Frostwood Grandsceptre Shaft + .desc = {""} + +weapon-component-sceptre-cane-frostwood = Frostwood Cane Shaft + .desc = {""} + +weapon-component-sceptre-crozier-frostwood = Frostwood Crozier Shaft + .desc = {""} + +weapon-component-sceptre-arbor-frostwood = Frostwood Arbor Shaft + .desc = {""} + +weapon-component-bow-bow-eldwood = Eldwood Bow Limbs + .desc = {""} + +weapon-component-bow-warbow-eldwood = Eldwood Warbow Limbs + .desc = {""} + +weapon-component-bow-greatbow-eldwood = Eldwood Greatbow Limbs + .desc = {""} + +weapon-component-bow-ornate-eldwood = Eldwood Ornate Bow Limbs + .desc = {""} + +weapon-component-bow-longbow-eldwood = Eldwood Longbow Limbs + .desc = {""} + +weapon-component-bow-composite-eldwood = Eldwood Composite Bow Limbs + .desc = {""} + +weapon-component-bow-shortbow-eldwood = Eldwood Shortbow Limbs + .desc = {""} + +weapon-component-axe-axe-bloodsteel = Bloodsteel Axe Head + .desc = {""} + +weapon-component-axe-ornate-bloodsteel = Bloodsteel Ornate Axe Head + .desc = {""} + +weapon-component-axe-jagged-bloodsteel = Bloodsteel Jagged Axe Head + .desc = {""} + +weapon-component-axe-battleaxe-bloodsteel = Bloodsteel Battleaxe Head + .desc = {""} + +weapon-component-axe-greataxe-bloodsteel = Bloodsteel Greataxe Head + .desc = {""} + +weapon-component-axe-labrys-bloodsteel = Bloodsteel Labrys Head + .desc = {""} + +weapon-component-axe-poleaxe-bloodsteel = Bloodsteel Poleaxe Head + .desc = {""} + +weapon-component-axe-poleaxe-cobalt = Cobalt Poleaxe Head + .desc = {""} + +weapon-component-axe-jagged-cobalt = Cobalt Jagged Axe Head + .desc = {""} + +weapon-component-axe-labrys-cobalt = Cobalt Labrys Head + .desc = {""} + +weapon-component-axe-axe-cobalt = Cobalt Axe Head + .desc = {""} + +weapon-component-axe-ornate-cobalt = Cobalt Ornate Axe Head + .desc = {""} + +weapon-component-axe-greataxe-cobalt = Cobalt Greataxe Head + .desc = {""} + +weapon-component-axe-battleaxe-cobalt = Cobalt Battleaxe Head + .desc = {""} + +weapon-component-hammer-maul-iron = Iron Maul Head + .desc = {""} + +weapon-component-hammer-ornate-iron = Iron Ornate Hammer Head + .desc = {""} + +weapon-component-hammer-spikedmace-iron = Iron Spiked Mace Head + .desc = {""} + +weapon-component-hammer-hammer-iron = Iron Hammer Head + .desc = {""} + +weapon-component-hammer-warhammer-iron = Iron Warhammer Head + .desc = {""} + +weapon-component-hammer-greathammer-iron = Iron Greathammer Head + .desc = {""} + +weapon-component-hammer-greatmace-iron = Iron Greatmace Head + .desc = {""} + +weapon-component-sword-zweihander-steel = Steel Zweihander Blade + .desc = {""} + +weapon-component-sword-longsword-steel = Steel Longsword Blade + .desc = {""} + +weapon-component-sword-katana-steel = Steel Katana Blade + .desc = {""} + +weapon-component-sword-greatsword-steel = Steel Greatsword Blade + .desc = {""} + +weapon-component-sword-ornate-steel = Steel Ornate Sword Blade + .desc = {""} + +weapon-component-sword-sawblade-steel = Steel Sawblade + .desc = {""} + +weapon-component-sword-sabre-steel = Steel Sabre Blade + .desc = {""} + +weapon-component-staff-grandstaff-hardwood = Hardwood Grandstaff Shaft + .desc = {""} + +weapon-component-staff-rod-hardwood = Hardwood Rod Shaft + .desc = {""} + +weapon-component-staff-brand-hardwood = Hardwood Brand Shaft + .desc = {""} + +weapon-component-staff-longpole-hardwood = Hardwood Long Pole Shaft + .desc = {""} + +weapon-component-staff-staff-hardwood = Hardwood Staff Shaft + .desc = {""} + +weapon-component-staff-ornate-hardwood = Hardwood Ornate Staff Shaft + .desc = {""} + +weapon-component-staff-pole-hardwood = Hardwood Pole Shaft + .desc = {""} + +weapon-component-axe-ornate-orichalcum = Orichalcum Ornate Axe Head + .desc = {""} + +weapon-component-axe-jagged-orichalcum = Orichalcum Jagged Axe Head + .desc = {""} + +weapon-component-axe-axe-orichalcum = Orichalcum Axe Head + .desc = {""} + +weapon-component-axe-battleaxe-orichalcum = Orichalcum Battleaxe Head + .desc = {""} + +weapon-component-axe-greataxe-orichalcum = Orichalcum Greataxe Head + .desc = {""} + +weapon-component-axe-poleaxe-orichalcum = Orichalcum Poleaxe Head + .desc = {""} + +weapon-component-axe-labrys-orichalcum = Orichalcum Labrys Head + .desc = {""} + +weapon-component-bow-greatbow-bamboo = Bamboo Greatbow Limbs + .desc = {""} + +weapon-component-bow-longbow-bamboo = Bamboo Longbow Limbs + .desc = {""} + +weapon-component-bow-composite-bamboo = Bamboo Composite Bow Limbs + .desc = {""} + +weapon-component-bow-ornate-bamboo = Bamboo Ornate Bow Limbs + .desc = {""} + +weapon-component-bow-shortbow-bamboo = Bamboo Shortbow Limbs + .desc = {""} + +weapon-component-bow-bow-bamboo = Bamboo Bow Limbs + .desc = {""} + +weapon-component-bow-warbow-bamboo = Bamboo Warbow Limbs + .desc = {""} + +weapon-component-bow-ornate-frostwood = Frostwood Ornate Bow Limbs + .desc = {""} + +weapon-component-bow-composite-frostwood = Frostwood Composite Bow Limbs + .desc = {""} + +weapon-component-bow-warbow-frostwood = Frostwood Warbow Limbs + .desc = {""} + +weapon-component-bow-shortbow-frostwood = Frostwood Shortbow Limbs + .desc = {""} + +weapon-component-bow-longbow-frostwood = Frostwood Longbow Limbs + .desc = {""} + +weapon-component-bow-bow-frostwood = Frostwood Bow Limbs + .desc = {""} + +weapon-component-bow-greatbow-frostwood = Frostwood Greatbow Limbs + .desc = {""} + +weapon-component-staff-ornate-frostwood = Frostwood Ornate Staff Shaft + .desc = {""} + +weapon-component-staff-pole-frostwood = Frostwood Pole Shaft + .desc = {""} + +weapon-component-staff-longpole-frostwood = Frostwood Long Pole Shaft + .desc = {""} + +weapon-component-staff-grandstaff-frostwood = Frostwood Grandstaff Shaft + .desc = {""} + +weapon-component-staff-rod-frostwood = Frostwood Rod Shaft + .desc = {""} + +weapon-component-staff-staff-frostwood = Frostwood Staff Shaft + .desc = {""} + +weapon-component-staff-brand-frostwood = Frostwood Brand Shaft + .desc = {""} + +weapon-component-bow-greatbow-hardwood = Hardwood Greatbow Limbs + .desc = {""} + +weapon-component-bow-warbow-hardwood = Hardwood Warbow Limbs + .desc = {""} + +weapon-component-bow-shortbow-hardwood = Hardwood Shortbow Limbs + .desc = {""} + +weapon-component-bow-bow-hardwood = Hardwood Bow Limbs + .desc = {""} + +weapon-component-bow-composite-hardwood = Hardwood Composite Bow Limbs + .desc = {""} + +weapon-component-bow-ornate-hardwood = Hardwood Ornate Bow Limbs + .desc = {""} + +weapon-component-bow-longbow-hardwood = Hardwood Longbow Limbs + .desc = {""} + +weapon-component-sceptre-cane-ironwood = Ironwood Cane Shaft + .desc = {""} + +weapon-component-sceptre-ornate-ironwood = Ironwood Ornate Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-grandsceptre-ironwood = Ironwood Grandsceptre Shaft + .desc = {""} + +weapon-component-sceptre-arbor-ironwood = Ironwood Arbor Shaft + .desc = {""} + +weapon-component-sceptre-crozier-ironwood = Ironwood Crozier Shaft + .desc = {""} + +weapon-component-sceptre-crook-ironwood = Ironwood Crook Shaft + .desc = {""} + +weapon-component-sceptre-sceptre-ironwood = Ironwood Sceptre Shaft + .desc = {""} + +weapon-component-axe-greataxe-iron = Iron Greataxe Head + .desc = {""} + +weapon-component-axe-jagged-iron = Iron Jagged Axe Head + .desc = {""} + +weapon-component-axe-battleaxe-iron = Iron Battleaxe Head + .desc = {""} + +weapon-component-axe-labrys-iron = Iron Labrys Head + .desc = {""} + +weapon-component-axe-axe-iron = Iron Axe Head + .desc = {""} + +weapon-component-axe-ornate-iron = Iron Ornate Axe Head + .desc = {""} + +weapon-component-axe-poleaxe-iron = Iron Poleaxe Head + .desc = {""} + +weapon-component-axe-greataxe-steel = Steel Greataxe Head + .desc = {""} + +weapon-component-axe-ornate-steel = Steel Ornate Axe Head + .desc = {""} + +weapon-component-axe-jagged-steel = Steel Jagged Axe Head + .desc = {""} + +weapon-component-axe-battleaxe-steel = Steel Battleaxe Head + .desc = {""} + +weapon-component-axe-poleaxe-steel = Steel Poleaxe Head + .desc = {""} + +weapon-component-axe-labrys-steel = Steel Labrys Head + .desc = {""} + +weapon-component-axe-axe-steel = Steel Axe Head + .desc = {""} + +weapon-component-sword-longsword-bronze = Bronze Longsword Blade + .desc = {""} + +weapon-component-sword-zweihander-bronze = Bronze Zweihander Blade + .desc = {""} + +weapon-component-sword-greatsword-bronze = Bronze Greatsword Blade + .desc = {""} + +weapon-component-sword-katana-bronze = Bronze Katana Blade + .desc = {""} + +weapon-component-sword-sabre-bronze = Bronze Sabre Blade + .desc = {""} + +weapon-component-sword-ornate-bronze = Bronze Ornate Sword Blade + .desc = {""} + +weapon-component-sword-sawblade-bronze = Bronze Sawblade + .desc = {""} + +weapon-component-sceptre-crozier-wood = Wooden Crozier Shaft + .desc = {""} + +weapon-component-sceptre-sceptre-wood = Wooden Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-cane-wood = Wooden Cane Shaft + .desc = {""} + +weapon-component-sceptre-ornate-wood = Wooden Ornate Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-arbor-wood = Wooden Arbor Shaft + .desc = {""} + +weapon-component-sceptre-crook-wood = Wooden Crook Shaft + .desc = {""} + +weapon-component-sceptre-grandsceptre-wood = Wooden Grandsceptre Shaft + .desc = {""} + +weapon-component-staff-brand-bamboo = Bamboo Brand Shaft + .desc = {""} + +weapon-component-staff-grandstaff-bamboo = Bamboo Grandstaff Shaft + .desc = {""} + +weapon-component-staff-pole-bamboo = Bamboo Pole Shaft + .desc = {""} + +weapon-component-staff-staff-bamboo = Bamboo Staff Shaft + .desc = {""} + +weapon-component-staff-rod-bamboo = Bamboo Rod Shaft + .desc = {""} + +weapon-component-staff-longpole-bamboo = Bamboo Long Pole Shaft + .desc = {""} + +weapon-component-staff-ornate-bamboo = Bamboo Ornate Staff Shaft + .desc = {""} + +weapon-component-hammer-warhammer-orichalcum = Orichalcum Warhammer Head + .desc = {""} + +weapon-component-hammer-greathammer-orichalcum = Orichalcum Greathammer Head + .desc = {""} + +weapon-component-hammer-greatmace-orichalcum = Orichalcum Greatmace Head + .desc = {""} + +weapon-component-hammer-hammer-orichalcum = Orichalcum Hammer Head + .desc = {""} + +weapon-component-hammer-spikedmace-orichalcum = Orichalcum Spiked Mace Head + .desc = {""} + +weapon-component-hammer-ornate-orichalcum = Orichalcum Ornate Hammer Head + .desc = {""} + +weapon-component-hammer-maul-orichalcum = Orichalcum Maul Head + .desc = {""} + +weapon-component-bow-shortbow-ironwood = Ironwood Shortbow Limbs + .desc = {""} + +weapon-component-bow-greatbow-ironwood = Ironwood Greatbow Limbs + .desc = {""} + +weapon-component-bow-ornate-ironwood = Ironwood Ornate Bow Limbs + .desc = {""} + +weapon-component-bow-longbow-ironwood = Ironwood Longbow Limbs + .desc = {""} + +weapon-component-bow-warbow-ironwood = Ironwood Warbow Limbs + .desc = {""} + +weapon-component-bow-composite-ironwood = Ironwood Composite Bow Limbs + .desc = {""} + +weapon-component-bow-bow-ironwood = Ironwood Bow Limbs + .desc = {""} + +weapon-component-hammer-ornate-cobalt = Cobalt Ornate Hammer Head + .desc = {""} + +weapon-component-hammer-hammer-cobalt = Cobalt Hammer Head + .desc = {""} + +weapon-component-hammer-greatmace-cobalt = Cobalt Greatmace Head + .desc = {""} + +weapon-component-hammer-spikedmace-cobalt = Cobalt Spiked Mace Head + .desc = {""} + +weapon-component-hammer-greathammer-cobalt = Cobalt Greathammer Head + .desc = {""} + +weapon-component-hammer-maul-cobalt = Cobalt Maul Head + .desc = {""} + +weapon-component-hammer-warhammer-cobalt = Cobalt Warhammer Head + .desc = {""} + +weapon-component-staff-ornate-wood = Wooden Ornate Staff Shaft + .desc = {""} + +weapon-component-staff-pole-wood = Wooden Pole Shaft + .desc = {""} + +weapon-component-staff-rod-wood = Wooden Rod Shaft + .desc = {""} + +weapon-component-staff-brand-wood = Wooden Brand Shaft + .desc = {""} + +weapon-component-staff-grandstaff-wood = Wooden Grandstaff Shaft + .desc = {""} + +weapon-component-staff-staff-wood = Wooden Staff Shaft + .desc = {""} + +weapon-component-staff-longpole-wood = Wooden Long Pole Shaft + .desc = {""} + +weapon-component-hammer-ornate-steel = Steel Ornate Hammer Head + .desc = {""} + +weapon-component-hammer-hammer-steel = Steel Hammer Head + .desc = {""} + +weapon-component-hammer-greathammer-steel = Steel Greathammer Head + .desc = {""} + +weapon-component-hammer-spikedmace-steel = Steel Spiked Mace Head + .desc = {""} + +weapon-component-hammer-greatmace-steel = Steel Greatmace Head + .desc = {""} + +weapon-component-hammer-maul-steel = Steel Maul Head + .desc = {""} + +weapon-component-hammer-warhammer-steel = Steel Warhammer Head + .desc = {""} + +weapon-component-sceptre-grandsceptre-bamboo = Bamboo Grandsceptre Shaft + .desc = {""} + +weapon-component-sceptre-cane-bamboo = Bamboo Cane Shaft + .desc = {""} + +weapon-component-sceptre-crozier-bamboo = Bamboo Crozier Shaft + .desc = {""} + +weapon-component-sceptre-crook-bamboo = Bamboo Crook Shaft + .desc = {""} + +weapon-component-sceptre-sceptre-bamboo = Bamboo Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-arbor-bamboo = Bamboo Arbor Shaft + .desc = {""} + +weapon-component-sceptre-ornate-bamboo = Bamboo Ornate Sceptre Shaft + .desc = {""} + +weapon-component-staff-grandstaff-ironwood = Ironwood Grandstaff Shaft + .desc = {""} + +weapon-component-staff-rod-ironwood = Ironwood Rod Shaft + .desc = {""} + +weapon-component-staff-brand-ironwood = Ironwood Brand Shaft + .desc = {""} + +weapon-component-staff-longpole-ironwood = Ironwood Long Pole Shaft + .desc = {""} + +weapon-component-staff-staff-ironwood = Ironwood Staff Shaft + .desc = {""} + +weapon-component-staff-pole-ironwood = Ironwood Pole Shaft + .desc = {""} + +weapon-component-staff-ornate-ironwood = Ironwood Ornate Staff Shaft + .desc = {""} + +weapon-component-staff-ornate-eldwood = Eldwood Ornate Staff Shaft + .desc = {""} + +weapon-component-staff-longpole-eldwood = Eldwood Long Pole Shaft + .desc = {""} + +weapon-component-staff-rod-eldwood = Eldwood Rod Shaft + .desc = {""} + +weapon-component-staff-pole-eldwood = Eldwood Pole Shaft + .desc = {""} + +weapon-component-staff-staff-eldwood = Eldwood Staff Shaft + .desc = {""} + +weapon-component-staff-brand-eldwood = Eldwood Brand Shaft + .desc = {""} + +weapon-component-staff-grandstaff-eldwood = Eldwood Grandstaff Shaft + .desc = {""} + +weapon-component-sceptre-arbor-eldwood = Eldwood Arbor Shaft + .desc = {""} + +weapon-component-sceptre-crook-eldwood = Eldwood Crook Shaft + .desc = {""} + +weapon-component-sceptre-crozier-eldwood = Eldwood Crozier Shaft + .desc = {""} + +weapon-component-sceptre-cane-eldwood = Eldwood Cane Shaft + .desc = {""} + +weapon-component-sceptre-grandsceptre-eldwood = Eldwood Grandsceptre Shaft + .desc = {""} + +weapon-component-sceptre-ornate-eldwood = Eldwood Ornate Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-sceptre-eldwood = Eldwood Sceptre Shaft + .desc = {""} + +weapon-component-sword-sabre-bloodsteel = Bloodsteel Sabre Blade + .desc = {""} + +weapon-component-sword-zweihander-bloodsteel = Bloodsteel Zweihander Blade + .desc = {""} + +weapon-component-sword-greatsword-bloodsteel = Bloodsteel Greatsword Blade + .desc = {""} + +weapon-component-sword-katana-bloodsteel = Bloodsteel Katana Blade + .desc = {""} + +weapon-component-sword-longsword-bloodsteel = Bloodsteel Longsword Blade + .desc = {""} + +weapon-component-sword-ornate-bloodsteel = Bloodsteel Ornate Sword Blade + .desc = {""} + +weapon-component-sword-sawblade-bloodsteel = Bloodsteel Sawblade + .desc = {""} + +weapon-component-sword-sabre-orichalcum = Orichalcum Sabre Blade + .desc = {""} + +weapon-component-sword-greatsword-orichalcum = Orichalcum Greatsword Blade + .desc = {""} + +weapon-component-sword-sawblade-orichalcum = Orichalcum Sawblade + .desc = {""} + +weapon-component-sword-longsword-orichalcum = Orichalcum Longsword Blade + .desc = {""} + +weapon-component-sword-katana-orichalcum = Orichalcum Katana Blade + .desc = {""} + +weapon-component-sword-zweihander-orichalcum = Orichalcum Zweihander Blade + .desc = {""} + +weapon-component-sword-ornate-orichalcum = Orichalcum Ornate Sword Blade + .desc = {""} + +weapon-component-axe-poleaxe-bronze = Bronze Poleaxe Head + .desc = {""} + +weapon-component-axe-ornate-bronze = Bronze Ornate Axe Head + .desc = {""} + +weapon-component-axe-labrys-bronze = Bronze Labrys Head + .desc = {""} + +weapon-component-axe-battleaxe-bronze = Bronze Battleaxe Head + .desc = {""} + +weapon-component-axe-axe-bronze = Bronze Axe Head + .desc = {""} + +weapon-component-axe-jagged-bronze = Bronze Jagged Axe Head + .desc = {""} + +weapon-component-axe-greataxe-bronze = Bronze Greataxe Head + .desc = {""} + +weapon-component-sceptre-sceptre-hardwood = Hardwood Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-cane-hardwood = Hardwood Cane Shaft + .desc = {""} + +weapon-component-sceptre-arbor-hardwood = Hardwood Arbor Shaft + .desc = {""} + +weapon-component-sceptre-crozier-hardwood = Hardwood Crozier Shaft + .desc = {""} + +weapon-component-sceptre-ornate-hardwood = Hardwood Ornate Sceptre Shaft + .desc = {""} + +weapon-component-sceptre-crook-hardwood = Hardwood Crook Shaft + .desc = {""} + +weapon-component-sceptre-grandsceptre-hardwood = Hardwood Grandsceptre Shaft + .desc = {""} + +weapon-component-sword-longsword-cobalt = Cobalt Longsword Blade + .desc = {""} + +weapon-component-sword-sawblade-cobalt = Cobalt Sawblade + .desc = {""} + +weapon-component-sword-greatsword-cobalt = Cobalt Greatsword Blade + .desc = {""} + +weapon-component-sword-katana-cobalt = Cobalt Katana Blade + .desc = {""} + +weapon-component-sword-zweihander-cobalt = Cobalt Zweihander Blade + .desc = {""} + +weapon-component-sword-ornate-cobalt = Cobalt Ornate Sword Blade + .desc = {""} + +weapon-component-sword-sabre-cobalt = Cobalt Sabre Blade + .desc = {""} + +weapon-sword-greatsword-iron-2h = Iron Greatsword + .desc = {""} + +weapon-sword-katana-iron-2h = Iron Katana + .desc = {""} + +weapon-sword-katana-iron-1h = Iron Swiftblade + .desc = {""} + +weapon-sword-sawblade-iron-2h = Iron Sawblade + .desc = {""} + +weapon-sword-sawblade-iron-1h = Iron Sawback + .desc = {""} + +weapon-sword-sabre-iron-2h = Iron Sabre + .desc = {""} + +weapon-sword-sabre-iron-1h = Iron Scimitar + .desc = {""} + +weapon-sword-ornate-iron-2h = Iron Ornate Sword + .desc = {""} + +weapon-sword-ornate-iron-1h = Iron Rapier + .desc = {""} + +weapon-sword-longsword-iron-2h = Iron Longsword + .desc = {""} + +weapon-sword-longsword-iron-1h = Iron Shortsword + .desc = {""} + +weapon-sword-zweihander-iron-2h = Iron Zweihander + .desc = {""} + +weapon-bow-shortbow-wood = Wooden Shortbow + .desc = {""} + +weapon-bow-longbow-wood = Wooden Longbow + .desc = {""} + +weapon-bow-ornate-wood = Wooden Ornate Bow + .desc = {""} + +weapon-bow-greatbow-wood = Wooden Greatbow + .desc = {""} + +weapon-bow-composite-wood = Wooden Composite Bow + .desc = {""} + +weapon-bow-bow-wood = Wooden Bow + .desc = {""} + +weapon-bow-warbow-wood = Wooden Warbow + .desc = {""} + +weapon-hammer-maul-bronze-2h = Bronze Maul + .desc = {""} + +weapon-hammer-hammer-bronze-2h = Bronze Hammer + .desc = {""} + +weapon-hammer-hammer-bronze-1h = Bronze Club + .desc = {""} + +weapon-hammer-greatmace-bronze-2h = Bronze Greatmace + .desc = {""} + +weapon-hammer-spikedmace-bronze-2h = Bronze Spiked Mace + .desc = {""} + +weapon-hammer-spikedmace-bronze-1h = Bronze Mace + .desc = {""} + +weapon-hammer-greathammer-bronze-2h = Bronze Greathammer + .desc = {""} + +weapon-hammer-warhammer-bronze-2h = Bronze Warhammer + .desc = {""} + +weapon-hammer-warhammer-bronze-1h = Bronze Mallet + .desc = {""} + +weapon-hammer-ornate-bronze-2h = Bronze Ornate Hammer + .desc = {""} + +weapon-hammer-ornate-bronze-1h = Bronze Cudgel + .desc = {""} + +weapon-hammer-maul-bloodsteel-2h = Bloodsteel Maul + .desc = {""} + +weapon-hammer-greathammer-bloodsteel-2h = Bloodsteel Greathammer + .desc = {""} + +weapon-hammer-ornate-bloodsteel-2h = Bloodsteel Ornate Hammer + .desc = {""} + +weapon-hammer-ornate-bloodsteel-1h = Bloodsteel Cudgel + .desc = {""} + +weapon-hammer-hammer-bloodsteel-2h = Bloodsteel Hammer + .desc = {""} + +weapon-hammer-hammer-bloodsteel-1h = Bloodsteel Club + .desc = {""} + +weapon-hammer-spikedmace-bloodsteel-2h = Bloodsteel Spiked Mace + .desc = {""} + +weapon-hammer-spikedmace-bloodsteel-1h = Bloodsteel Mace + .desc = {""} + +weapon-hammer-greatmace-bloodsteel-2h = Bloodsteel Greatmace + .desc = {""} + +weapon-hammer-warhammer-bloodsteel-2h = Bloodsteel Warhammer + .desc = {""} + +weapon-hammer-warhammer-bloodsteel-1h = Bloodsteel Mallet + .desc = {""} + +weapon-sceptre-ornate-frostwood = Frostwood Ornate Sceptre + .desc = {""} + +weapon-sceptre-sceptre-frostwood = Frostwood Sceptre + .desc = {""} + +weapon-sceptre-crook-frostwood = Frostwood Crook + .desc = {""} + +weapon-sceptre-grandsceptre-frostwood = Frostwood Grandsceptre + .desc = {""} + +weapon-sceptre-cane-frostwood = Frostwood Cane + .desc = {""} + +weapon-sceptre-crozier-frostwood = Frostwood Crozier + .desc = {""} + +weapon-sceptre-arbor-frostwood = Frostwood Arbor + .desc = {""} + +weapon-bow-bow-eldwood = Eldwood Bow + .desc = {""} + +weapon-bow-warbow-eldwood = Eldwood Warbow + .desc = {""} + +weapon-bow-greatbow-eldwood = Eldwood Greatbow + .desc = {""} + +weapon-bow-ornate-eldwood = Eldwood Ornate Bow + .desc = {""} + +weapon-bow-longbow-eldwood = Eldwood Longbow + .desc = {""} + +weapon-bow-composite-eldwood = Eldwood Composite Bow + .desc = {""} + +weapon-bow-shortbow-eldwood = Eldwood Shortbow + .desc = {""} + +weapon-axe-axe-bloodsteel-2h = Bloodsteel Axe + .desc = {""} + +weapon-axe-axe-bloodsteel-1h = Bloodsteel Hatchet + .desc = {""} + +weapon-axe-ornate-bloodsteel-2h = Bloodsteel Ornate Axe + .desc = {""} + +weapon-axe-ornate-bloodsteel-1h = Bloodsteel Kilonda + .desc = {""} + +weapon-axe-jagged-bloodsteel-2h = Bloodsteel Jagged Axe + .desc = {""} + +weapon-axe-jagged-bloodsteel-1h = Bloodsteel Tomahawk + .desc = {""} + +weapon-axe-battleaxe-bloodsteel-2h = Bloodsteel Battleaxe + .desc = {""} + +weapon-axe-battleaxe-bloodsteel-1h = Bloodsteel Cleaver + .desc = {""} + +weapon-axe-greataxe-bloodsteel-2h = Bloodsteel Greataxe + .desc = {""} + +weapon-axe-labrys-bloodsteel-2h = Bloodsteel Labrys + .desc = {""} + +weapon-axe-poleaxe-bloodsteel-2h = Bloodsteel Poleaxe + .desc = {""} + +weapon-axe-poleaxe-cobalt-2h = Cobalt Poleaxe + .desc = {""} + +weapon-axe-jagged-cobalt-2h = Cobalt Jagged Axe + .desc = {""} + +weapon-axe-jagged-cobalt-1h = Cobalt Tomahawk + .desc = {""} + +weapon-axe-labrys-cobalt-2h = Cobalt Labrys + .desc = {""} + +weapon-axe-axe-cobalt-2h = Cobalt Axe + .desc = {""} + +weapon-axe-axe-cobalt-1h = Cobalt Hatchet + .desc = {""} + +weapon-axe-ornate-cobalt-2h = Cobalt Ornate Axe + .desc = {""} + +weapon-axe-ornate-cobalt-1h = Cobalt Kilonda + .desc = {""} + +weapon-axe-greataxe-cobalt-2h = Cobalt Greataxe + .desc = {""} + +weapon-axe-battleaxe-cobalt-2h = Cobalt Battleaxe + .desc = {""} + +weapon-axe-battleaxe-cobalt-1h = Cobalt Cleaver + .desc = {""} + +weapon-hammer-maul-iron-2h = Iron Maul + .desc = {""} + +weapon-hammer-ornate-iron-2h = Iron Ornate Hammer + .desc = {""} + +weapon-hammer-ornate-iron-1h = Iron Cudgel + .desc = {""} + +weapon-hammer-spikedmace-iron-2h = Iron Spiked Mace + .desc = {""} + +weapon-hammer-spikedmace-iron-1h = Iron Mace + .desc = {""} + +weapon-hammer-hammer-iron-2h = Iron Hammer + .desc = {""} + +weapon-hammer-hammer-iron-1h = Iron Club + .desc = {""} + +weapon-hammer-warhammer-iron-2h = Iron Warhammer + .desc = {""} + +weapon-hammer-warhammer-iron-1h = Iron Mallet + .desc = {""} + +weapon-hammer-greathammer-iron-2h = Iron Greathammer + .desc = {""} + +weapon-hammer-greatmace-iron-2h = Iron Greatmace + .desc = {""} + +weapon-sword-zweihander-steel-2h = Steel Zweihander + .desc = {""} + +weapon-sword-longsword-steel-2h = Steel Longsword + .desc = {""} + +weapon-sword-longsword-steel-1h = Steel Shortsword + .desc = {""} + +weapon-sword-katana-steel-2h = Steel Katana + .desc = {""} + +weapon-sword-katana-steel-1h = Steel Swiftblade + .desc = {""} + +weapon-sword-greatsword-steel-2h = Steel Greatsword + .desc = {""} + +weapon-sword-ornate-steel-2h = Steel Ornate Sword + .desc = {""} + +weapon-sword-ornate-steel-1h = Steel Rapier + .desc = {""} + +weapon-sword-sawblade-steel-2h = Steel Sawblade + .desc = {""} + +weapon-sword-sawblade-steel-1h = Steel Sawback + .desc = {""} + +weapon-sword-sabre-steel-2h = Steel Sabre + .desc = {""} + +weapon-sword-sabre-steel-1h = Steel Scimitar + .desc = {""} + +weapon-staff-grandstaff-hardwood = Hardwood Grandstaff + .desc = {""} + +weapon-staff-rod-hardwood = Hardwood Rod + .desc = {""} + +weapon-staff-brand-hardwood = Hardwood Brand + .desc = {""} + +weapon-staff-longpole-hardwood = Hardwood Longpole + .desc = {""} + +weapon-staff-staff-hardwood = Hardwood Staff + .desc = {""} + +weapon-staff-ornate-hardwood = Hardwood Ornate Staff + .desc = {""} + +weapon-staff-pole-hardwood = Hardwood Pole + .desc = {""} + +weapon-axe-ornate-orichalcum-2h = Orichalcum Ornate Axe + .desc = {""} + +weapon-axe-ornate-orichalcum-1h = Orichalcum Kilonda + .desc = {""} + +weapon-axe-jagged-orichalcum-2h = Orichalcum Jagged Axe + .desc = {""} + +weapon-axe-jagged-orichalcum-1h = Orichalcum Tomahawk + .desc = {""} + +weapon-axe-axe-orichalcum-2h = Orichalcum Axe + .desc = {""} + +weapon-axe-axe-orichalcum-1h = Orichalcum Hatchet + .desc = {""} + +weapon-axe-battleaxe-orichalcum-2h = Orichalcum Battleaxe + .desc = {""} + +weapon-axe-battleaxe-orichalcum-1h = Orichalcum Cleaver + .desc = {""} + +weapon-axe-greataxe-orichalcum-2h = Orichalcum Greataxe + .desc = {""} + +weapon-axe-poleaxe-orichalcum-2h = Orichalcum Poleaxe + .desc = {""} + +weapon-axe-labrys-orichalcum-2h = Orichalcum Labrys + .desc = {""} + +weapon-bow-greatbow-bamboo = Bamboo Greatbow + .desc = {""} + +weapon-bow-longbow-bamboo = Bamboo Longbow + .desc = {""} + +weapon-bow-composite-bamboo = Bamboo Composite Bow + .desc = {""} + +weapon-bow-ornate-bamboo = Bamboo Ornate Bow + .desc = {""} + +weapon-bow-shortbow-bamboo = Bamboo Shortbow + .desc = {""} + +weapon-bow-bow-bamboo = Bamboo Bow + .desc = {""} + +weapon-bow-warbow-bamboo = Bamboo Warbow + .desc = {""} + +weapon-bow-ornate-frostwood = Frostwood Ornate Bow + .desc = {""} + +weapon-bow-composite-frostwood = Frostwood Composite Bow + .desc = {""} + +weapon-bow-warbow-frostwood = Frostwood Warbow + .desc = {""} + +weapon-bow-shortbow-frostwood = Frostwood Shortbow + .desc = {""} + +weapon-bow-longbow-frostwood = Frostwood Longbow + .desc = {""} + +weapon-bow-bow-frostwood = Frostwood Bow + .desc = {""} + +weapon-bow-greatbow-frostwood = Frostwood Greatbow + .desc = {""} + +weapon-staff-ornate-frostwood = Frostwood Ornate Staff + .desc = {""} + +weapon-staff-pole-frostwood = Frostwood Pole + .desc = {""} + +weapon-staff-longpole-frostwood = Frostwood Longpole + .desc = {""} + +weapon-staff-grandstaff-frostwood = Frostwood Grandstaff + .desc = {""} + +weapon-staff-rod-frostwood = Frostwood Rod + .desc = {""} + +weapon-staff-staff-frostwood = Frostwood Staff + .desc = {""} + +weapon-staff-brand-frostwood = Frostwood Brand + .desc = {""} + +weapon-bow-greatbow-hardwood = Hardwood Greatbow + .desc = {""} + +weapon-bow-warbow-hardwood = Hardwood Warbow + .desc = {""} + +weapon-bow-shortbow-hardwood = Hardwood Shortbow + .desc = {""} + +weapon-bow-bow-hardwood = Hardwood Bow + .desc = {""} + +weapon-bow-composite-hardwood = Hardwood Composite Bow + .desc = {""} + +weapon-bow-ornate-hardwood = Hardwood Ornate Bow + .desc = {""} + +weapon-bow-longbow-hardwood = Hardwood Longbow + .desc = {""} + +weapon-sceptre-cane-ironwood = Ironwood Cane + .desc = {""} + +weapon-sceptre-ornate-ironwood = Ironwood Ornate Sceptre + .desc = {""} + +weapon-sceptre-grandsceptre-ironwood = Ironwood Grandsceptre + .desc = {""} + +weapon-sceptre-arbor-ironwood = Ironwood Arbor + .desc = {""} + +weapon-sceptre-crozier-ironwood = Ironwood Crozier + .desc = {""} + +weapon-sceptre-crook-ironwood = Ironwood Crook + .desc = {""} + +weapon-sceptre-sceptre-ironwood = Ironwood Sceptre + .desc = {""} + +weapon-axe-greataxe-iron-2h = Iron Greataxe + .desc = {""} + +weapon-axe-jagged-iron-2h = Iron Jagged Axe + .desc = {""} + +weapon-axe-jagged-iron-1h = Iron Tomahawk + .desc = {""} + +weapon-axe-battleaxe-iron-2h = Iron Battleaxe + .desc = {""} + +weapon-axe-battleaxe-iron-1h = Iron Cleaver + .desc = {""} + +weapon-axe-labrys-iron-2h = Iron Labrys + .desc = {""} + +weapon-axe-axe-iron-2h = Iron Axe + .desc = {""} + +weapon-axe-axe-iron-1h = Iron Hatchet + .desc = {""} + +weapon-axe-ornate-iron-2h = Iron Ornate Axe + .desc = {""} + +weapon-axe-ornate-iron-1h = Iron Kilonda + .desc = {""} + +weapon-axe-poleaxe-iron-2h = Iron Poleaxe + .desc = {""} + +weapon-axe-greataxe-steel-2h = Steel Greataxe + .desc = {""} + +weapon-axe-ornate-steel-2h = Steel Ornate Axe + .desc = {""} + +weapon-axe-ornate-steel-1h = Steel Kilonda + .desc = {""} + +weapon-axe-jagged-steel-2h = Steel Jagged Axe + .desc = {""} + +weapon-axe-jagged-steel-1h = Steel Tomahawk + .desc = {""} + +weapon-axe-battleaxe-steel-2h = Steel Battleaxe + .desc = {""} + +weapon-axe-battleaxe-steel-1h = Steel Cleaver + .desc = {""} + +weapon-axe-poleaxe-steel-2h = Steel Poleaxe + .desc = {""} + +weapon-axe-labrys-steel-2h = Steel Labrys + .desc = {""} + +weapon-axe-axe-steel-2h = Steel Axe + .desc = {""} + +weapon-axe-axe-steel-1h = Steel Hatchet + .desc = {""} + +weapon-sword-longsword-bronze-2h = Bronze Longsword + .desc = {""} + +weapon-sword-longsword-bronze-1h = Bronze Shortsword + .desc = {""} + +weapon-sword-zweihander-bronze-2h = Bronze Zweihander + .desc = {""} + +weapon-sword-greatsword-bronze-2h = Bronze Greatsword + .desc = {""} + +weapon-sword-katana-bronze-2h = Bronze Katana + .desc = {""} + +weapon-sword-katana-bronze-1h = Bronze Swiftblade + .desc = {""} + +weapon-sword-sabre-bronze-2h = Bronze Sabre + .desc = {""} + +weapon-sword-sabre-bronze-1h = Bronze Scimitar + .desc = {""} + +weapon-sword-ornate-bronze-2h = Bronze Ornate Sword + .desc = {""} + +weapon-sword-ornate-bronze-1h = Bronze Rapier + .desc = {""} + +weapon-sword-sawblade-bronze-2h = Bronze Sawblade + .desc = {""} + +weapon-sword-sawblade-bronze-1h = Bronze Sawback + .desc = {""} + +weapon-sceptre-crozier-wood = Wooden Crozier + .desc = {""} + +weapon-sceptre-sceptre-wood = Wooden Sceptre + .desc = {""} + +weapon-sceptre-cane-wood = Wooden Cane + .desc = {""} + +weapon-sceptre-ornate-wood = Wooden Ornate Sceptre + .desc = {""} + +weapon-sceptre-arbor-wood = Wooden Arbor + .desc = {""} + +weapon-sceptre-crook-wood = Wooden Crook + .desc = {""} + +weapon-sceptre-grandsceptre-wood = Wooden Grandsceptre + .desc = {""} + +weapon-staff-brand-bamboo = Bamboo Brand + .desc = {""} + +weapon-staff-grandstaff-bamboo = Bamboo Grandstaff + .desc = {""} + +weapon-staff-pole-bamboo = Bamboo Pole + .desc = {""} + +weapon-staff-staff-bamboo = Bamboo Staff + .desc = {""} + +weapon-staff-rod-bamboo = Bamboo Rod + .desc = {""} + +weapon-staff-longpole-bamboo = Bamboo Longpole + .desc = {""} + +weapon-staff-ornate-bamboo = Bamboo Ornate Staff + .desc = {""} + +weapon-hammer-warhammer-orichalcum-2h = Orichalcum Warhammer + .desc = {""} + +weapon-hammer-warhammer-orichalcum-1h = Orichalcum Mallet + .desc = {""} + +weapon-hammer-greathammer-orichalcum-2h = Orichalcum Greathammer + .desc = {""} + +weapon-hammer-greatmace-orichalcum-2h = Orichalcum Greatmace + .desc = {""} + +weapon-hammer-hammer-orichalcum-2h = Orichalcum Hammer + .desc = {""} + +weapon-hammer-hammer-orichalcum-1h = Orichalcum Club + .desc = {""} + +weapon-hammer-spikedmace-orichalcum-2h = Orichalcum Spiked Mace + .desc = {""} + +weapon-hammer-spikedmace-orichalcum-1h = Orichalcum Mace + .desc = {""} + +weapon-hammer-ornate-orichalcum-2h = Orichalcum Ornate Hammer + .desc = {""} + +weapon-hammer-ornate-orichalcum-1h = Orichalcum Cudgel + .desc = {""} + +weapon-hammer-maul-orichalcum-2h = Orichalcum Maul + .desc = {""} + +weapon-bow-shortbow-ironwood = Ironwood Shortbow + .desc = {""} + +weapon-bow-greatbow-ironwood = Ironwood Greatbow + .desc = {""} + +weapon-bow-ornate-ironwood = Ironwood Ornate Bow + .desc = {""} + +weapon-bow-longbow-ironwood = Ironwood Longbow + .desc = {""} + +weapon-bow-warbow-ironwood = Ironwood Warbow + .desc = {""} + +weapon-bow-composite-ironwood = Ironwood Composite Bow + .desc = {""} + +weapon-bow-bow-ironwood = Ironwood Bow + .desc = {""} + +weapon-hammer-ornate-cobalt-2h = Cobalt Ornate Hammer + .desc = {""} + +weapon-hammer-ornate-cobalt-1h = Cobalt Cudgel + .desc = {""} + +weapon-hammer-hammer-cobalt-2h = Cobalt Hammer + .desc = {""} + +weapon-hammer-hammer-cobalt-1h = Cobalt Club + .desc = {""} + +weapon-hammer-greatmace-cobalt-2h = Cobalt Greatmace + .desc = {""} + +weapon-hammer-spikedmace-cobalt-2h = Cobalt Spiked Mace + .desc = {""} + +weapon-hammer-spikedmace-cobalt-1h = Cobalt Mace + .desc = {""} + +weapon-hammer-greathammer-cobalt-2h = Cobalt Greathammer + .desc = {""} + +weapon-hammer-maul-cobalt-2h = Cobalt Maul + .desc = {""} + +weapon-hammer-warhammer-cobalt-2h = Cobalt Warhammer + .desc = {""} + +weapon-hammer-warhammer-cobalt-1h = Cobalt Mallet + .desc = {""} + +weapon-staff-ornate-wood = Wooden Ornate Staff + .desc = {""} + +weapon-staff-pole-wood = Wooden Pole + .desc = {""} + +weapon-staff-rod-wood = Wooden Rod + .desc = {""} + +weapon-staff-brand-wood = Wooden Brand + .desc = {""} + +weapon-staff-grandstaff-wood = Wooden Grandstaff + .desc = {""} + +weapon-staff-staff-wood = Wooden Staff + .desc = {""} + +weapon-staff-longpole-wood = Wooden Longpole + .desc = {""} + +weapon-hammer-ornate-steel-2h = Steel Ornate Hammer + .desc = {""} + +weapon-hammer-ornate-steel-1h = Steel Cudgel + .desc = {""} + +weapon-hammer-hammer-steel-2h = Steel Hammer + .desc = {""} + +weapon-hammer-hammer-steel-1h = Steel Club + .desc = {""} + +weapon-hammer-greathammer-steel-2h = Steel Greathammer + .desc = {""} + +weapon-hammer-spikedmace-steel-2h = Steel Spiked Mace + .desc = {""} + +weapon-hammer-spikedmace-steel-1h = Steel Mace + .desc = {""} + +weapon-hammer-greatmace-steel-2h = Steel Greatmace + .desc = {""} + +weapon-hammer-maul-steel-2h = Steel Maul + .desc = {""} + +weapon-hammer-warhammer-steel-2h = Steel Warhammer + .desc = {""} + +weapon-hammer-warhammer-steel-1h = Steel Mallet + .desc = {""} + +weapon-sceptre-grandsceptre-bamboo = Bamboo Grandsceptre + .desc = {""} + +weapon-sceptre-cane-bamboo = Bamboo Cane + .desc = {""} + +weapon-sceptre-crozier-bamboo = Bamboo Crozier + .desc = {""} + +weapon-sceptre-crook-bamboo = Bamboo Crook + .desc = {""} + +weapon-sceptre-sceptre-bamboo = Bamboo Sceptre + .desc = {""} + +weapon-sceptre-arbor-bamboo = Bamboo Arbor + .desc = {""} + +weapon-sceptre-ornate-bamboo = Bamboo Ornate Sceptre + .desc = {""} + +weapon-staff-grandstaff-ironwood = Ironwood Grandstaff + .desc = {""} + +weapon-staff-rod-ironwood = Ironwood Rod + .desc = {""} + +weapon-staff-brand-ironwood = Ironwood Brand + .desc = {""} + +weapon-staff-longpole-ironwood = Ironwood Longpole + .desc = {""} + +weapon-staff-staff-ironwood = Ironwood Staff + .desc = {""} + +weapon-staff-pole-ironwood = Ironwood Pole + .desc = {""} + +weapon-staff-ornate-ironwood = Ironwood Ornate Staff + .desc = {""} + +weapon-staff-ornate-eldwood = Eldwood Ornate Staff + .desc = {""} + +weapon-staff-longpole-eldwood = Eldwood Longpole + .desc = {""} + +weapon-staff-rod-eldwood = Eldwood Rod + .desc = {""} + +weapon-staff-pole-eldwood = Eldwood Pole + .desc = {""} + +weapon-staff-staff-eldwood = Eldwood Staff + .desc = {""} + +weapon-staff-brand-eldwood = Eldwood Brand + .desc = {""} + +weapon-staff-grandstaff-eldwood = Eldwood Grandstaff + .desc = {""} + +weapon-sceptre-arbor-eldwood = Eldwood Arbor + .desc = {""} + +weapon-sceptre-crook-eldwood = Eldwood Crook + .desc = {""} + +weapon-sceptre-crozier-eldwood = Eldwood Crozier + .desc = {""} + +weapon-sceptre-cane-eldwood = Eldwood Cane + .desc = {""} + +weapon-sceptre-grandsceptre-eldwood = Eldwood Grandsceptre + .desc = {""} + +weapon-sceptre-ornate-eldwood = Eldwood Ornate Sceptre + .desc = {""} + +weapon-sceptre-sceptre-eldwood = Eldwood Sceptre + .desc = {""} + +weapon-sword-sabre-bloodsteel-2h = Bloodsteel Sabre + .desc = {""} + +weapon-sword-sabre-bloodsteel-1h = Bloodsteel Scimitar + .desc = {""} + +weapon-sword-zweihander-bloodsteel-2h = Bloodsteel Zweihander + .desc = {""} + +weapon-sword-greatsword-bloodsteel-2h = Bloodsteel Greatsword + .desc = {""} + +weapon-sword-katana-bloodsteel-2h = Bloodsteel Katana + .desc = {""} + +weapon-sword-katana-bloodsteel-1h = Bloodsteel Swiftblade + .desc = {""} + +weapon-sword-longsword-bloodsteel-2h = Bloodsteel Longsword + .desc = {""} + +weapon-sword-longsword-bloodsteel-1h = Bloodsteel Shortsword + .desc = {""} + +weapon-sword-ornate-bloodsteel-2h = Bloodsteel Ornate Sword + .desc = {""} + +weapon-sword-ornate-bloodsteel-1h = Bloodsteel Rapier + .desc = {""} + +weapon-sword-sawblade-bloodsteel-2h = Bloodsteel Sawblade + .desc = {""} + +weapon-sword-sawblade-bloodsteel-1h = Bloodsteel Sawback + .desc = {""} + +weapon-sword-sabre-orichalcum-2h = Orichalcum Sabre + .desc = {""} + +weapon-sword-sabre-orichalcum-1h = Orichalcum Scimitar + .desc = {""} + +weapon-sword-greatsword-orichalcum-2h = Orichalcum Greatsword + .desc = {""} + +weapon-sword-sawblade-orichalcum-2h = Orichalcum Sawblade + .desc = {""} + +weapon-sword-sawblade-orichalcum-1h = Orichalcum Sawback + .desc = {""} + +weapon-sword-longsword-orichalcum-2h = Orichalcum Longsword + .desc = {""} + +weapon-sword-longsword-orichalcum-1h = Orichalcum Shortsword + .desc = {""} + +weapon-sword-katana-orichalcum-2h = Orichalcum Katana + .desc = {""} + +weapon-sword-katana-orichalcum-1h = Orichalcum Swiftblade + .desc = {""} + +weapon-sword-zweihander-orichalcum-2h = Orichalcum Zweihander + .desc = {""} + +weapon-sword-ornate-orichalcum-2h = Orichalcum Ornate Sword + .desc = {""} + +weapon-sword-ornate-orichalcum-1h = Orichalcum Rapier + .desc = {""} + +weapon-axe-poleaxe-bronze-2h = Bronze Poleaxe + .desc = {""} + +weapon-axe-ornate-bronze-2h = Bronze Ornate Axe + .desc = {""} + +weapon-axe-ornate-bronze-1h = Bronze Kilonda + .desc = {""} + +weapon-axe-labrys-bronze-2h = Bronze Labrys + .desc = {""} + +weapon-axe-battleaxe-bronze-2h = Bronze Battleaxe + .desc = {""} + +weapon-axe-battleaxe-bronze-1h = Bronze Cleaver + .desc = {""} + +weapon-axe-axe-bronze-2h = Bronze Axe + .desc = {""} + +weapon-axe-axe-bronze-1h = Bronze Hatchet + .desc = {""} + +weapon-axe-jagged-bronze-2h = Bronze Jagged Axe + .desc = {""} + +weapon-axe-jagged-bronze-1h = Bronze Tomahawk + .desc = {""} + +weapon-axe-greataxe-bronze-2h = Bronze Greataxe + .desc = {""} + +weapon-sceptre-sceptre-hardwood = Hardwood Sceptre + .desc = {""} + +weapon-sceptre-cane-hardwood = Hardwood Cane + .desc = {""} + +weapon-sceptre-arbor-hardwood = Hardwood Arbor + .desc = {""} + +weapon-sceptre-crozier-hardwood = Hardwood Crozier + .desc = {""} + +weapon-sceptre-ornate-hardwood = Hardwood Ornate Sceptre + .desc = {""} + +weapon-sceptre-crook-hardwood = Hardwood Crook + .desc = {""} + +weapon-sceptre-grandsceptre-hardwood = Hardwood Grandsceptre + .desc = {""} + +weapon-sword-longsword-cobalt-2h = Cobalt Longsword + .desc = {""} + +weapon-sword-longsword-cobalt-1h = Cobalt Shortsword + .desc = {""} + +weapon-sword-sawblade-cobalt-2h = Cobalt Sawblade + .desc = {""} + +weapon-sword-sawblade-cobalt-1h = Cobalt Sawback + .desc = {""} + +weapon-sword-greatsword-cobalt-2h = Cobalt Greatsword + .desc = {""} + +weapon-sword-katana-cobalt-2h = Cobalt Katana + .desc = {""} + +weapon-sword-katana-cobalt-1h = Cobalt Swiftblade + .desc = {""} + +weapon-sword-zweihander-cobalt-2h = Cobalt Zweihander + .desc = {""} + +weapon-sword-ornate-cobalt-2h = Cobalt Ornate Sword + .desc = {""} + +weapon-sword-ornate-cobalt-1h = Cobalt Rapier + .desc = {""} + +weapon-sword-sabre-cobalt-2h = Cobalt Sabre + .desc = {""} + +weapon-sword-sabre-cobalt-1h = Cobalt Scimitar + .desc = {""} From 7228543fbf1f54188a205e75436634cde71e0100 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sat, 13 Jan 2024 20:22:50 +0200 Subject: [PATCH 11/13] Mark legacy item asset content --- assets/common/items/armor/alchemist/belt.ron | 4 ++-- assets/common/items/armor/alchemist/chest.ron | 4 ++-- assets/common/items/armor/alchemist/hat.ron | 4 ++-- assets/common/items/armor/alchemist/pants.ron | 4 ++-- assets/common/items/armor/assassin/belt.ron | 4 ++-- assets/common/items/armor/assassin/chest.ron | 4 ++-- assets/common/items/armor/assassin/foot.ron | 4 ++-- assets/common/items/armor/assassin/hand.ron | 4 ++-- assets/common/items/armor/assassin/head.ron | 4 ++-- assets/common/items/armor/assassin/pants.ron | 4 ++-- assets/common/items/armor/assassin/shoulder.ron | 4 ++-- assets/common/items/armor/blacksmith/belt.ron | 4 ++-- assets/common/items/armor/blacksmith/chest.ron | 4 ++-- assets/common/items/armor/blacksmith/hand.ron | 4 ++-- assets/common/items/armor/blacksmith/hat.ron | 4 ++-- assets/common/items/armor/blacksmith/pants.ron | 4 ++-- assets/common/items/armor/bonerattler/belt.ron | 4 ++-- assets/common/items/armor/bonerattler/chest.ron | 4 ++-- assets/common/items/armor/bonerattler/foot.ron | 4 ++-- assets/common/items/armor/bonerattler/hand.ron | 4 ++-- assets/common/items/armor/bonerattler/pants.ron | 4 ++-- assets/common/items/armor/bonerattler/shoulder.ron | 4 ++-- assets/common/items/armor/boreal/back.ron | 4 ++-- assets/common/items/armor/boreal/belt.ron | 4 ++-- assets/common/items/armor/boreal/chest.ron | 4 ++-- assets/common/items/armor/boreal/foot.ron | 4 ++-- assets/common/items/armor/boreal/hand.ron | 4 ++-- assets/common/items/armor/boreal/pants.ron | 4 ++-- assets/common/items/armor/boreal/shoulder.ron | 4 ++-- assets/common/items/armor/brinestone/back.ron | 4 ++-- assets/common/items/armor/brinestone/belt.ron | 4 ++-- assets/common/items/armor/brinestone/chest.ron | 4 ++-- assets/common/items/armor/brinestone/crown.ron | 4 ++-- assets/common/items/armor/brinestone/foot.ron | 4 ++-- assets/common/items/armor/brinestone/hand.ron | 4 ++-- assets/common/items/armor/brinestone/pants.ron | 4 ++-- assets/common/items/armor/brinestone/shoulder.ron | 4 ++-- assets/common/items/armor/cardinal/belt.ron | 4 ++-- assets/common/items/armor/cardinal/chest.ron | 4 ++-- assets/common/items/armor/cardinal/foot.ron | 4 ++-- assets/common/items/armor/cardinal/hand.ron | 4 ++-- assets/common/items/armor/cardinal/mitre.ron | 4 ++-- assets/common/items/armor/cardinal/pants.ron | 4 ++-- assets/common/items/armor/cardinal/shoulder.ron | 4 ++-- assets/common/items/armor/chef/belt.ron | 4 ++-- assets/common/items/armor/chef/chest.ron | 4 ++-- assets/common/items/armor/chef/hat.ron | 4 ++-- assets/common/items/armor/chef/pants.ron | 4 ++-- assets/common/items/armor/cloth/druid/back.ron | 4 ++-- assets/common/items/armor/cloth/druid/belt.ron | 4 ++-- assets/common/items/armor/cloth/druid/chest.ron | 4 ++-- assets/common/items/armor/cloth/druid/foot.ron | 4 ++-- assets/common/items/armor/cloth/druid/hand.ron | 4 ++-- assets/common/items/armor/cloth/druid/pants.ron | 4 ++-- assets/common/items/armor/cloth/druid/shoulder.ron | 4 ++-- assets/common/items/armor/cloth/linen/back.ron | 4 ++-- assets/common/items/armor/cloth/linen/belt.ron | 4 ++-- assets/common/items/armor/cloth/linen/chest.ron | 4 ++-- assets/common/items/armor/cloth/linen/foot.ron | 4 ++-- assets/common/items/armor/cloth/linen/hand.ron | 4 ++-- assets/common/items/armor/cloth/linen/pants.ron | 4 ++-- assets/common/items/armor/cloth/linen/shoulder.ron | 4 ++-- assets/common/items/armor/cloth/moonweave/back.ron | 4 ++-- assets/common/items/armor/cloth/moonweave/belt.ron | 4 ++-- assets/common/items/armor/cloth/moonweave/chest.ron | 4 ++-- assets/common/items/armor/cloth/moonweave/foot.ron | 4 ++-- assets/common/items/armor/cloth/moonweave/hand.ron | 4 ++-- assets/common/items/armor/cloth/moonweave/pants.ron | 4 ++-- assets/common/items/armor/cloth/moonweave/shoulder.ron | 4 ++-- assets/common/items/armor/cloth/silken/back.ron | 4 ++-- assets/common/items/armor/cloth/silken/belt.ron | 4 ++-- assets/common/items/armor/cloth/silken/chest.ron | 4 ++-- assets/common/items/armor/cloth/silken/foot.ron | 4 ++-- assets/common/items/armor/cloth/silken/hand.ron | 4 ++-- assets/common/items/armor/cloth/silken/pants.ron | 4 ++-- assets/common/items/armor/cloth/silken/shoulder.ron | 4 ++-- assets/common/items/armor/cloth/sunsilk/back.ron | 4 ++-- assets/common/items/armor/cloth/sunsilk/belt.ron | 4 ++-- assets/common/items/armor/cloth/sunsilk/chest.ron | 4 ++-- assets/common/items/armor/cloth/sunsilk/foot.ron | 4 ++-- assets/common/items/armor/cloth/sunsilk/hand.ron | 4 ++-- assets/common/items/armor/cloth/sunsilk/pants.ron | 4 ++-- assets/common/items/armor/cloth/sunsilk/shoulder.ron | 4 ++-- assets/common/items/armor/cloth/woolen/back.ron | 4 ++-- assets/common/items/armor/cloth/woolen/belt.ron | 4 ++-- assets/common/items/armor/cloth/woolen/chest.ron | 4 ++-- assets/common/items/armor/cloth/woolen/foot.ron | 4 ++-- assets/common/items/armor/cloth/woolen/hand.ron | 4 ++-- assets/common/items/armor/cloth/woolen/pants.ron | 4 ++-- assets/common/items/armor/cloth/woolen/shoulder.ron | 4 ++-- assets/common/items/armor/cloth_blue/belt.ron | 4 ++-- assets/common/items/armor/cloth_blue/chest.ron | 4 ++-- assets/common/items/armor/cloth_blue/foot.ron | 4 ++-- assets/common/items/armor/cloth_blue/hand.ron | 4 ++-- assets/common/items/armor/cloth_blue/pants.ron | 4 ++-- assets/common/items/armor/cloth_blue/shoulder_0.ron | 4 ++-- assets/common/items/armor/cloth_blue/shoulder_1.ron | 4 ++-- assets/common/items/armor/cloth_green/belt.ron | 4 ++-- assets/common/items/armor/cloth_green/chest.ron | 4 ++-- assets/common/items/armor/cloth_green/foot.ron | 4 ++-- assets/common/items/armor/cloth_green/hand.ron | 4 ++-- assets/common/items/armor/cloth_green/pants.ron | 4 ++-- assets/common/items/armor/cloth_green/shoulder.ron | 4 ++-- assets/common/items/armor/cloth_purple/belt.ron | 4 ++-- assets/common/items/armor/cloth_purple/chest.ron | 4 ++-- assets/common/items/armor/cloth_purple/foot.ron | 4 ++-- assets/common/items/armor/cloth_purple/hand.ron | 4 ++-- assets/common/items/armor/cloth_purple/pants.ron | 4 ++-- assets/common/items/armor/cloth_purple/shoulder.ron | 4 ++-- assets/common/items/armor/cultist/bandana.ron | 4 ++-- assets/common/items/armor/cultist/belt.ron | 4 ++-- assets/common/items/armor/cultist/chest.ron | 4 ++-- assets/common/items/armor/cultist/foot.ron | 4 ++-- assets/common/items/armor/cultist/hand.ron | 4 ++-- assets/common/items/armor/cultist/necklace.ron | 4 ++-- assets/common/items/armor/cultist/pants.ron | 4 ++-- assets/common/items/armor/cultist/ring.ron | 4 ++-- assets/common/items/armor/cultist/shoulder.ron | 4 ++-- assets/common/items/armor/ferocious/back.ron | 4 ++-- assets/common/items/armor/ferocious/belt.ron | 4 ++-- assets/common/items/armor/ferocious/chest.ron | 4 ++-- assets/common/items/armor/ferocious/foot.ron | 4 ++-- assets/common/items/armor/ferocious/hand.ron | 4 ++-- assets/common/items/armor/ferocious/pants.ron | 4 ++-- assets/common/items/armor/ferocious/shoulder.ron | 4 ++-- assets/common/items/armor/hide/carapace/back.ron | 4 ++-- assets/common/items/armor/hide/carapace/belt.ron | 4 ++-- assets/common/items/armor/hide/carapace/chest.ron | 4 ++-- assets/common/items/armor/hide/carapace/foot.ron | 4 ++-- assets/common/items/armor/hide/carapace/hand.ron | 4 ++-- assets/common/items/armor/hide/carapace/pants.ron | 4 ++-- assets/common/items/armor/hide/carapace/shoulder.ron | 4 ++-- assets/common/items/armor/hide/dragonscale/back.ron | 4 ++-- assets/common/items/armor/hide/dragonscale/belt.ron | 4 ++-- assets/common/items/armor/hide/dragonscale/chest.ron | 4 ++-- assets/common/items/armor/hide/dragonscale/foot.ron | 4 ++-- assets/common/items/armor/hide/dragonscale/hand.ron | 4 ++-- assets/common/items/armor/hide/dragonscale/pants.ron | 4 ++-- assets/common/items/armor/hide/dragonscale/shoulder.ron | 4 ++-- assets/common/items/armor/hide/leather/back.ron | 4 ++-- assets/common/items/armor/hide/leather/belt.ron | 4 ++-- assets/common/items/armor/hide/leather/chest.ron | 4 ++-- assets/common/items/armor/hide/leather/foot.ron | 4 ++-- assets/common/items/armor/hide/leather/hand.ron | 4 ++-- assets/common/items/armor/hide/leather/head.ron | 4 ++-- assets/common/items/armor/hide/leather/pants.ron | 4 ++-- assets/common/items/armor/hide/leather/shoulder.ron | 4 ++-- assets/common/items/armor/hide/primal/back.ron | 4 ++-- assets/common/items/armor/hide/primal/belt.ron | 4 ++-- assets/common/items/armor/hide/primal/chest.ron | 4 ++-- assets/common/items/armor/hide/primal/foot.ron | 4 ++-- assets/common/items/armor/hide/primal/hand.ron | 4 ++-- assets/common/items/armor/hide/primal/pants.ron | 4 ++-- assets/common/items/armor/hide/primal/shoulder.ron | 4 ++-- assets/common/items/armor/hide/rawhide/back.ron | 4 ++-- assets/common/items/armor/hide/rawhide/belt.ron | 4 ++-- assets/common/items/armor/hide/rawhide/chest.ron | 4 ++-- assets/common/items/armor/hide/rawhide/foot.ron | 4 ++-- assets/common/items/armor/hide/rawhide/hand.ron | 4 ++-- assets/common/items/armor/hide/rawhide/pants.ron | 4 ++-- assets/common/items/armor/hide/rawhide/shoulder.ron | 4 ++-- assets/common/items/armor/hide/scale/back.ron | 4 ++-- assets/common/items/armor/hide/scale/belt.ron | 4 ++-- assets/common/items/armor/hide/scale/chest.ron | 4 ++-- assets/common/items/armor/hide/scale/foot.ron | 4 ++-- assets/common/items/armor/hide/scale/hand.ron | 4 ++-- assets/common/items/armor/hide/scale/pants.ron | 4 ++-- assets/common/items/armor/hide/scale/shoulder.ron | 4 ++-- assets/common/items/armor/leather_plate/belt.ron | 4 ++-- assets/common/items/armor/leather_plate/chest.ron | 4 ++-- assets/common/items/armor/leather_plate/foot.ron | 4 ++-- assets/common/items/armor/leather_plate/hand.ron | 4 ++-- assets/common/items/armor/leather_plate/helmet.ron | 4 ++-- assets/common/items/armor/leather_plate/pants.ron | 4 ++-- assets/common/items/armor/leather_plate/shoulder.ron | 4 ++-- assets/common/items/armor/mail/bloodsteel/back.ron | 4 ++-- assets/common/items/armor/mail/bloodsteel/belt.ron | 4 ++-- assets/common/items/armor/mail/bloodsteel/chest.ron | 4 ++-- assets/common/items/armor/mail/bloodsteel/foot.ron | 4 ++-- assets/common/items/armor/mail/bloodsteel/hand.ron | 4 ++-- assets/common/items/armor/mail/bloodsteel/pants.ron | 4 ++-- assets/common/items/armor/mail/bloodsteel/shoulder.ron | 4 ++-- assets/common/items/armor/mail/bronze/back.ron | 4 ++-- assets/common/items/armor/mail/bronze/belt.ron | 4 ++-- assets/common/items/armor/mail/bronze/chest.ron | 4 ++-- assets/common/items/armor/mail/bronze/foot.ron | 4 ++-- assets/common/items/armor/mail/bronze/hand.ron | 4 ++-- assets/common/items/armor/mail/bronze/pants.ron | 4 ++-- assets/common/items/armor/mail/bronze/shoulder.ron | 4 ++-- assets/common/items/armor/mail/cobalt/back.ron | 4 ++-- assets/common/items/armor/mail/cobalt/belt.ron | 4 ++-- assets/common/items/armor/mail/cobalt/chest.ron | 4 ++-- assets/common/items/armor/mail/cobalt/foot.ron | 4 ++-- assets/common/items/armor/mail/cobalt/hand.ron | 4 ++-- assets/common/items/armor/mail/cobalt/pants.ron | 4 ++-- assets/common/items/armor/mail/cobalt/shoulder.ron | 4 ++-- assets/common/items/armor/mail/iron/back.ron | 4 ++-- assets/common/items/armor/mail/iron/belt.ron | 4 ++-- assets/common/items/armor/mail/iron/chest.ron | 4 ++-- assets/common/items/armor/mail/iron/foot.ron | 4 ++-- assets/common/items/armor/mail/iron/hand.ron | 4 ++-- assets/common/items/armor/mail/iron/pants.ron | 4 ++-- assets/common/items/armor/mail/iron/shoulder.ron | 4 ++-- assets/common/items/armor/mail/orichalcum/back.ron | 4 ++-- assets/common/items/armor/mail/orichalcum/belt.ron | 4 ++-- assets/common/items/armor/mail/orichalcum/chest.ron | 4 ++-- assets/common/items/armor/mail/orichalcum/foot.ron | 4 ++-- assets/common/items/armor/mail/orichalcum/hand.ron | 4 ++-- assets/common/items/armor/mail/orichalcum/pants.ron | 4 ++-- assets/common/items/armor/mail/orichalcum/shoulder.ron | 4 ++-- assets/common/items/armor/mail/steel/back.ron | 4 ++-- assets/common/items/armor/mail/steel/belt.ron | 4 ++-- assets/common/items/armor/mail/steel/chest.ron | 4 ++-- assets/common/items/armor/mail/steel/foot.ron | 4 ++-- assets/common/items/armor/mail/steel/hand.ron | 4 ++-- assets/common/items/armor/mail/steel/pants.ron | 4 ++-- assets/common/items/armor/mail/steel/shoulder.ron | 4 ++-- assets/common/items/armor/merchant/back.ron | 4 ++-- assets/common/items/armor/merchant/belt.ron | 4 ++-- assets/common/items/armor/merchant/chest.ron | 4 ++-- assets/common/items/armor/merchant/foot.ron | 4 ++-- assets/common/items/armor/merchant/hand.ron | 4 ++-- assets/common/items/armor/merchant/pants.ron | 4 ++-- assets/common/items/armor/merchant/shoulder.ron | 4 ++-- assets/common/items/armor/merchant/turban.ron | 4 ++-- assets/common/items/armor/miner/back.ron | 4 ++-- assets/common/items/armor/miner/belt.ron | 4 ++-- assets/common/items/armor/miner/chest.ron | 4 ++-- assets/common/items/armor/miner/foot.ron | 4 ++-- assets/common/items/armor/miner/hand.ron | 4 ++-- assets/common/items/armor/miner/helmet.ron | 4 ++-- assets/common/items/armor/miner/pants.ron | 4 ++-- assets/common/items/armor/miner/shoulder.ron | 4 ++-- assets/common/items/armor/miner/shoulder_captain.ron | 4 ++-- assets/common/items/armor/miner/shoulder_flame.ron | 4 ++-- assets/common/items/armor/miner/shoulder_overseer.ron | 4 ++-- assets/common/items/armor/misc/back/admin.ron | 4 ++-- assets/common/items/armor/misc/back/backpack.ron | 4 ++-- assets/common/items/armor/misc/back/dungeon_purple.ron | 4 ++-- assets/common/items/armor/misc/back/short_0.ron | 4 ++-- assets/common/items/armor/misc/back/short_1.ron | 4 ++-- assets/common/items/armor/misc/bag/heavy_seabag.ron | 4 ++-- assets/common/items/armor/misc/bag/knitted_red_pouch.ron | 4 ++-- assets/common/items/armor/misc/bag/liana_kit.ron | 4 ++-- assets/common/items/armor/misc/bag/mindflayer_spellbag.ron | 4 ++-- assets/common/items/armor/misc/bag/reliable_backpack.ron | 4 ++-- .../common/items/armor/misc/bag/reliable_leather_pack.ron | 4 ++-- assets/common/items/armor/misc/bag/soulkeeper_cursed.ron | 4 ++-- assets/common/items/armor/misc/bag/soulkeeper_pure.ron | 4 ++-- assets/common/items/armor/misc/bag/sturdy_red_backpack.ron | 4 ++-- assets/common/items/armor/misc/bag/tiny_leather_pouch.ron | 4 ++-- assets/common/items/armor/misc/bag/tiny_red_pouch.ron | 4 ++-- assets/common/items/armor/misc/bag/troll_hide_pack.ron | 4 ++-- assets/common/items/armor/misc/bag/woven_red_bag.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_green_0.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_green_1.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_orange_0.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_orange_1.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_purple_0.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_purple_1.ron | 4 ++-- .../common/items/armor/misc/chest/worker_purple_brown.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_red_0.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_red_1.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_yellow_0.ron | 4 ++-- assets/common/items/armor/misc/chest/worker_yellow_1.ron | 4 ++-- assets/common/items/armor/misc/foot/iceskate.ron | 4 ++-- assets/common/items/armor/misc/foot/jackalope_slippers.ron | 4 ++-- assets/common/items/armor/misc/foot/sandals.ron | 4 ++-- assets/common/items/armor/misc/foot/ski.ron | 4 ++-- assets/common/items/armor/misc/head/bamboo_twig.ron | 4 ++-- assets/common/items/armor/misc/head/bandana/red.ron | 4 ++-- assets/common/items/armor/misc/head/bandana/thief.ron | 4 ++-- assets/common/items/armor/misc/head/bear_bonnet.ron | 4 ++-- assets/common/items/armor/misc/head/boreal_warhelm.ron | 4 ++-- assets/common/items/armor/misc/head/crown.ron | 4 ++-- assets/common/items/armor/misc/head/exclamation.ron | 4 ++-- assets/common/items/armor/misc/head/facegourd.ron | 4 ++-- assets/common/items/armor/misc/head/gnarling_mask.ron | 4 ++-- assets/common/items/armor/misc/head/headband.ron | 4 ++-- assets/common/items/armor/misc/head/helmet.ron | 4 ++-- assets/common/items/armor/misc/head/hog_hood.ron | 4 ++-- assets/common/items/armor/misc/head/hood.ron | 4 ++-- assets/common/items/armor/misc/head/hood_dark.ron | 4 ++-- assets/common/items/armor/misc/head/howl_cowl.ron | 4 ++-- assets/common/items/armor/misc/head/mitre.ron | 4 ++-- assets/common/items/armor/misc/head/spikeguard.ron | 4 ++-- assets/common/items/armor/misc/head/straw.ron | 4 ++-- assets/common/items/armor/misc/head/wanderers_hat.ron | 4 ++-- assets/common/items/armor/misc/head/winged_coronet.ron | 4 ++-- assets/common/items/armor/misc/neck/abyssal_gorget.ron | 4 ++-- assets/common/items/armor/misc/neck/amethyst.ron | 4 ++-- assets/common/items/armor/misc/neck/ankh_of_life.ron | 4 ++-- assets/common/items/armor/misc/neck/carcanet_of_wrath.ron | 4 ++-- assets/common/items/armor/misc/neck/diamond.ron | 4 ++-- assets/common/items/armor/misc/neck/emerald.ron | 4 ++-- assets/common/items/armor/misc/neck/fang.ron | 4 ++-- assets/common/items/armor/misc/neck/gem_of_resilience.ron | 4 ++-- assets/common/items/armor/misc/neck/gold.ron | 4 ++-- assets/common/items/armor/misc/neck/haniwa_talisman.ron | 4 ++-- assets/common/items/armor/misc/neck/honeycomb_pendant.ron | 4 ++-- .../common/items/armor/misc/neck/pendant_of_protection.ron | 4 ++-- assets/common/items/armor/misc/neck/ruby.ron | 4 ++-- assets/common/items/armor/misc/neck/sapphire.ron | 4 ++-- assets/common/items/armor/misc/neck/scratched.ron | 4 ++-- assets/common/items/armor/misc/neck/shell.ron | 4 ++-- assets/common/items/armor/misc/neck/topaz.ron | 4 ++-- assets/common/items/armor/misc/pants/hunting.ron | 4 ++-- assets/common/items/armor/misc/pants/worker_blue.ron | 4 ++-- assets/common/items/armor/misc/pants/worker_brown.ron | 4 ++-- assets/common/items/armor/misc/ring/amethyst.ron | 4 ++-- assets/common/items/armor/misc/ring/diamond.ron | 4 ++-- assets/common/items/armor/misc/ring/emerald.ron | 4 ++-- assets/common/items/armor/misc/ring/gold.ron | 4 ++-- assets/common/items/armor/misc/ring/ruby.ron | 4 ++-- assets/common/items/armor/misc/ring/sapphire.ron | 4 ++-- assets/common/items/armor/misc/ring/scratched.ron | 4 ++-- assets/common/items/armor/misc/ring/topaz.ron | 4 ++-- assets/common/items/armor/misc/shoulder/iron_spikes.ron | 4 ++-- assets/common/items/armor/misc/shoulder/leather_iron_0.ron | 4 ++-- assets/common/items/armor/misc/shoulder/leather_iron_1.ron | 4 ++-- assets/common/items/armor/misc/shoulder/leather_iron_2.ron | 4 ++-- assets/common/items/armor/misc/shoulder/leather_iron_3.ron | 4 ++-- assets/common/items/armor/misc/shoulder/leather_strip.ron | 4 ++-- assets/common/items/armor/misc/tabard/admin.ron | 4 ++-- assets/common/items/armor/pirate/belt.ron | 4 ++-- assets/common/items/armor/pirate/chest.ron | 4 ++-- assets/common/items/armor/pirate/foot.ron | 4 ++-- assets/common/items/armor/pirate/hand.ron | 4 ++-- assets/common/items/armor/pirate/hat.ron | 4 ++-- assets/common/items/armor/pirate/pants.ron | 4 ++-- assets/common/items/armor/pirate/shoulder.ron | 4 ++-- assets/common/items/armor/rugged/chest.ron | 4 ++-- assets/common/items/armor/rugged/pants.ron | 4 ++-- assets/common/items/armor/savage/back.ron | 4 ++-- assets/common/items/armor/savage/belt.ron | 4 ++-- assets/common/items/armor/savage/chest.ron | 4 ++-- assets/common/items/armor/savage/foot.ron | 4 ++-- assets/common/items/armor/savage/hand.ron | 4 ++-- assets/common/items/armor/savage/pants.ron | 4 ++-- assets/common/items/armor/savage/shoulder.ron | 4 ++-- assets/common/items/armor/tarasque/belt.ron | 4 ++-- assets/common/items/armor/tarasque/chest.ron | 4 ++-- assets/common/items/armor/tarasque/foot.ron | 4 ++-- assets/common/items/armor/tarasque/hand.ron | 4 ++-- assets/common/items/armor/tarasque/pants.ron | 4 ++-- assets/common/items/armor/tarasque/shoulder.ron | 4 ++-- assets/common/items/armor/twigs/belt.ron | 4 ++-- assets/common/items/armor/twigs/chest.ron | 4 ++-- assets/common/items/armor/twigs/foot.ron | 4 ++-- assets/common/items/armor/twigs/hand.ron | 4 ++-- assets/common/items/armor/twigs/pants.ron | 4 ++-- assets/common/items/armor/twigs/shoulder.ron | 4 ++-- assets/common/items/armor/twigsflowers/belt.ron | 4 ++-- assets/common/items/armor/twigsflowers/chest.ron | 4 ++-- assets/common/items/armor/twigsflowers/foot.ron | 4 ++-- assets/common/items/armor/twigsflowers/hand.ron | 4 ++-- assets/common/items/armor/twigsflowers/pants.ron | 4 ++-- assets/common/items/armor/twigsflowers/shoulder.ron | 4 ++-- assets/common/items/armor/twigsleaves/belt.ron | 4 ++-- assets/common/items/armor/twigsleaves/chest.ron | 4 ++-- assets/common/items/armor/twigsleaves/foot.ron | 4 ++-- assets/common/items/armor/twigsleaves/hand.ron | 4 ++-- assets/common/items/armor/twigsleaves/pants.ron | 4 ++-- assets/common/items/armor/twigsleaves/shoulder.ron | 4 ++-- assets/common/items/armor/velorite_mage/back.ron | 4 ++-- assets/common/items/armor/velorite_mage/belt.ron | 4 ++-- assets/common/items/armor/velorite_mage/chest.ron | 4 ++-- assets/common/items/armor/velorite_mage/foot.ron | 4 ++-- assets/common/items/armor/velorite_mage/hand.ron | 4 ++-- assets/common/items/armor/velorite_mage/pants.ron | 4 ++-- assets/common/items/armor/velorite_mage/shoulder.ron | 4 ++-- assets/common/items/armor/witch/back.ron | 4 ++-- assets/common/items/armor/witch/belt.ron | 4 ++-- assets/common/items/armor/witch/chest.ron | 4 ++-- assets/common/items/armor/witch/foot.ron | 4 ++-- assets/common/items/armor/witch/hand.ron | 4 ++-- assets/common/items/armor/witch/hat.ron | 4 ++-- assets/common/items/armor/witch/pants.ron | 4 ++-- assets/common/items/armor/witch/shoulder.ron | 4 ++-- assets/common/items/boss_drops/exp_flask.ron | 4 ++-- assets/common/items/boss_drops/lantern.ron | 4 ++-- assets/common/items/boss_drops/potions.ron | 4 ++-- assets/common/items/boss_drops/xp_potion.ron | 4 ++-- .../calendar/christmas/armor/misc/head/woolly_wintercap.ron | 4 ++-- assets/common/items/charms/burning_charm.ron | 4 ++-- assets/common/items/charms/frozen_charm.ron | 4 ++-- assets/common/items/charms/lifesteal_charm.ron | 4 ++-- assets/common/items/consumable/curious_potion.ron | 4 ++-- assets/common/items/consumable/potion_agility.ron | 4 ++-- assets/common/items/consumable/potion_big.ron | 4 ++-- assets/common/items/consumable/potion_combustion.ron | 4 ++-- assets/common/items/consumable/potion_med.ron | 4 ++-- assets/common/items/consumable/potion_minor.ron | 4 ++-- assets/common/items/crafting_ing/abyssal_heart.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/bone.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/claw.ron | 4 ++-- .../common/items/crafting_ing/animal_misc/elegant_crest.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/ember.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/feather.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/fur.ron | 4 ++-- .../common/items/crafting_ing/animal_misc/grim_eyeball.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/icy_fang.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/large_horn.ron | 4 ++-- .../common/items/crafting_ing/animal_misc/lively_vine.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/long_tusk.ron | 4 ++-- .../items/crafting_ing/animal_misc/phoenix_feather.ron | 4 ++-- .../items/crafting_ing/animal_misc/raptor_feather.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/sharp_fang.ron | 4 ++-- .../common/items/crafting_ing/animal_misc/strong_pincer.ron | 4 ++-- assets/common/items/crafting_ing/animal_misc/venom_sac.ron | 4 ++-- .../common/items/crafting_ing/animal_misc/viscous_ooze.ron | 4 ++-- assets/common/items/crafting_ing/bowl.ron | 4 ++-- assets/common/items/crafting_ing/brinestone.ron | 4 ++-- assets/common/items/crafting_ing/cactus.ron | 4 ++-- assets/common/items/crafting_ing/cloth/cloth_strips.ron | 4 ++-- assets/common/items/crafting_ing/cloth/cotton.ron | 4 ++-- assets/common/items/crafting_ing/cloth/lifecloth.ron | 4 ++-- assets/common/items/crafting_ing/cloth/linen.ron | 4 ++-- assets/common/items/crafting_ing/cloth/linen_red.ron | 4 ++-- assets/common/items/crafting_ing/cloth/moonweave.ron | 4 ++-- assets/common/items/crafting_ing/cloth/silk.ron | 4 ++-- assets/common/items/crafting_ing/cloth/sunsilk.ron | 4 ++-- assets/common/items/crafting_ing/cloth/wool.ron | 4 ++-- assets/common/items/crafting_ing/coral_branch.ron | 4 ++-- assets/common/items/crafting_ing/cotton_boll.ron | 4 ++-- assets/common/items/crafting_ing/empty_vial.ron | 4 ++-- assets/common/items/crafting_ing/glacial_crystal.ron | 4 ++-- assets/common/items/crafting_ing/hide/animal_hide.ron | 4 ++-- assets/common/items/crafting_ing/hide/carapace.ron | 4 ++-- assets/common/items/crafting_ing/hide/dragon_scale.ron | 4 ++-- assets/common/items/crafting_ing/hide/leather_troll.ron | 4 ++-- assets/common/items/crafting_ing/hide/plate.ron | 4 ++-- assets/common/items/crafting_ing/hide/rugged_hide.ron | 4 ++-- assets/common/items/crafting_ing/hide/scales.ron | 4 ++-- assets/common/items/crafting_ing/hide/tough_hide.ron | 4 ++-- assets/common/items/crafting_ing/honey.ron | 4 ++-- assets/common/items/crafting_ing/leather/leather_strips.ron | 4 ++-- assets/common/items/crafting_ing/leather/rigid_leather.ron | 4 ++-- assets/common/items/crafting_ing/leather/simple_leather.ron | 4 ++-- assets/common/items/crafting_ing/leather/thick_leather.ron | 4 ++-- assets/common/items/crafting_ing/living_embers.ron | 4 ++-- assets/common/items/crafting_ing/mindflayer_bag_damaged.ron | 4 ++-- assets/common/items/crafting_ing/oil.ron | 4 ++-- assets/common/items/crafting_ing/pearl.ron | 4 ++-- assets/common/items/crafting_ing/resin.ron | 4 ++-- assets/common/items/crafting_ing/rock.ron | 4 ++-- assets/common/items/crafting_ing/seashells.ron | 4 ++-- assets/common/items/crafting_ing/sentient_seed.ron | 4 ++-- assets/common/items/crafting_ing/sticky_thread.ron | 4 ++-- assets/common/items/crafting_ing/stones.ron | 4 ++-- assets/common/items/crafting_ing/twigs.ron | 4 ++-- assets/common/items/crafting_tools/mortar_pestle.ron | 4 ++-- assets/common/items/crafting_tools/sewing_set.ron | 4 ++-- assets/common/items/debug/admin.ron | 4 ++-- assets/common/items/debug/admin_back.ron | 4 ++-- assets/common/items/debug/admin_black_hole.ron | 6 +++--- assets/common/items/debug/admin_stick.ron | 4 ++-- assets/common/items/debug/admin_sword.ron | 4 ++-- assets/common/items/debug/cultist_belt.ron | 4 ++-- assets/common/items/debug/cultist_boots.ron | 4 ++-- assets/common/items/debug/cultist_chest_blue.ron | 4 ++-- assets/common/items/debug/cultist_hands_blue.ron | 4 ++-- assets/common/items/debug/cultist_legs_blue.ron | 4 ++-- assets/common/items/debug/cultist_shoulder_blue.ron | 4 ++-- assets/common/items/debug/dungeon_purple.ron | 4 ++-- assets/common/items/debug/golden_cheese.ron | 4 ++-- assets/common/items/debug/velorite_bow_debug.ron | 4 ++-- assets/common/items/flowers/blue.ron | 4 ++-- assets/common/items/flowers/moonbell.ron | 4 ++-- assets/common/items/flowers/pink.ron | 4 ++-- assets/common/items/flowers/plant_fiber.ron | 4 ++-- assets/common/items/flowers/pyrebloom.ron | 4 ++-- assets/common/items/flowers/red.ron | 4 ++-- assets/common/items/flowers/sunflower.ron | 4 ++-- assets/common/items/flowers/white.ron | 4 ++-- assets/common/items/flowers/wild_flax.ron | 4 ++-- assets/common/items/flowers/yellow.ron | 4 ++-- assets/common/items/food/apple.ron | 4 ++-- assets/common/items/food/apple_mushroom_curry.ron | 4 ++-- assets/common/items/food/apple_stick.ron | 4 ++-- assets/common/items/food/blue_cheese.ron | 4 ++-- assets/common/items/food/cactus_colada.ron | 4 ++-- assets/common/items/food/carrot.ron | 4 ++-- assets/common/items/food/cheese.ron | 4 ++-- assets/common/items/food/coconut.ron | 4 ++-- assets/common/items/food/coltsfoot.ron | 4 ++-- assets/common/items/food/dandelion.ron | 4 ++-- assets/common/items/food/garlic.ron | 4 ++-- assets/common/items/food/honeycorn.ron | 4 ++-- assets/common/items/food/lettuce.ron | 4 ++-- assets/common/items/food/meat.ron | 4 ++-- assets/common/items/food/meat/beast_large_cooked.ron | 4 ++-- assets/common/items/food/meat/beast_large_raw.ron | 4 ++-- assets/common/items/food/meat/beast_small_cooked.ron | 4 ++-- assets/common/items/food/meat/beast_small_raw.ron | 4 ++-- assets/common/items/food/meat/bird_cooked.ron | 4 ++-- assets/common/items/food/meat/bird_large_cooked.ron | 4 ++-- assets/common/items/food/meat/bird_large_raw.ron | 4 ++-- assets/common/items/food/meat/bird_raw.ron | 4 ++-- assets/common/items/food/meat/fish_cooked.ron | 4 ++-- assets/common/items/food/meat/fish_raw.ron | 4 ++-- assets/common/items/food/meat/tough_cooked.ron | 4 ++-- assets/common/items/food/meat/tough_raw.ron | 4 ++-- assets/common/items/food/mushroom.ron | 4 ++-- assets/common/items/food/mushroom_stick.ron | 4 ++-- assets/common/items/food/onion.ron | 4 ++-- assets/common/items/food/plainsalad.ron | 4 ++-- assets/common/items/food/pumpkin_spice_brew.ron | 4 ++-- assets/common/items/food/sage.ron | 4 ++-- assets/common/items/food/spore_corruption.ron | 4 ++-- assets/common/items/food/sunflower_icetea.ron | 4 ++-- assets/common/items/food/tomato.ron | 4 ++-- assets/common/items/food/tomatosalad.ron | 4 ++-- assets/common/items/glider/basic_red.ron | 4 ++-- assets/common/items/glider/basic_white.ron | 4 ++-- assets/common/items/glider/blue.ron | 4 ++-- assets/common/items/glider/butterfly3.ron | 4 ++-- assets/common/items/glider/cloverleaf.ron | 4 ++-- assets/common/items/glider/leaves.ron | 4 ++-- assets/common/items/glider/monarch.ron | 4 ++-- assets/common/items/glider/moonrise.ron | 4 ++-- assets/common/items/glider/morpho.ron | 4 ++-- assets/common/items/glider/moth.ron | 4 ++-- assets/common/items/glider/sandraptor.ron | 4 ++-- assets/common/items/glider/skullgrin.ron | 4 ++-- assets/common/items/glider/snowraptor.ron | 4 ++-- assets/common/items/glider/sunset.ron | 4 ++-- assets/common/items/glider/winter_wings.ron | 4 ++-- assets/common/items/glider/woodraptor.ron | 4 ++-- assets/common/items/grasses/long.ron | 4 ++-- assets/common/items/grasses/medium.ron | 4 ++-- assets/common/items/grasses/short.ron | 4 ++-- assets/common/items/keys/bone_key.ron | 4 ++-- assets/common/items/keys/glass_key.ron | 4 ++-- assets/common/items/keys/quarry_keys/ancient.ron | 4 ++-- assets/common/items/keys/quarry_keys/backdoor.ron | 4 ++-- assets/common/items/keys/quarry_keys/cyclops_eye.ron | 4 ++-- assets/common/items/keys/quarry_keys/flamekeeper_left.ron | 4 ++-- assets/common/items/keys/quarry_keys/flamekeeper_right.ron | 4 ++-- assets/common/items/keys/quarry_keys/overseer.ron | 4 ++-- assets/common/items/keys/quarry_keys/smelting.ron | 4 ++-- assets/common/items/keys/rusty_tower_key.ron | 4 ++-- assets/common/items/lantern/black_0.ron | 4 ++-- assets/common/items/lantern/blue_0.ron | 4 ++-- assets/common/items/lantern/geode_purp.ron | 4 ++-- assets/common/items/lantern/green_0.ron | 4 ++-- assets/common/items/lantern/polaris.ron | 4 ++-- assets/common/items/lantern/pumpkin.ron | 4 ++-- assets/common/items/lantern/red_0.ron | 4 ++-- assets/common/items/log/bamboo.ron | 4 ++-- assets/common/items/log/eldwood.ron | 4 ++-- assets/common/items/log/frostwood.ron | 4 ++-- assets/common/items/log/hardwood.ron | 4 ++-- assets/common/items/log/ironwood.ron | 4 ++-- assets/common/items/log/wood.ron | 4 ++-- assets/common/items/mineral/gem/amethyst.ron | 4 ++-- assets/common/items/mineral/gem/diamond.ron | 4 ++-- assets/common/items/mineral/gem/emerald.ron | 4 ++-- assets/common/items/mineral/gem/ruby.ron | 4 ++-- assets/common/items/mineral/gem/sapphire.ron | 4 ++-- assets/common/items/mineral/gem/topaz.ron | 4 ++-- assets/common/items/mineral/ingot/bloodsteel.ron | 4 ++-- assets/common/items/mineral/ingot/bronze.ron | 4 ++-- assets/common/items/mineral/ingot/cobalt.ron | 4 ++-- assets/common/items/mineral/ingot/copper.ron | 4 ++-- assets/common/items/mineral/ingot/gold.ron | 4 ++-- assets/common/items/mineral/ingot/iron.ron | 4 ++-- assets/common/items/mineral/ingot/orichalcum.ron | 4 ++-- assets/common/items/mineral/ingot/silver.ron | 4 ++-- assets/common/items/mineral/ingot/steel.ron | 4 ++-- assets/common/items/mineral/ingot/tin.ron | 4 ++-- assets/common/items/mineral/ore/bloodstone.ron | 4 ++-- assets/common/items/mineral/ore/coal.ron | 4 ++-- assets/common/items/mineral/ore/cobalt.ron | 4 ++-- assets/common/items/mineral/ore/copper.ron | 4 ++-- assets/common/items/mineral/ore/gold.ron | 4 ++-- assets/common/items/mineral/ore/iron.ron | 4 ++-- assets/common/items/mineral/ore/silver.ron | 4 ++-- assets/common/items/mineral/ore/tin.ron | 4 ++-- assets/common/items/mineral/ore/velorite.ron | 4 ++-- assets/common/items/mineral/ore/veloritefrag.ron | 4 ++-- assets/common/items/mineral/stone/basalt.ron | 4 ++-- assets/common/items/mineral/stone/coal.ron | 4 ++-- assets/common/items/mineral/stone/granite.ron | 4 ++-- assets/common/items/mineral/stone/obsidian.ron | 4 ++-- assets/common/items/modular/weapon/primary/axe/axe.ron | 4 ++-- .../common/items/modular/weapon/primary/axe/battleaxe.ron | 4 ++-- assets/common/items/modular/weapon/primary/axe/greataxe.ron | 4 ++-- assets/common/items/modular/weapon/primary/axe/jagged.ron | 4 ++-- assets/common/items/modular/weapon/primary/axe/labrys.ron | 4 ++-- assets/common/items/modular/weapon/primary/axe/ornate.ron | 4 ++-- assets/common/items/modular/weapon/primary/axe/poleaxe.ron | 4 ++-- assets/common/items/modular/weapon/primary/bow/bow.ron | 4 ++-- .../common/items/modular/weapon/primary/bow/composite.ron | 4 ++-- assets/common/items/modular/weapon/primary/bow/greatbow.ron | 4 ++-- assets/common/items/modular/weapon/primary/bow/longbow.ron | 4 ++-- assets/common/items/modular/weapon/primary/bow/ornate.ron | 4 ++-- assets/common/items/modular/weapon/primary/bow/shortbow.ron | 4 ++-- assets/common/items/modular/weapon/primary/bow/warbow.ron | 4 ++-- .../items/modular/weapon/primary/hammer/greathammer.ron | 4 ++-- .../items/modular/weapon/primary/hammer/greatmace.ron | 4 ++-- .../common/items/modular/weapon/primary/hammer/hammer.ron | 4 ++-- assets/common/items/modular/weapon/primary/hammer/maul.ron | 4 ++-- .../common/items/modular/weapon/primary/hammer/ornate.ron | 4 ++-- .../items/modular/weapon/primary/hammer/spikedmace.ron | 4 ++-- .../items/modular/weapon/primary/hammer/warhammer.ron | 4 ++-- .../common/items/modular/weapon/primary/sceptre/arbor.ron | 4 ++-- assets/common/items/modular/weapon/primary/sceptre/cane.ron | 4 ++-- .../common/items/modular/weapon/primary/sceptre/crook.ron | 4 ++-- .../common/items/modular/weapon/primary/sceptre/crozier.ron | 4 ++-- .../items/modular/weapon/primary/sceptre/grandsceptre.ron | 4 ++-- .../common/items/modular/weapon/primary/sceptre/ornate.ron | 4 ++-- .../common/items/modular/weapon/primary/sceptre/sceptre.ron | 4 ++-- assets/common/items/modular/weapon/primary/staff/brand.ron | 4 ++-- .../items/modular/weapon/primary/staff/grandstaff.ron | 4 ++-- .../common/items/modular/weapon/primary/staff/longpole.ron | 4 ++-- assets/common/items/modular/weapon/primary/staff/ornate.ron | 4 ++-- assets/common/items/modular/weapon/primary/staff/pole.ron | 4 ++-- assets/common/items/modular/weapon/primary/staff/rod.ron | 4 ++-- assets/common/items/modular/weapon/primary/staff/staff.ron | 4 ++-- .../items/modular/weapon/primary/sword/greatsword.ron | 4 ++-- assets/common/items/modular/weapon/primary/sword/katana.ron | 4 ++-- .../common/items/modular/weapon/primary/sword/longsword.ron | 4 ++-- assets/common/items/modular/weapon/primary/sword/ornate.ron | 4 ++-- assets/common/items/modular/weapon/primary/sword/sabre.ron | 4 ++-- .../common/items/modular/weapon/primary/sword/sawblade.ron | 4 ++-- .../items/modular/weapon/primary/sword/zweihander.ron | 4 ++-- assets/common/items/modular/weapon/secondary/axe/long.ron | 4 ++-- assets/common/items/modular/weapon/secondary/axe/medium.ron | 4 ++-- assets/common/items/modular/weapon/secondary/axe/short.ron | 4 ++-- assets/common/items/modular/weapon/secondary/bow/long.ron | 4 ++-- assets/common/items/modular/weapon/secondary/bow/medium.ron | 4 ++-- assets/common/items/modular/weapon/secondary/bow/short.ron | 4 ++-- .../common/items/modular/weapon/secondary/hammer/long.ron | 4 ++-- .../common/items/modular/weapon/secondary/hammer/medium.ron | 4 ++-- .../common/items/modular/weapon/secondary/hammer/short.ron | 4 ++-- .../common/items/modular/weapon/secondary/sceptre/heavy.ron | 4 ++-- .../common/items/modular/weapon/secondary/sceptre/light.ron | 4 ++-- .../items/modular/weapon/secondary/sceptre/medium.ron | 4 ++-- .../common/items/modular/weapon/secondary/staff/heavy.ron | 4 ++-- .../common/items/modular/weapon/secondary/staff/light.ron | 4 ++-- .../common/items/modular/weapon/secondary/staff/medium.ron | 4 ++-- assets/common/items/modular/weapon/secondary/sword/long.ron | 4 ++-- .../common/items/modular/weapon/secondary/sword/medium.ron | 4 ++-- .../common/items/modular/weapon/secondary/sword/short.ron | 4 ++-- assets/common/items/npc_armor/arthropod/generic.ron | 4 ++-- assets/common/items/npc_armor/back/backpack_blue.ron | 4 ++-- assets/common/items/npc_armor/back/leather_blue.ron | 4 ++-- assets/common/items/npc_armor/biped_large/cyclops.ron | 4 ++-- assets/common/items/npc_armor/biped_large/dullahan.ron | 4 ++-- assets/common/items/npc_armor/biped_large/generic.ron | 4 ++-- assets/common/items/npc_armor/biped_large/gigas_frost.ron | 4 ++-- assets/common/items/npc_armor/biped_large/harvester.ron | 4 ++-- assets/common/items/npc_armor/biped_large/mindflayer.ron | 4 ++-- assets/common/items/npc_armor/biped_large/minotaur.ron | 4 ++-- assets/common/items/npc_armor/biped_large/tidal_warrior.ron | 4 ++-- assets/common/items/npc_armor/biped_large/tursus.ron | 4 ++-- assets/common/items/npc_armor/biped_large/warlock.ron | 4 ++-- assets/common/items/npc_armor/biped_large/warlord.ron | 4 ++-- assets/common/items/npc_armor/biped_large/yeti.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/chest/hunter.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/chest/icepicker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/chest/tracker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/foot/hunter.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/foot/icepicker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/foot/tracker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/hand/hunter.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/hand/icepicker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/hand/tracker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/head/hunter.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/head/icepicker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/head/tracker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/pants/hunter.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/pants/icepicker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/pants/tracker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/tail/hunter.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/tail/icepicker.ron | 4 ++-- .../items/npc_armor/biped_small/adlet/tail/tracker.ron | 4 ++-- .../items/npc_armor/biped_small/boreal/chest/warrior.ron | 4 ++-- .../items/npc_armor/biped_small/boreal/foot/warrior.ron | 4 ++-- .../items/npc_armor/biped_small/boreal/hand/warrior.ron | 4 ++-- .../items/npc_armor/biped_small/boreal/head/warrior.ron | 4 ++-- .../items/npc_armor/biped_small/boreal/pants/warrior.ron | 4 ++-- .../items/npc_armor/biped_small/bushly/chest/bushly.ron | 4 ++-- .../items/npc_armor/biped_small/bushly/foot/bushly.ron | 4 ++-- .../items/npc_armor/biped_small/bushly/hand/bushly.ron | 4 ++-- .../items/npc_armor/biped_small/bushly/pants/bushly.ron | 4 ++-- .../npc_armor/biped_small/clockwork/chest/clockwork.ron | 4 ++-- .../npc_armor/biped_small/clockwork/foot/clockwork.ron | 4 ++-- .../npc_armor/biped_small/clockwork/hand/clockwork.ron | 4 ++-- .../npc_armor/biped_small/clockwork/head/clockwork.ron | 4 ++-- .../npc_armor/biped_small/clockwork/pants/clockwork.ron | 4 ++-- .../npc_armor/biped_small/flamekeeper/chest/flamekeeper.ron | 4 ++-- .../npc_armor/biped_small/flamekeeper/foot/flamekeeper.ron | 4 ++-- .../npc_armor/biped_small/flamekeeper/hand/flamekeeper.ron | 4 ++-- .../npc_armor/biped_small/flamekeeper/head/flamekeeper.ron | 4 ++-- .../npc_armor/biped_small/flamekeeper/pants/flamekeeper.ron | 4 ++-- .../npc_armor/biped_small/gnarling/chest/chieftain.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/chest/logger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/chest/mugger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/chest/stalker.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/foot/chieftain.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/foot/logger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/foot/mugger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/foot/stalker.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/hand/chieftain.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/hand/logger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/hand/mugger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/hand/stalker.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/head/chieftain.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/head/logger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/head/mugger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/head/stalker.ron | 4 ++-- .../npc_armor/biped_small/gnarling/pants/chieftain.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/pants/logger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/pants/mugger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/pants/stalker.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/tail/chieftain.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/tail/logger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/tail/mugger.ron | 4 ++-- .../items/npc_armor/biped_small/gnarling/tail/stalker.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/chest/rogue.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/chest/shaman.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/chest/trapper.ron | 4 ++-- .../common/items/npc_armor/biped_small/gnoll/foot/rogue.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/foot/shaman.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/foot/trapper.ron | 4 ++-- .../common/items/npc_armor/biped_small/gnoll/hand/rogue.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/hand/shaman.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/hand/trapper.ron | 4 ++-- .../common/items/npc_armor/biped_small/gnoll/head/rogue.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/head/shaman.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/head/trapper.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/pants/rogue.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/pants/shaman.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/pants/trapper.ron | 4 ++-- .../common/items/npc_armor/biped_small/gnoll/tail/rogue.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/tail/shaman.ron | 4 ++-- .../items/npc_armor/biped_small/gnoll/tail/trapper.ron | 4 ++-- .../items/npc_armor/biped_small/gnome/chest/gnome.ron | 4 ++-- .../common/items/npc_armor/biped_small/gnome/foot/gnome.ron | 4 ++-- .../common/items/npc_armor/biped_small/gnome/hand/gnome.ron | 4 ++-- .../common/items/npc_armor/biped_small/gnome/head/gnome.ron | 4 ++-- .../items/npc_armor/biped_small/gnome/pants/gnome.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/chest/archer.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/chest/guard.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/chest/soldier.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/foot/archer.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/foot/guard.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/foot/soldier.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/hand/archer.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/hand/guard.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/hand/soldier.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/head/archer.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/head/guard.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/head/soldier.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/pants/archer.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/pants/guard.ron | 4 ++-- .../items/npc_armor/biped_small/haniwa/pants/soldier.ron | 4 ++-- .../common/items/npc_armor/biped_small/husk/chest/husk.ron | 4 ++-- .../common/items/npc_armor/biped_small/husk/foot/husk.ron | 4 ++-- .../common/items/npc_armor/biped_small/husk/hand/husk.ron | 4 ++-- .../common/items/npc_armor/biped_small/husk/head/husk.ron | 4 ++-- .../common/items/npc_armor/biped_small/husk/pants/husk.ron | 4 ++-- .../common/items/npc_armor/biped_small/husk/tail/husk.ron | 4 ++-- .../items/npc_armor/biped_small/irrwurz/chest/irrwurz.ron | 4 ++-- .../items/npc_armor/biped_small/irrwurz/foot/irrwurz.ron | 4 ++-- .../items/npc_armor/biped_small/irrwurz/hand/irrwurz.ron | 4 ++-- .../items/npc_armor/biped_small/irrwurz/pants/irrwurz.ron | 4 ++-- .../items/npc_armor/biped_small/kappa/chest/kappa.ron | 4 ++-- .../common/items/npc_armor/biped_small/kappa/foot/kappa.ron | 4 ++-- .../common/items/npc_armor/biped_small/kappa/hand/kappa.ron | 4 ++-- .../common/items/npc_armor/biped_small/kappa/head/kappa.ron | 4 ++-- .../items/npc_armor/biped_small/kappa/pants/kappa.ron | 4 ++-- .../common/items/npc_armor/biped_small/kappa/tail/kappa.ron | 4 ++-- .../npc_armor/biped_small/mandragora/chest/mandragora.ron | 4 ++-- .../npc_armor/biped_small/mandragora/foot/mandragora.ron | 4 ++-- .../npc_armor/biped_small/mandragora/hand/mandragora.ron | 4 ++-- .../npc_armor/biped_small/mandragora/pants/mandragora.ron | 4 ++-- .../npc_armor/biped_small/mandragora/tail/mandragora.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/chest/hoplite.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/chest/marksman.ron | 4 ++-- .../npc_armor/biped_small/myrmidon/chest/strategian.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/foot/hoplite.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/foot/marksman.ron | 4 ++-- .../npc_armor/biped_small/myrmidon/foot/strategian.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/hand/hoplite.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/hand/marksman.ron | 4 ++-- .../npc_armor/biped_small/myrmidon/hand/strategian.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/head/hoplite.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/head/marksman.ron | 4 ++-- .../npc_armor/biped_small/myrmidon/head/strategian.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/pants/hoplite.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/pants/marksman.ron | 4 ++-- .../npc_armor/biped_small/myrmidon/pants/strategian.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/tail/hoplite.ron | 4 ++-- .../items/npc_armor/biped_small/myrmidon/tail/marksman.ron | 4 ++-- .../npc_armor/biped_small/myrmidon/tail/strategian.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/chest/sniper.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/chest/sorcerer.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/chest/spearman.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/foot/sniper.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/foot/sorcerer.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/foot/spearman.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/hand/sniper.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/hand/sorcerer.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/hand/spearman.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/head/sniper.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/head/sorcerer.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/head/spearman.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/pants/sniper.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/pants/sorcerer.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/pants/spearman.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/tail/sniper.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/tail/sorcerer.ron | 4 ++-- .../items/npc_armor/biped_small/sahagin/tail/spearman.ron | 4 ++-- assets/common/items/npc_armor/bird_large/phoenix.ron | 4 ++-- assets/common/items/npc_armor/bird_large/wyvern.ron | 4 ++-- assets/common/items/npc_armor/chest/leather_blue.ron | 4 ++-- assets/common/items/npc_armor/chest/plate_red.ron | 4 ++-- assets/common/items/npc_armor/golem/claygolem.ron | 4 ++-- assets/common/items/npc_armor/golem/woodgolem.ron | 4 ++-- assets/common/items/npc_armor/pants/leather_blue.ron | 4 ++-- assets/common/items/npc_armor/pants/plate_red.ron | 4 ++-- assets/common/items/npc_armor/quadruped_low/dagon.ron | 4 ++-- assets/common/items/npc_armor/quadruped_low/generic.ron | 4 ++-- assets/common/items/npc_armor/quadruped_low/shell.ron | 4 ++-- .../common/items/npc_armor/quadruped_medium/frostfang.ron | 4 ++-- assets/common/items/npc_armor/quadruped_medium/roshwalr.ron | 4 ++-- assets/common/items/npc_armor/theropod/rugged.ron | 4 ++-- assets/common/items/npc_weapons/axe/gigas_frost_axe.ron | 4 ++-- assets/common/items/npc_weapons/axe/minotaur_axe.ron | 4 ++-- assets/common/items/npc_weapons/axe/oni_blue_axe.ron | 4 ++-- .../common/items/npc_weapons/biped_small/adlet/hunter.ron | 4 ++-- .../items/npc_weapons/biped_small/adlet/icepicker.ron | 4 ++-- .../common/items/npc_weapons/biped_small/adlet/tracker.ron | 4 ++-- assets/common/items/npc_weapons/biped_small/boreal/bow.ron | 4 ++-- .../common/items/npc_weapons/biped_small/boreal/hammer.ron | 4 ++-- .../items/npc_weapons/biped_small/gnarling/chieftain.ron | 4 ++-- .../items/npc_weapons/biped_small/gnarling/greentotem.ron | 4 ++-- .../items/npc_weapons/biped_small/gnarling/logger.ron | 4 ++-- .../items/npc_weapons/biped_small/gnarling/mugger.ron | 4 ++-- .../items/npc_weapons/biped_small/gnarling/redtotem.ron | 4 ++-- .../items/npc_weapons/biped_small/gnarling/stalker.ron | 4 ++-- .../items/npc_weapons/biped_small/gnarling/whitetotem.ron | 4 ++-- .../common/items/npc_weapons/biped_small/haniwa/archer.ron | 4 ++-- .../common/items/npc_weapons/biped_small/haniwa/guard.ron | 4 ++-- .../common/items/npc_weapons/biped_small/haniwa/soldier.ron | 4 ++-- assets/common/items/npc_weapons/biped_small/mandragora.ron | 4 ++-- .../items/npc_weapons/biped_small/myrmidon/hoplite.ron | 4 ++-- .../items/npc_weapons/biped_small/myrmidon/marksman.ron | 4 ++-- .../items/npc_weapons/biped_small/myrmidon/strategian.ron | 4 ++-- .../common/items/npc_weapons/biped_small/sahagin/sniper.ron | 4 ++-- .../items/npc_weapons/biped_small/sahagin/sorcerer.ron | 4 ++-- .../items/npc_weapons/biped_small/sahagin/spearman.ron | 4 ++-- assets/common/items/npc_weapons/bow/bipedlarge-velorite.ron | 4 ++-- assets/common/items/npc_weapons/bow/saurok_bow.ron | 4 ++-- .../common/items/npc_weapons/hammer/bipedlarge-cultist.ron | 4 ++-- assets/common/items/npc_weapons/hammer/cyclops_hammer.ron | 4 ++-- assets/common/items/npc_weapons/hammer/harvester_scythe.ron | 4 ++-- assets/common/items/npc_weapons/hammer/ogre_hammer.ron | 4 ++-- assets/common/items/npc_weapons/hammer/oni_red_hammer.ron | 4 ++-- assets/common/items/npc_weapons/hammer/troll_hammer.ron | 4 ++-- assets/common/items/npc_weapons/hammer/wendigo_hammer.ron | 4 ++-- assets/common/items/npc_weapons/hammer/yeti_hammer.ron | 4 ++-- .../common/items/npc_weapons/staff/bipedlarge-cultist.ron | 4 ++-- assets/common/items/npc_weapons/staff/mindflayer_staff.ron | 4 ++-- assets/common/items/npc_weapons/staff/ogre_staff.ron | 4 ++-- assets/common/items/npc_weapons/staff/saurok_staff.ron | 4 ++-- assets/common/items/npc_weapons/sword/adlet_elder_sword.ron | 4 ++-- .../common/items/npc_weapons/sword/bipedlarge-cultist.ron | 4 ++-- assets/common/items/npc_weapons/sword/dullahan_sword.ron | 4 ++-- .../items/npc_weapons/sword/pickaxe_velorite_sword.ron | 4 ++-- assets/common/items/npc_weapons/sword/saurok_sword.ron | 4 ++-- assets/common/items/npc_weapons/unique/akhlut.ron | 4 ++-- .../common/items/npc_weapons/unique/arthropods/antlion.ron | 4 ++-- .../items/npc_weapons/unique/arthropods/blackwidow.ron | 4 ++-- .../items/npc_weapons/unique/arthropods/cavespider.ron | 4 ++-- .../common/items/npc_weapons/unique/arthropods/dagonite.ron | 4 ++-- .../items/npc_weapons/unique/arthropods/hornbeetle.ron | 4 ++-- .../items/npc_weapons/unique/arthropods/leafbeetle.ron | 4 ++-- .../items/npc_weapons/unique/arthropods/mosscrawler.ron | 4 ++-- .../items/npc_weapons/unique/arthropods/tarantula.ron | 4 ++-- .../common/items/npc_weapons/unique/arthropods/weevil.ron | 4 ++-- assets/common/items/npc_weapons/unique/asp.ron | 4 ++-- assets/common/items/npc_weapons/unique/basilisk.ron | 4 ++-- assets/common/items/npc_weapons/unique/beast_claws.ron | 4 ++-- assets/common/items/npc_weapons/unique/birdlargebasic.ron | 4 ++-- assets/common/items/npc_weapons/unique/birdlargebreathe.ron | 4 ++-- assets/common/items/npc_weapons/unique/birdlargefire.ron | 4 ++-- assets/common/items/npc_weapons/unique/birdmediumbasic.ron | 4 ++-- assets/common/items/npc_weapons/unique/bushly.ron | 4 ++-- assets/common/items/npc_weapons/unique/cardinal.ron | 4 ++-- assets/common/items/npc_weapons/unique/clay_golem_fist.ron | 4 ++-- assets/common/items/npc_weapons/unique/clockwork.ron | 4 ++-- assets/common/items/npc_weapons/unique/cloudwyvern.ron | 4 ++-- assets/common/items/npc_weapons/unique/coral_golem_fist.ron | 4 ++-- assets/common/items/npc_weapons/unique/crab_pincer.ron | 4 ++-- assets/common/items/npc_weapons/unique/dagon.ron | 4 ++-- assets/common/items/npc_weapons/unique/deadwood.ron | 4 ++-- assets/common/items/npc_weapons/unique/driggle.ron | 4 ++-- assets/common/items/npc_weapons/unique/emberfly.ron | 4 ++-- assets/common/items/npc_weapons/unique/fiery_tornado.ron | 4 ++-- .../common/items/npc_weapons/unique/flamekeeper_staff.ron | 4 ++-- assets/common/items/npc_weapons/unique/flamethrower.ron | 4 ++-- assets/common/items/npc_weapons/unique/flamewyvern.ron | 4 ++-- assets/common/items/npc_weapons/unique/frostfang.ron | 4 ++-- assets/common/items/npc_weapons/unique/frostwyvern.ron | 4 ++-- assets/common/items/npc_weapons/unique/haniwa_sentry.ron | 4 ++-- assets/common/items/npc_weapons/unique/hermit_alligator.ron | 4 ++-- assets/common/items/npc_weapons/unique/husk.ron | 4 ++-- assets/common/items/npc_weapons/unique/husk_brute.ron | 4 ++-- assets/common/items/npc_weapons/unique/icedrake.ron | 4 ++-- assets/common/items/npc_weapons/unique/irrwurz.ron | 4 ++-- assets/common/items/npc_weapons/unique/maneater.ron | 4 ++-- assets/common/items/npc_weapons/unique/mossysnail.ron | 4 ++-- assets/common/items/npc_weapons/unique/organ.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadlowbasic.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadlowbeam.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadlowbreathe.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadlowquick.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadlowtail.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadmedbasic.ron | 4 ++-- .../common/items/npc_weapons/unique/quadmedbasicgentle.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadmedcharge.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadmedhoof.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadmedjump.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadmedquick.ron | 4 ++-- assets/common/items/npc_weapons/unique/quadsmallbasic.ron | 4 ++-- assets/common/items/npc_weapons/unique/roshwalr.ron | 4 ++-- .../common/items/npc_weapons/unique/sea_bishop_sceptre.ron | 4 ++-- assets/common/items/npc_weapons/unique/seawyvern.ron | 4 ++-- .../common/items/npc_weapons/unique/simpleflyingbasic.ron | 4 ++-- .../common/items/npc_weapons/unique/stone_golems_fist.ron | 4 ++-- assets/common/items/npc_weapons/unique/theropodbasic.ron | 4 ++-- assets/common/items/npc_weapons/unique/theropodbird.ron | 4 ++-- assets/common/items/npc_weapons/unique/theropodcharge.ron | 4 ++-- assets/common/items/npc_weapons/unique/theropodsmall.ron | 4 ++-- assets/common/items/npc_weapons/unique/tidal_claws.ron | 4 ++-- assets/common/items/npc_weapons/unique/tidal_totem.ron | 4 ++-- assets/common/items/npc_weapons/unique/tornado.ron | 4 ++-- assets/common/items/npc_weapons/unique/treantsapling.ron | 4 ++-- assets/common/items/npc_weapons/unique/turret.ron | 4 ++-- assets/common/items/npc_weapons/unique/tursus_claws.ron | 4 ++-- assets/common/items/npc_weapons/unique/wealdwyvern.ron | 4 ++-- assets/common/items/npc_weapons/unique/wendigo_magic.ron | 4 ++-- assets/common/items/npc_weapons/unique/wood_golem_fist.ron | 4 ++-- assets/common/items/tag_examples/cultist.ron | 4 ++-- assets/common/items/tag_examples/gnarling.ron | 4 ++-- assets/common/items/testing/test_bag_18_slot.ron | 4 ++-- assets/common/items/testing/test_bag_9_slot.ron | 4 ++-- assets/common/items/testing/test_boots.ron | 4 ++-- assets/common/items/tool/craftsman_hammer.ron | 4 ++-- assets/common/items/tool/instruments/double_bass.ron | 4 ++-- assets/common/items/tool/instruments/flute.ron | 4 ++-- assets/common/items/tool/instruments/glass_flute.ron | 4 ++-- assets/common/items/tool/instruments/guitar.ron | 4 ++-- assets/common/items/tool/instruments/guitar_dark.ron | 4 ++-- assets/common/items/tool/instruments/icy_talharpa.ron | 4 ++-- assets/common/items/tool/instruments/kalimba.ron | 4 ++-- assets/common/items/tool/instruments/lute.ron | 4 ++-- assets/common/items/tool/instruments/lyre.ron | 4 ++-- assets/common/items/tool/instruments/melodica.ron | 4 ++-- assets/common/items/tool/instruments/sitar.ron | 4 ++-- assets/common/items/tool/instruments/washboard.ron | 4 ++-- assets/common/items/tool/instruments/wildskin_drum.ron | 4 ++-- assets/common/items/tool/pickaxe_steel.ron | 4 ++-- assets/common/items/tool/pickaxe_stone.ron | 4 ++-- assets/common/items/tool/pickaxe_velorite.ron | 4 ++-- assets/common/items/utility/bomb.ron | 4 ++-- assets/common/items/utility/coins.ron | 4 ++-- assets/common/items/utility/collar.ron | 4 ++-- assets/common/items/utility/firework_blue.ron | 4 ++-- assets/common/items/utility/firework_green.ron | 4 ++-- assets/common/items/utility/firework_purple.ron | 4 ++-- assets/common/items/utility/firework_red.ron | 4 ++-- assets/common/items/utility/firework_white.ron | 4 ++-- assets/common/items/utility/firework_yellow.ron | 4 ++-- assets/common/items/utility/lockpick_0.ron | 4 ++-- assets/common/items/utility/training_dummy.ron | 4 ++-- assets/common/items/weapons/axe/malachite_axe-0.ron | 4 ++-- assets/common/items/weapons/axe/parashu.ron | 4 ++-- assets/common/items/weapons/axe/starter_axe.ron | 4 ++-- assets/common/items/weapons/bow/sagitta.ron | 4 ++-- assets/common/items/weapons/bow/starter.ron | 4 ++-- assets/common/items/weapons/bow/velorite.ron | 4 ++-- assets/common/items/weapons/dagger/basic_0.ron | 4 ++-- assets/common/items/weapons/dagger/cultist_0.ron | 4 ++-- assets/common/items/weapons/dagger/starter_dagger.ron | 4 ++-- assets/common/items/weapons/empty/empty.ron | 4 ++-- assets/common/items/weapons/hammer/burnt_drumstick.ron | 4 ++-- assets/common/items/weapons/hammer/cultist_purp_2h-0.ron | 4 ++-- assets/common/items/weapons/hammer/flimsy_hammer.ron | 4 ++-- assets/common/items/weapons/hammer/hammer_1.ron | 4 ++-- assets/common/items/weapons/hammer/mjolnir.ron | 4 ++-- assets/common/items/weapons/hammer/starter_hammer.ron | 4 ++-- assets/common/items/weapons/sceptre/amethyst.ron | 4 ++-- assets/common/items/weapons/sceptre/belzeshrub.ron | 4 ++-- assets/common/items/weapons/sceptre/caduceus.ron | 4 ++-- assets/common/items/weapons/sceptre/root_evil.ron | 4 ++-- assets/common/items/weapons/sceptre/sceptre_velorite_0.ron | 4 ++-- assets/common/items/weapons/sceptre/starter_sceptre.ron | 4 ++-- assets/common/items/weapons/shield/shield_1.ron | 4 ++-- assets/common/items/weapons/staff/cultist_staff.ron | 4 ++-- assets/common/items/weapons/staff/laevateinn.ron | 4 ++-- assets/common/items/weapons/staff/staff_1.ron | 4 ++-- assets/common/items/weapons/staff/starter_staff.ron | 4 ++-- assets/common/items/weapons/sword/caladbolg.ron | 4 ++-- assets/common/items/weapons/sword/cultist.ron | 4 ++-- assets/common/items/weapons/sword/frost-0.ron | 4 ++-- assets/common/items/weapons/sword/frost-1.ron | 4 ++-- assets/common/items/weapons/sword/starter.ron | 4 ++-- assets/common/items/weapons/sword_1h/starter.ron | 4 ++-- assets/common/items/weapons/tool/broom.ron | 4 ++-- assets/common/items/weapons/tool/fishing_rod.ron | 4 ++-- assets/common/items/weapons/tool/golf_club.ron | 4 ++-- assets/common/items/weapons/tool/hoe.ron | 4 ++-- assets/common/items/weapons/tool/pickaxe.ron | 4 ++-- assets/common/items/weapons/tool/pitchfork.ron | 4 ++-- assets/common/items/weapons/tool/rake.ron | 4 ++-- assets/common/items/weapons/tool/shovel-0.ron | 4 ++-- assets/common/items/weapons/tool/shovel-1.ron | 4 ++-- 1022 files changed, 2045 insertions(+), 2045 deletions(-) diff --git a/assets/common/items/armor/alchemist/belt.ron b/assets/common/items/armor/alchemist/belt.ron index 2e36b32a10..b253068829 100644 --- a/assets/common/items/armor/alchemist/belt.ron +++ b/assets/common/items/armor/alchemist/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Alchemist Belt", - description: "", + legacy_name: "Alchemist Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Alchemist"), diff --git a/assets/common/items/armor/alchemist/chest.ron b/assets/common/items/armor/alchemist/chest.ron index fa19b234e8..4647323413 100644 --- a/assets/common/items/armor/alchemist/chest.ron +++ b/assets/common/items/armor/alchemist/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Alchemist Jacket", - description: "", + legacy_name: "Alchemist Jacket", + legacy_description: "", kind: Armor(( kind: Chest, stats: FromSet("Alchemist"), diff --git a/assets/common/items/armor/alchemist/hat.ron b/assets/common/items/armor/alchemist/hat.ron index 66d75300f9..1377589222 100644 --- a/assets/common/items/armor/alchemist/hat.ron +++ b/assets/common/items/armor/alchemist/hat.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Alchemist Hat", - description: "It seems like a parrot was perched up here.", + legacy_name: "Alchemist Hat", + legacy_description: "It seems like a parrot was perched up here.", kind: Armor(( kind: Head, stats: FromSet("Alchemist"), diff --git a/assets/common/items/armor/alchemist/pants.ron b/assets/common/items/armor/alchemist/pants.ron index 5bc425f0a3..69becd933f 100644 --- a/assets/common/items/armor/alchemist/pants.ron +++ b/assets/common/items/armor/alchemist/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Alchemist Pants", - description: "", + legacy_name: "Alchemist Pants", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Alchemist"), diff --git a/assets/common/items/armor/assassin/belt.ron b/assets/common/items/armor/assassin/belt.ron index f850010c3c..fb74e72a40 100644 --- a/assets/common/items/armor/assassin/belt.ron +++ b/assets/common/items/armor/assassin/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Assassin Belt", - description: "Only the best for a member of the creed.", + legacy_name: "Assassin Belt", + legacy_description: "Only the best for a member of the creed.", kind: Armor(( kind: Belt, stats: FromSet("Assassin"), diff --git a/assets/common/items/armor/assassin/chest.ron b/assets/common/items/armor/assassin/chest.ron index e4e104bae5..da174ec508 100644 --- a/assets/common/items/armor/assassin/chest.ron +++ b/assets/common/items/armor/assassin/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Assassin Chest", - description: "Only the best for a member of the creed.", + legacy_name: "Assassin Chest", + legacy_description: "Only the best for a member of the creed.", kind: Armor(( kind: Chest, stats: FromSet("Assassin"), diff --git a/assets/common/items/armor/assassin/foot.ron b/assets/common/items/armor/assassin/foot.ron index aa6ca25d93..f4f8747bd1 100644 --- a/assets/common/items/armor/assassin/foot.ron +++ b/assets/common/items/armor/assassin/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Assassin Boots", - description: "Only the best for a member of the creed.", + legacy_name: "Assassin Boots", + legacy_description: "Only the best for a member of the creed.", kind: Armor(( kind: Foot, stats: FromSet("Assassin"), diff --git a/assets/common/items/armor/assassin/hand.ron b/assets/common/items/armor/assassin/hand.ron index e46342d513..fc6d01acd0 100644 --- a/assets/common/items/armor/assassin/hand.ron +++ b/assets/common/items/armor/assassin/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Assassin Gloves", - description: "Only the best for a member of the creed.", + legacy_name: "Assassin Gloves", + legacy_description: "Only the best for a member of the creed.", kind: Armor(( kind: Hand, stats: FromSet("Assassin"), diff --git a/assets/common/items/armor/assassin/head.ron b/assets/common/items/armor/assassin/head.ron index fc0f901540..203fc6c27f 100644 --- a/assets/common/items/armor/assassin/head.ron +++ b/assets/common/items/armor/assassin/head.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dark Assassin Mask", - description: "A general assassination mask preventing the wearer from being identified.", + legacy_name: "Dark Assassin Mask", + legacy_description: "A general assassination mask preventing the wearer from being identified.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/assassin/pants.ron b/assets/common/items/armor/assassin/pants.ron index c82ccdd66c..1dfad03953 100644 --- a/assets/common/items/armor/assassin/pants.ron +++ b/assets/common/items/armor/assassin/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Assassin Pants", - description: "Only the best for a member of the creed.", + legacy_name: "Assassin Pants", + legacy_description: "Only the best for a member of the creed.", kind: Armor(( kind: Pants, stats: FromSet("Assassin"), diff --git a/assets/common/items/armor/assassin/shoulder.ron b/assets/common/items/armor/assassin/shoulder.ron index f150ef8136..f52c74ab18 100644 --- a/assets/common/items/armor/assassin/shoulder.ron +++ b/assets/common/items/armor/assassin/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Assassin Shoulder Guard", - description: "Only the best for a member of the creed.", + legacy_name: "Assassin Shoulder Guard", + legacy_description: "Only the best for a member of the creed.", kind: Armor(( kind: Shoulder, stats: FromSet("Assassin"), diff --git a/assets/common/items/armor/blacksmith/belt.ron b/assets/common/items/armor/blacksmith/belt.ron index 640042bcda..ec05a44428 100644 --- a/assets/common/items/armor/blacksmith/belt.ron +++ b/assets/common/items/armor/blacksmith/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blacksmith Belt", - description: "", + legacy_name: "Blacksmith Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Blacksmith"), diff --git a/assets/common/items/armor/blacksmith/chest.ron b/assets/common/items/armor/blacksmith/chest.ron index 6a2ac4d833..05ef7dcae8 100644 --- a/assets/common/items/armor/blacksmith/chest.ron +++ b/assets/common/items/armor/blacksmith/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blacksmith Jacket", - description: "", + legacy_name: "Blacksmith Jacket", + legacy_description: "", kind: Armor(( kind: Chest, stats: FromSet("Blacksmith"), diff --git a/assets/common/items/armor/blacksmith/hand.ron b/assets/common/items/armor/blacksmith/hand.ron index 43523e7cd3..d5dd876379 100644 --- a/assets/common/items/armor/blacksmith/hand.ron +++ b/assets/common/items/armor/blacksmith/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blacksmith Gloves", - description: "", + legacy_name: "Blacksmith Gloves", + legacy_description: "", kind: Armor(( kind: Hand, stats: FromSet("Blacksmith"), diff --git a/assets/common/items/armor/blacksmith/hat.ron b/assets/common/items/armor/blacksmith/hat.ron index 571d778085..d91ecdef08 100644 --- a/assets/common/items/armor/blacksmith/hat.ron +++ b/assets/common/items/armor/blacksmith/hat.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blacksmith Hat", - description: "", + legacy_name: "Blacksmith Hat", + legacy_description: "", kind: Armor(( kind: Head, stats: FromSet("Blacksmith"), diff --git a/assets/common/items/armor/blacksmith/pants.ron b/assets/common/items/armor/blacksmith/pants.ron index 8a852939ed..fe5fc0fc5c 100644 --- a/assets/common/items/armor/blacksmith/pants.ron +++ b/assets/common/items/armor/blacksmith/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blacksmith Pants", - description: "", + legacy_name: "Blacksmith Pants", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Blacksmith"), diff --git a/assets/common/items/armor/bonerattler/belt.ron b/assets/common/items/armor/bonerattler/belt.ron index c19f9ac9b9..a435972279 100644 --- a/assets/common/items/armor/bonerattler/belt.ron +++ b/assets/common/items/armor/bonerattler/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bonerattler Belt", - description: "Sections of vertebrae fastened together with hide and a bonerattler eye for the buckle.", + legacy_name: "Bonerattler Belt", + legacy_description: "Sections of vertebrae fastened together with hide and a bonerattler eye for the buckle.", kind: Armor(( kind: Belt, stats: FromSet("Bonerattler"), diff --git a/assets/common/items/armor/bonerattler/chest.ron b/assets/common/items/armor/bonerattler/chest.ron index c33c1aa675..38f95b2b25 100644 --- a/assets/common/items/armor/bonerattler/chest.ron +++ b/assets/common/items/armor/bonerattler/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bonerattler Cuirass", - description: "The spiny back and hide of a bonerattler fastened together into a protective cuirass.", + legacy_name: "Bonerattler Cuirass", + legacy_description: "The spiny back and hide of a bonerattler fastened together into a protective cuirass.", kind: Armor(( kind: Chest, stats: FromSet("Bonerattler"), diff --git a/assets/common/items/armor/bonerattler/foot.ron b/assets/common/items/armor/bonerattler/foot.ron index c4cc8efa96..1468ada611 100644 --- a/assets/common/items/armor/bonerattler/foot.ron +++ b/assets/common/items/armor/bonerattler/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bonerattler Boots", - description: "Boots made from the claws and hide of a bonerattler.", + legacy_name: "Bonerattler Boots", + legacy_description: "Boots made from the claws and hide of a bonerattler.", kind: Armor(( kind: Foot, stats: FromSet("Bonerattler"), diff --git a/assets/common/items/armor/bonerattler/hand.ron b/assets/common/items/armor/bonerattler/hand.ron index 4c86ead39e..a767fab5fc 100644 --- a/assets/common/items/armor/bonerattler/hand.ron +++ b/assets/common/items/armor/bonerattler/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bonerattler Gauntlets", - description: "The hide and bone from a bonerattler provide strong protection for the wearer.", + legacy_name: "Bonerattler Gauntlets", + legacy_description: "The hide and bone from a bonerattler provide strong protection for the wearer.", kind: Armor(( kind: Hand, stats: FromSet("Bonerattler"), diff --git a/assets/common/items/armor/bonerattler/pants.ron b/assets/common/items/armor/bonerattler/pants.ron index 55c165fcfc..4bae4fe9c4 100644 --- a/assets/common/items/armor/bonerattler/pants.ron +++ b/assets/common/items/armor/bonerattler/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bonerattler Chausses", - description: "Assorted bones and hide from a bonerattler provide protection around the wearer's legs.", + legacy_name: "Bonerattler Chausses", + legacy_description: "Assorted bones and hide from a bonerattler provide protection around the wearer's legs.", kind: Armor(( kind: Pants, stats: FromSet("Bonerattler"), diff --git a/assets/common/items/armor/bonerattler/shoulder.ron b/assets/common/items/armor/bonerattler/shoulder.ron index d6f1bf06c0..3ef7a9743d 100644 --- a/assets/common/items/armor/bonerattler/shoulder.ron +++ b/assets/common/items/armor/bonerattler/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bonerattler Shoulder Pad", - description: "Roughly formed bonerattler hide provide some strong protection.", + legacy_name: "Bonerattler Shoulder Pad", + legacy_description: "Roughly formed bonerattler hide provide some strong protection.", kind: Armor(( kind: Shoulder, stats: FromSet("Bonerattler"), diff --git a/assets/common/items/armor/boreal/back.ron b/assets/common/items/armor/boreal/back.ron index f503ca980c..551299b246 100644 --- a/assets/common/items/armor/boreal/back.ron +++ b/assets/common/items/armor/boreal/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Cloak", - description: "Thick yet surprisingly cold.", + legacy_name: "Boreal Cloak", + legacy_description: "Thick yet surprisingly cold.", kind: Armor(( kind: Back, stats: FromSet("Boreal"), diff --git a/assets/common/items/armor/boreal/belt.ron b/assets/common/items/armor/boreal/belt.ron index e4b8f4e2da..c384566b8d 100644 --- a/assets/common/items/armor/boreal/belt.ron +++ b/assets/common/items/armor/boreal/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Belt", - description: "It's cold.", + legacy_name: "Boreal Belt", + legacy_description: "It's cold.", kind: Armor(( kind: Belt, stats: FromSet("Boreal"), diff --git a/assets/common/items/armor/boreal/chest.ron b/assets/common/items/armor/boreal/chest.ron index 65c6198d8e..72f4644388 100644 --- a/assets/common/items/armor/boreal/chest.ron +++ b/assets/common/items/armor/boreal/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Chestplate", - description: "So frigid that you can feel it in your heart.", + legacy_name: "Boreal Chestplate", + legacy_description: "So frigid that you can feel it in your heart.", kind: Armor(( kind: Chest, stats: FromSet("Boreal"), diff --git a/assets/common/items/armor/boreal/foot.ron b/assets/common/items/armor/boreal/foot.ron index bb8124e018..5f720e2262 100644 --- a/assets/common/items/armor/boreal/foot.ron +++ b/assets/common/items/armor/boreal/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Wrappings", - description: "The blistering cold makes it hard to move.", + legacy_name: "Boreal Wrappings", + legacy_description: "The blistering cold makes it hard to move.", kind: Armor(( kind: Foot, stats: FromSet("Boreal"), diff --git a/assets/common/items/armor/boreal/hand.ron b/assets/common/items/armor/boreal/hand.ron index eaaa304030..6837bce2dc 100644 --- a/assets/common/items/armor/boreal/hand.ron +++ b/assets/common/items/armor/boreal/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Gauntlets", - description: "Colder than the touch of death.", + legacy_name: "Boreal Gauntlets", + legacy_description: "Colder than the touch of death.", kind: Armor(( kind: Hand, stats: FromSet("Boreal"), diff --git a/assets/common/items/armor/boreal/pants.ron b/assets/common/items/armor/boreal/pants.ron index 787b81ad2c..c8363a0294 100644 --- a/assets/common/items/armor/boreal/pants.ron +++ b/assets/common/items/armor/boreal/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Tunic", - description: "Colder than the climate it protects you from.", + legacy_name: "Boreal Tunic", + legacy_description: "Colder than the climate it protects you from.", kind: Armor(( kind: Pants, stats: FromSet("Boreal"), diff --git a/assets/common/items/armor/boreal/shoulder.ron b/assets/common/items/armor/boreal/shoulder.ron index be3beb6c15..5acbe48d3d 100644 --- a/assets/common/items/armor/boreal/shoulder.ron +++ b/assets/common/items/armor/boreal/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Spaulders", - description: "As though the icy grip of death touches your shoulder.", + legacy_name: "Boreal Spaulders", + legacy_description: "As though the icy grip of death touches your shoulder.", kind: Armor(( kind: Shoulder, stats: FromSet("Boreal"), diff --git a/assets/common/items/armor/brinestone/back.ron b/assets/common/items/armor/brinestone/back.ron index a05e431968..fa55af26af 100644 --- a/assets/common/items/armor/brinestone/back.ron +++ b/assets/common/items/armor/brinestone/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Cloak", - description: "It's not weak.", + legacy_name: "Brinestone Cloak", + legacy_description: "It's not weak.", kind: Armor(( kind: Back, stats: FromSet("Brinestone"), diff --git a/assets/common/items/armor/brinestone/belt.ron b/assets/common/items/armor/brinestone/belt.ron index 33edfc7453..9774358dd9 100644 --- a/assets/common/items/armor/brinestone/belt.ron +++ b/assets/common/items/armor/brinestone/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Belt", - description: "Ties it together.", + legacy_name: "Brinestone Belt", + legacy_description: "Ties it together.", kind: Armor(( kind: Belt, stats: FromSet("Brinestone"), diff --git a/assets/common/items/armor/brinestone/chest.ron b/assets/common/items/armor/brinestone/chest.ron index 050b1e1b0a..cc0f65b614 100644 --- a/assets/common/items/armor/brinestone/chest.ron +++ b/assets/common/items/armor/brinestone/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Chestplate", - description: "Hard to pierce.", + legacy_name: "Brinestone Chestplate", + legacy_description: "Hard to pierce.", kind: Armor(( kind: Chest, stats: FromSet("Brinestone"), diff --git a/assets/common/items/armor/brinestone/crown.ron b/assets/common/items/armor/brinestone/crown.ron index f2fd2b7d90..dfa2b57d61 100644 --- a/assets/common/items/armor/brinestone/crown.ron +++ b/assets/common/items/armor/brinestone/crown.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Crown", - description: "Makes you look taller.", + legacy_name: "Brinestone Crown", + legacy_description: "Makes you look taller.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/brinestone/foot.ron b/assets/common/items/armor/brinestone/foot.ron index d5da649eab..6f49e49b30 100644 --- a/assets/common/items/armor/brinestone/foot.ron +++ b/assets/common/items/armor/brinestone/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Boots", - description: "Not very comfortable.", + legacy_name: "Brinestone Boots", + legacy_description: "Not very comfortable.", kind: Armor(( kind: Foot, stats: FromSet("Brinestone"), diff --git a/assets/common/items/armor/brinestone/hand.ron b/assets/common/items/armor/brinestone/hand.ron index d09400a216..62e17add0f 100644 --- a/assets/common/items/armor/brinestone/hand.ron +++ b/assets/common/items/armor/brinestone/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Gauntlets", - description: "Hits like a rock.", + legacy_name: "Brinestone Gauntlets", + legacy_description: "Hits like a rock.", kind: Armor(( kind: Hand, stats: FromSet("Brinestone"), diff --git a/assets/common/items/armor/brinestone/pants.ron b/assets/common/items/armor/brinestone/pants.ron index 1ed1d8c996..ed6bef5937 100644 --- a/assets/common/items/armor/brinestone/pants.ron +++ b/assets/common/items/armor/brinestone/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Pants", - description: "Do not tumble.", + legacy_name: "Brinestone Pants", + legacy_description: "Do not tumble.", kind: Armor(( kind: Pants, stats: FromSet("Brinestone"), diff --git a/assets/common/items/armor/brinestone/shoulder.ron b/assets/common/items/armor/brinestone/shoulder.ron index 5ecc4602e7..80e0f01d07 100644 --- a/assets/common/items/armor/brinestone/shoulder.ron +++ b/assets/common/items/armor/brinestone/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone Pads", - description: "Almost too heavy.", + legacy_name: "Brinestone Pads", + legacy_description: "Almost too heavy.", kind: Armor(( kind: Shoulder, stats: FromSet("Brinestone"), diff --git a/assets/common/items/armor/cardinal/belt.ron b/assets/common/items/armor/cardinal/belt.ron index 1f8573cb25..b64817a8e1 100644 --- a/assets/common/items/armor/cardinal/belt.ron +++ b/assets/common/items/armor/cardinal/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cardinal's Belt", - description: "Seemlessly transitions...", + legacy_name: "Cardinal's Belt", + legacy_description: "Seemlessly transitions...", kind: Armor(( kind: Belt, stats: FromSet("Cardinal"), diff --git a/assets/common/items/armor/cardinal/chest.ron b/assets/common/items/armor/cardinal/chest.ron index 6887d78402..3fc95da25c 100644 --- a/assets/common/items/armor/cardinal/chest.ron +++ b/assets/common/items/armor/cardinal/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cardinal's Cloak", - description: "A part of the cardinal's exquisite cloak.", + legacy_name: "Cardinal's Cloak", + legacy_description: "A part of the cardinal's exquisite cloak.", kind: Armor(( kind: Chest, stats: FromSet("Cardinal"), diff --git a/assets/common/items/armor/cardinal/foot.ron b/assets/common/items/armor/cardinal/foot.ron index d24fc113c4..b743ebd348 100644 --- a/assets/common/items/armor/cardinal/foot.ron +++ b/assets/common/items/armor/cardinal/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cardinal's Boots", - description: "The boots with millions of steps.", + legacy_name: "Cardinal's Boots", + legacy_description: "The boots with millions of steps.", kind: Armor(( kind: Foot, stats: FromSet("Cardinal"), diff --git a/assets/common/items/armor/cardinal/hand.ron b/assets/common/items/armor/cardinal/hand.ron index f3a552d70e..1d42f36bc8 100644 --- a/assets/common/items/armor/cardinal/hand.ron +++ b/assets/common/items/armor/cardinal/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cardinal's Gloves", - description: "Bloodstained and rugged.", + legacy_name: "Cardinal's Gloves", + legacy_description: "Bloodstained and rugged.", kind: Armor(( kind: Hand, stats: FromSet("Cardinal"), diff --git a/assets/common/items/armor/cardinal/mitre.ron b/assets/common/items/armor/cardinal/mitre.ron index a83f77e0a9..3950e709f8 100644 --- a/assets/common/items/armor/cardinal/mitre.ron +++ b/assets/common/items/armor/cardinal/mitre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cardinal Mitre", - description: "Induces respect.", + legacy_name: "Cardinal Mitre", + legacy_description: "Induces respect.", kind: Armor(( kind: Head, stats: FromSet("Cardinal"), diff --git a/assets/common/items/armor/cardinal/pants.ron b/assets/common/items/armor/cardinal/pants.ron index 52e168ae34..823873363c 100644 --- a/assets/common/items/armor/cardinal/pants.ron +++ b/assets/common/items/armor/cardinal/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cardinal's Jeans", - description: "Pants with many experiences.", + legacy_name: "Cardinal's Jeans", + legacy_description: "Pants with many experiences.", kind: Armor(( kind: Pants, stats: FromSet("Cardinal"), diff --git a/assets/common/items/armor/cardinal/shoulder.ron b/assets/common/items/armor/cardinal/shoulder.ron index e44ecb651c..4f51d39eaf 100644 --- a/assets/common/items/armor/cardinal/shoulder.ron +++ b/assets/common/items/armor/cardinal/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cardinal's Shoulderguard", - description: "The other was lost in a vicious fight.", + legacy_name: "Cardinal's Shoulderguard", + legacy_description: "The other was lost in a vicious fight.", kind: Armor(( kind: Shoulder, stats: FromSet("Cardinal"), diff --git a/assets/common/items/armor/chef/belt.ron b/assets/common/items/armor/chef/belt.ron index 7908e6fb44..e4e26c87da 100644 --- a/assets/common/items/armor/chef/belt.ron +++ b/assets/common/items/armor/chef/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Chef Belt", - description: "", + legacy_name: "Chef Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Chef"), diff --git a/assets/common/items/armor/chef/chest.ron b/assets/common/items/armor/chef/chest.ron index 52829ecccf..3440b33b47 100644 --- a/assets/common/items/armor/chef/chest.ron +++ b/assets/common/items/armor/chef/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Chef Jacket", - description: "", + legacy_name: "Chef Jacket", + legacy_description: "", kind: Armor(( kind: Chest, stats: FromSet("Chef"), diff --git a/assets/common/items/armor/chef/hat.ron b/assets/common/items/armor/chef/hat.ron index 6c2ffbe420..31836428f0 100644 --- a/assets/common/items/armor/chef/hat.ron +++ b/assets/common/items/armor/chef/hat.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Chef Hat", - description: "", + legacy_name: "Chef Hat", + legacy_description: "", kind: Armor(( kind: Head, stats: FromSet("Chef"), diff --git a/assets/common/items/armor/chef/pants.ron b/assets/common/items/armor/chef/pants.ron index ff597f0b0e..88309b7a8d 100644 --- a/assets/common/items/armor/chef/pants.ron +++ b/assets/common/items/armor/chef/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Chef Pants", - description: "", + legacy_name: "Chef Pants", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Chef"), diff --git a/assets/common/items/armor/cloth/druid/back.ron b/assets/common/items/armor/cloth/druid/back.ron index 7012e5e3a3..707e9fc97b 100644 --- a/assets/common/items/armor/cloth/druid/back.ron +++ b/assets/common/items/armor/cloth/druid/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Druid Cape", - description: "Incredibly light, with the essence of nature.", + legacy_name: "Druid Cape", + legacy_description: "Incredibly light, with the essence of nature.", kind: Armor(( kind: Back, stats: FromSet("Lifecloth"), diff --git a/assets/common/items/armor/cloth/druid/belt.ron b/assets/common/items/armor/cloth/druid/belt.ron index 75ef20e219..a50fc7d13d 100644 --- a/assets/common/items/armor/cloth/druid/belt.ron +++ b/assets/common/items/armor/cloth/druid/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Druid Sash", - description: "Incredibly light, with the essence of nature.", + legacy_name: "Druid Sash", + legacy_description: "Incredibly light, with the essence of nature.", kind: Armor(( kind: Belt, stats: FromSet("Lifecloth"), diff --git a/assets/common/items/armor/cloth/druid/chest.ron b/assets/common/items/armor/cloth/druid/chest.ron index fa7e7f8237..aeb68f51f3 100644 --- a/assets/common/items/armor/cloth/druid/chest.ron +++ b/assets/common/items/armor/cloth/druid/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Druid Chestguard", - description: "Incredibly light, with the essence of nature.", + legacy_name: "Druid Chestguard", + legacy_description: "Incredibly light, with the essence of nature.", kind: Armor(( kind: Chest, stats: FromSet("Lifecloth"), diff --git a/assets/common/items/armor/cloth/druid/foot.ron b/assets/common/items/armor/cloth/druid/foot.ron index d978dd380e..4db383c3e9 100644 --- a/assets/common/items/armor/cloth/druid/foot.ron +++ b/assets/common/items/armor/cloth/druid/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Druid Kickers", - description: "Incredibly light, with the essence of nature.", + legacy_name: "Druid Kickers", + legacy_description: "Incredibly light, with the essence of nature.", kind: Armor(( kind: Foot, stats: FromSet("Lifecloth"), diff --git a/assets/common/items/armor/cloth/druid/hand.ron b/assets/common/items/armor/cloth/druid/hand.ron index d92f1cd38b..70a4d8c437 100644 --- a/assets/common/items/armor/cloth/druid/hand.ron +++ b/assets/common/items/armor/cloth/druid/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Druid Handwraps", - description: "Incredibly light, with the essence of nature.", + legacy_name: "Druid Handwraps", + legacy_description: "Incredibly light, with the essence of nature.", kind: Armor(( kind: Hand, stats: FromSet("Lifecloth"), diff --git a/assets/common/items/armor/cloth/druid/pants.ron b/assets/common/items/armor/cloth/druid/pants.ron index 8da4cadf09..7d30f984d5 100644 --- a/assets/common/items/armor/cloth/druid/pants.ron +++ b/assets/common/items/armor/cloth/druid/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Druid Leggings", - description: "Incredibly light, with the essence of nature.", + legacy_name: "Druid Leggings", + legacy_description: "Incredibly light, with the essence of nature.", kind: Armor(( kind: Pants, stats: FromSet("Lifecloth"), diff --git a/assets/common/items/armor/cloth/druid/shoulder.ron b/assets/common/items/armor/cloth/druid/shoulder.ron index cd52de1616..f65eb172d6 100644 --- a/assets/common/items/armor/cloth/druid/shoulder.ron +++ b/assets/common/items/armor/cloth/druid/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Druid Shoulderpads", - description: "Incredibly light, with the essence of nature.", + legacy_name: "Druid Shoulderpads", + legacy_description: "Incredibly light, with the essence of nature.", kind: Armor(( kind: Shoulder, stats: FromSet("Lifecloth"), diff --git a/assets/common/items/armor/cloth/linen/back.ron b/assets/common/items/armor/cloth/linen/back.ron index 39320bb8aa..4285a84e43 100644 --- a/assets/common/items/armor/cloth/linen/back.ron +++ b/assets/common/items/armor/cloth/linen/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen Shawl", - description: "Roughly stitched, but it seems to hold.", + legacy_name: "Linen Shawl", + legacy_description: "Roughly stitched, but it seems to hold.", kind: Armor(( kind: Back, stats: FromSet("Linen"), diff --git a/assets/common/items/armor/cloth/linen/belt.ron b/assets/common/items/armor/cloth/linen/belt.ron index 4687537a8e..966bd09572 100644 --- a/assets/common/items/armor/cloth/linen/belt.ron +++ b/assets/common/items/armor/cloth/linen/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen Sash", - description: "Roughly stitched, but it seems to hold.", + legacy_name: "Linen Sash", + legacy_description: "Roughly stitched, but it seems to hold.", kind: Armor(( kind: Belt, stats: FromSet("Linen"), diff --git a/assets/common/items/armor/cloth/linen/chest.ron b/assets/common/items/armor/cloth/linen/chest.ron index 9febe477ab..911db7a99e 100644 --- a/assets/common/items/armor/cloth/linen/chest.ron +++ b/assets/common/items/armor/cloth/linen/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen Vest", - description: "Roughly stitched, but it seems to hold.", + legacy_name: "Linen Vest", + legacy_description: "Roughly stitched, but it seems to hold.", kind: Armor(( kind: Chest, stats: FromSet("Linen"), diff --git a/assets/common/items/armor/cloth/linen/foot.ron b/assets/common/items/armor/cloth/linen/foot.ron index adc36e1a9f..193af6c0b4 100644 --- a/assets/common/items/armor/cloth/linen/foot.ron +++ b/assets/common/items/armor/cloth/linen/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen Feet", - description: "Roughly stitched, but it seems to hold.", + legacy_name: "Linen Feet", + legacy_description: "Roughly stitched, but it seems to hold.", kind: Armor(( kind: Foot, stats: FromSet("Linen"), diff --git a/assets/common/items/armor/cloth/linen/hand.ron b/assets/common/items/armor/cloth/linen/hand.ron index 69a4a95682..9318f676f7 100644 --- a/assets/common/items/armor/cloth/linen/hand.ron +++ b/assets/common/items/armor/cloth/linen/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen Handwraps", - description: "Roughly stitched, but it seems to hold.", + legacy_name: "Linen Handwraps", + legacy_description: "Roughly stitched, but it seems to hold.", kind: Armor(( kind: Hand, stats: FromSet("Linen"), diff --git a/assets/common/items/armor/cloth/linen/pants.ron b/assets/common/items/armor/cloth/linen/pants.ron index 628051583f..6f9bfbed5a 100644 --- a/assets/common/items/armor/cloth/linen/pants.ron +++ b/assets/common/items/armor/cloth/linen/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen Pants", - description: "Roughly stitched, but it seems to hold.", + legacy_name: "Linen Pants", + legacy_description: "Roughly stitched, but it seems to hold.", kind: Armor(( kind: Pants, stats: FromSet("Linen"), diff --git a/assets/common/items/armor/cloth/linen/shoulder.ron b/assets/common/items/armor/cloth/linen/shoulder.ron index e0cc2fe5f7..a5b8b1151a 100644 --- a/assets/common/items/armor/cloth/linen/shoulder.ron +++ b/assets/common/items/armor/cloth/linen/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen Shoulders", - description: "Roughly stitched, but it seems to hold.", + legacy_name: "Linen Shoulders", + legacy_description: "Roughly stitched, but it seems to hold.", kind: Armor(( kind: Shoulder, stats: FromSet("Linen"), diff --git a/assets/common/items/armor/cloth/moonweave/back.ron b/assets/common/items/armor/cloth/moonweave/back.ron index a7dadf0bf0..eb16c3ff01 100644 --- a/assets/common/items/armor/cloth/moonweave/back.ron +++ b/assets/common/items/armor/cloth/moonweave/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave Cape", - description: "The fabric dances silently, like moonlight.", + legacy_name: "Moonweave Cape", + legacy_description: "The fabric dances silently, like moonlight.", kind: Armor(( kind: Back, stats: FromSet("Moonweave"), diff --git a/assets/common/items/armor/cloth/moonweave/belt.ron b/assets/common/items/armor/cloth/moonweave/belt.ron index 6bc8b31f17..5a729fa3dd 100644 --- a/assets/common/items/armor/cloth/moonweave/belt.ron +++ b/assets/common/items/armor/cloth/moonweave/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave Belt", - description: "The fabric dances silently, like moonlight.", + legacy_name: "Moonweave Belt", + legacy_description: "The fabric dances silently, like moonlight.", kind: Armor(( kind: Belt, stats: FromSet("Moonweave"), diff --git a/assets/common/items/armor/cloth/moonweave/chest.ron b/assets/common/items/armor/cloth/moonweave/chest.ron index fd6bad4e98..f07839410e 100644 --- a/assets/common/items/armor/cloth/moonweave/chest.ron +++ b/assets/common/items/armor/cloth/moonweave/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave Vest", - description: "The fabric dances silently, like moonlight.", + legacy_name: "Moonweave Vest", + legacy_description: "The fabric dances silently, like moonlight.", kind: Armor(( kind: Chest, stats: FromSet("Moonweave"), diff --git a/assets/common/items/armor/cloth/moonweave/foot.ron b/assets/common/items/armor/cloth/moonweave/foot.ron index 3dbee0c253..2e09114359 100644 --- a/assets/common/items/armor/cloth/moonweave/foot.ron +++ b/assets/common/items/armor/cloth/moonweave/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave Boots", - description: "The fabric dances silently, like moonlight.", + legacy_name: "Moonweave Boots", + legacy_description: "The fabric dances silently, like moonlight.", kind: Armor(( kind: Foot, stats: FromSet("Moonweave"), diff --git a/assets/common/items/armor/cloth/moonweave/hand.ron b/assets/common/items/armor/cloth/moonweave/hand.ron index 8324fd1c5a..47f777cb14 100644 --- a/assets/common/items/armor/cloth/moonweave/hand.ron +++ b/assets/common/items/armor/cloth/moonweave/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave Gloves", - description: "The fabric dances silently, like moonlight.", + legacy_name: "Moonweave Gloves", + legacy_description: "The fabric dances silently, like moonlight.", kind: Armor(( kind: Hand, stats: FromSet("Moonweave"), diff --git a/assets/common/items/armor/cloth/moonweave/pants.ron b/assets/common/items/armor/cloth/moonweave/pants.ron index b159db5ee0..19696fba09 100644 --- a/assets/common/items/armor/cloth/moonweave/pants.ron +++ b/assets/common/items/armor/cloth/moonweave/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave Legs", - description: "The fabric dances silently, like moonlight.", + legacy_name: "Moonweave Legs", + legacy_description: "The fabric dances silently, like moonlight.", kind: Armor(( kind: Pants, stats: FromSet("Moonweave"), diff --git a/assets/common/items/armor/cloth/moonweave/shoulder.ron b/assets/common/items/armor/cloth/moonweave/shoulder.ron index 44bf9cbcf0..f404ba967f 100644 --- a/assets/common/items/armor/cloth/moonweave/shoulder.ron +++ b/assets/common/items/armor/cloth/moonweave/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave Shoulders", - description: "The fabric dances silently, like moonlight.", + legacy_name: "Moonweave Shoulders", + legacy_description: "The fabric dances silently, like moonlight.", kind: Armor(( kind: Shoulder, stats: FromSet("Moonweave"), diff --git a/assets/common/items/armor/cloth/silken/back.ron b/assets/common/items/armor/cloth/silken/back.ron index db8db346a1..1732961a3b 100644 --- a/assets/common/items/armor/cloth/silken/back.ron +++ b/assets/common/items/armor/cloth/silken/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silken Cape", - description: "Weaved with care by a skilled tailor.", + legacy_name: "Silken Cape", + legacy_description: "Weaved with care by a skilled tailor.", kind: Armor(( kind: Back, stats: FromSet("Silk"), diff --git a/assets/common/items/armor/cloth/silken/belt.ron b/assets/common/items/armor/cloth/silken/belt.ron index d2cbbf5634..ba4179be6f 100644 --- a/assets/common/items/armor/cloth/silken/belt.ron +++ b/assets/common/items/armor/cloth/silken/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silken Sash", - description: "Weaved with care by a skilled tailor.", + legacy_name: "Silken Sash", + legacy_description: "Weaved with care by a skilled tailor.", kind: Armor(( kind: Belt, stats: FromSet("Silk"), diff --git a/assets/common/items/armor/cloth/silken/chest.ron b/assets/common/items/armor/cloth/silken/chest.ron index cc80c1a8f6..3ea8ad2bba 100644 --- a/assets/common/items/armor/cloth/silken/chest.ron +++ b/assets/common/items/armor/cloth/silken/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silken Robe", - description: "Weaved with care by a skilled tailor.", + legacy_name: "Silken Robe", + legacy_description: "Weaved with care by a skilled tailor.", kind: Armor(( kind: Chest, stats: FromSet("Silk"), diff --git a/assets/common/items/armor/cloth/silken/foot.ron b/assets/common/items/armor/cloth/silken/foot.ron index 0f9f960748..94f6cdf4c8 100644 --- a/assets/common/items/armor/cloth/silken/foot.ron +++ b/assets/common/items/armor/cloth/silken/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silken Feet", - description: "Weaved with care by a skilled tailor.", + legacy_name: "Silken Feet", + legacy_description: "Weaved with care by a skilled tailor.", kind: Armor(( kind: Foot, stats: FromSet("Silk"), diff --git a/assets/common/items/armor/cloth/silken/hand.ron b/assets/common/items/armor/cloth/silken/hand.ron index 74e7b6eab4..98e805cf28 100644 --- a/assets/common/items/armor/cloth/silken/hand.ron +++ b/assets/common/items/armor/cloth/silken/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silken Wraps", - description: "Weaved with care by a skilled tailor.", + legacy_name: "Silken Wraps", + legacy_description: "Weaved with care by a skilled tailor.", kind: Armor(( kind: Hand, stats: FromSet("Silk"), diff --git a/assets/common/items/armor/cloth/silken/pants.ron b/assets/common/items/armor/cloth/silken/pants.ron index 29726bc5cc..50aa780407 100644 --- a/assets/common/items/armor/cloth/silken/pants.ron +++ b/assets/common/items/armor/cloth/silken/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silken Skirt", - description: "Weaved with care by a skilled tailor.", + legacy_name: "Silken Skirt", + legacy_description: "Weaved with care by a skilled tailor.", kind: Armor(( kind: Pants, stats: FromSet("Silk"), diff --git a/assets/common/items/armor/cloth/silken/shoulder.ron b/assets/common/items/armor/cloth/silken/shoulder.ron index 66236e9e45..d49c01a10c 100644 --- a/assets/common/items/armor/cloth/silken/shoulder.ron +++ b/assets/common/items/armor/cloth/silken/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silken Shoulders", - description: "Weaved with care by a skilled tailor.", + legacy_name: "Silken Shoulders", + legacy_description: "Weaved with care by a skilled tailor.", kind: Armor(( kind: Shoulder, stats: FromSet("Silk"), diff --git a/assets/common/items/armor/cloth/sunsilk/back.ron b/assets/common/items/armor/cloth/sunsilk/back.ron index a5e84a1ae7..74678ba35d 100644 --- a/assets/common/items/armor/cloth/sunsilk/back.ron +++ b/assets/common/items/armor/cloth/sunsilk/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk Cape", - description: "It radiates with the sun's power, and the grace to harness it.", + legacy_name: "Sunsilk Cape", + legacy_description: "It radiates with the sun's power, and the grace to harness it.", kind: Armor(( kind: Back, stats: FromSet("Sunsilk"), diff --git a/assets/common/items/armor/cloth/sunsilk/belt.ron b/assets/common/items/armor/cloth/sunsilk/belt.ron index eda42a7b95..27a5fe29a7 100644 --- a/assets/common/items/armor/cloth/sunsilk/belt.ron +++ b/assets/common/items/armor/cloth/sunsilk/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk Sash", - description: "It radiates with the sun's power, and the grace to harness it.", + legacy_name: "Sunsilk Sash", + legacy_description: "It radiates with the sun's power, and the grace to harness it.", kind: Armor(( kind: Belt, stats: FromSet("Sunsilk"), diff --git a/assets/common/items/armor/cloth/sunsilk/chest.ron b/assets/common/items/armor/cloth/sunsilk/chest.ron index 9db73d73f5..baef75bbce 100644 --- a/assets/common/items/armor/cloth/sunsilk/chest.ron +++ b/assets/common/items/armor/cloth/sunsilk/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk Tunic", - description: "It radiates with the sun's power, and the grace to harness it.", + legacy_name: "Sunsilk Tunic", + legacy_description: "It radiates with the sun's power, and the grace to harness it.", kind: Armor(( kind: Chest, stats: FromSet("Sunsilk"), diff --git a/assets/common/items/armor/cloth/sunsilk/foot.ron b/assets/common/items/armor/cloth/sunsilk/foot.ron index f0f084671c..9ff2c96498 100644 --- a/assets/common/items/armor/cloth/sunsilk/foot.ron +++ b/assets/common/items/armor/cloth/sunsilk/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk Footwraps", - description: "It radiates with the sun's power, and the grace to harness it.", + legacy_name: "Sunsilk Footwraps", + legacy_description: "It radiates with the sun's power, and the grace to harness it.", kind: Armor(( kind: Foot, stats: FromSet("Sunsilk"), diff --git a/assets/common/items/armor/cloth/sunsilk/hand.ron b/assets/common/items/armor/cloth/sunsilk/hand.ron index af51017070..7f1072214a 100644 --- a/assets/common/items/armor/cloth/sunsilk/hand.ron +++ b/assets/common/items/armor/cloth/sunsilk/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk Handwraps", - description: "It radiates with the sun's power, and the grace to harness it.", + legacy_name: "Sunsilk Handwraps", + legacy_description: "It radiates with the sun's power, and the grace to harness it.", kind: Armor(( kind: Hand, stats: FromSet("Sunsilk"), diff --git a/assets/common/items/armor/cloth/sunsilk/pants.ron b/assets/common/items/armor/cloth/sunsilk/pants.ron index cbc0fb0529..d5e55adaa4 100644 --- a/assets/common/items/armor/cloth/sunsilk/pants.ron +++ b/assets/common/items/armor/cloth/sunsilk/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk Kilt", - description: "It radiates with the sun's power, and the grace to harness it.", + legacy_name: "Sunsilk Kilt", + legacy_description: "It radiates with the sun's power, and the grace to harness it.", kind: Armor(( kind: Pants, stats: FromSet("Sunsilk"), diff --git a/assets/common/items/armor/cloth/sunsilk/shoulder.ron b/assets/common/items/armor/cloth/sunsilk/shoulder.ron index 553663054d..8916624fa4 100644 --- a/assets/common/items/armor/cloth/sunsilk/shoulder.ron +++ b/assets/common/items/armor/cloth/sunsilk/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk Shoulderwraps", - description: "It radiates with the sun's power, and the grace to harness it.", + legacy_name: "Sunsilk Shoulderwraps", + legacy_description: "It radiates with the sun's power, and the grace to harness it.", kind: Armor(( kind: Shoulder, stats: FromSet("Sunsilk"), diff --git a/assets/common/items/armor/cloth/woolen/back.ron b/assets/common/items/armor/cloth/woolen/back.ron index 0555914239..53c8ccf7a3 100644 --- a/assets/common/items/armor/cloth/woolen/back.ron +++ b/assets/common/items/armor/cloth/woolen/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolen Cloak", - description: "Thick and ready for the snow.", + legacy_name: "Woolen Cloak", + legacy_description: "Thick and ready for the snow.", kind: Armor(( kind: Back, stats: FromSet("Wool"), diff --git a/assets/common/items/armor/cloth/woolen/belt.ron b/assets/common/items/armor/cloth/woolen/belt.ron index 8287bff732..b0d2f1d638 100644 --- a/assets/common/items/armor/cloth/woolen/belt.ron +++ b/assets/common/items/armor/cloth/woolen/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolen Belt", - description: "Thick and ready for the snow.", + legacy_name: "Woolen Belt", + legacy_description: "Thick and ready for the snow.", kind: Armor(( kind: Belt, stats: FromSet("Wool"), diff --git a/assets/common/items/armor/cloth/woolen/chest.ron b/assets/common/items/armor/cloth/woolen/chest.ron index 47ec62be52..1baabe5286 100644 --- a/assets/common/items/armor/cloth/woolen/chest.ron +++ b/assets/common/items/armor/cloth/woolen/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolen Parka", - description: "Thick and ready for the snow.", + legacy_name: "Woolen Parka", + legacy_description: "Thick and ready for the snow.", kind: Armor(( kind: Chest, stats: FromSet("Wool"), diff --git a/assets/common/items/armor/cloth/woolen/foot.ron b/assets/common/items/armor/cloth/woolen/foot.ron index e406fdd993..eecc685738 100644 --- a/assets/common/items/armor/cloth/woolen/foot.ron +++ b/assets/common/items/armor/cloth/woolen/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolen Boots", - description: "Thick and ready for the snow.", + legacy_name: "Woolen Boots", + legacy_description: "Thick and ready for the snow.", kind: Armor(( kind: Foot, stats: FromSet("Wool"), diff --git a/assets/common/items/armor/cloth/woolen/hand.ron b/assets/common/items/armor/cloth/woolen/hand.ron index dc013e92c6..5a4770810f 100644 --- a/assets/common/items/armor/cloth/woolen/hand.ron +++ b/assets/common/items/armor/cloth/woolen/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolen Mittens", - description: "Thick and ready for the snow.", + legacy_name: "Woolen Mittens", + legacy_description: "Thick and ready for the snow.", kind: Armor(( kind: Hand, stats: FromSet("Wool"), diff --git a/assets/common/items/armor/cloth/woolen/pants.ron b/assets/common/items/armor/cloth/woolen/pants.ron index 69d67e68f7..6ee22afd55 100644 --- a/assets/common/items/armor/cloth/woolen/pants.ron +++ b/assets/common/items/armor/cloth/woolen/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolen Pants", - description: "Thick and ready for the snow.", + legacy_name: "Woolen Pants", + legacy_description: "Thick and ready for the snow.", kind: Armor(( kind: Pants, stats: FromSet("Wool"), diff --git a/assets/common/items/armor/cloth/woolen/shoulder.ron b/assets/common/items/armor/cloth/woolen/shoulder.ron index 1c7b66edea..cc9ea5eeb8 100644 --- a/assets/common/items/armor/cloth/woolen/shoulder.ron +++ b/assets/common/items/armor/cloth/woolen/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolen Shoulders", - description: "Thick and ready for the snow.", + legacy_name: "Woolen Shoulders", + legacy_description: "Thick and ready for the snow.", kind: Armor(( kind: Shoulder, stats: FromSet("Wool"), diff --git a/assets/common/items/armor/cloth_blue/belt.ron b/assets/common/items/armor/cloth_blue/belt.ron index cd8ec95cc5..178b1e4ba3 100644 --- a/assets/common/items/armor/cloth_blue/belt.ron +++ b/assets/common/items/armor/cloth_blue/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Linen Belt", - description: "A stylish rough fabric belt, dyed blue.", + legacy_name: "Blue Linen Belt", + legacy_description: "A stylish rough fabric belt, dyed blue.", kind: Armor(( kind: Belt, stats: FromSet("Cloth Blue"), diff --git a/assets/common/items/armor/cloth_blue/chest.ron b/assets/common/items/armor/cloth_blue/chest.ron index 4c75cd0f6a..22c466fd76 100644 --- a/assets/common/items/armor/cloth_blue/chest.ron +++ b/assets/common/items/armor/cloth_blue/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Linen Chest", - description: "A stylish rough fabric surcoat, dyed blue.", + legacy_name: "Blue Linen Chest", + legacy_description: "A stylish rough fabric surcoat, dyed blue.", kind: Armor(( kind: Chest, stats: FromSet("Cloth Blue"), diff --git a/assets/common/items/armor/cloth_blue/foot.ron b/assets/common/items/armor/cloth_blue/foot.ron index 6a9dd5af66..acc8dcd091 100644 --- a/assets/common/items/armor/cloth_blue/foot.ron +++ b/assets/common/items/armor/cloth_blue/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Linen Boots", - description: "Cobbled rough fabric boots, dyed blue.", + legacy_name: "Blue Linen Boots", + legacy_description: "Cobbled rough fabric boots, dyed blue.", kind: Armor(( kind: Foot, stats: FromSet("Cloth Blue"), diff --git a/assets/common/items/armor/cloth_blue/hand.ron b/assets/common/items/armor/cloth_blue/hand.ron index 70de693153..1dda969162 100644 --- a/assets/common/items/armor/cloth_blue/hand.ron +++ b/assets/common/items/armor/cloth_blue/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Linen Wrists", - description: "Rough cloth bracelets provide a stylish fashion statement, dyed blue.", + legacy_name: "Blue Linen Wrists", + legacy_description: "Rough cloth bracelets provide a stylish fashion statement, dyed blue.", kind: Armor(( kind: Hand, stats: FromSet("Cloth Blue"), diff --git a/assets/common/items/armor/cloth_blue/pants.ron b/assets/common/items/armor/cloth_blue/pants.ron index 1087e782f4..d44603d9a7 100644 --- a/assets/common/items/armor/cloth_blue/pants.ron +++ b/assets/common/items/armor/cloth_blue/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Linen Skirt", - description: "A stylish, rough fabric skirt, dyed blue.", + legacy_name: "Blue Linen Skirt", + legacy_description: "A stylish, rough fabric skirt, dyed blue.", kind: Armor(( kind: Pants, stats: FromSet("Cloth Blue"), diff --git a/assets/common/items/armor/cloth_blue/shoulder_0.ron b/assets/common/items/armor/cloth_blue/shoulder_0.ron index 8c619a4e30..3a12ec48ca 100644 --- a/assets/common/items/armor/cloth_blue/shoulder_0.ron +++ b/assets/common/items/armor/cloth_blue/shoulder_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Linen Coat", - description: "A rough fabric coat, dyed blue.", + legacy_name: "Blue Linen Coat", + legacy_description: "A rough fabric coat, dyed blue.", kind: Armor(( kind: Shoulder, stats: FromSet("Cloth Blue"), diff --git a/assets/common/items/armor/cloth_blue/shoulder_1.ron b/assets/common/items/armor/cloth_blue/shoulder_1.ron index 0b2ecfe491..837953aec2 100644 --- a/assets/common/items/armor/cloth_blue/shoulder_1.ron +++ b/assets/common/items/armor/cloth_blue/shoulder_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Cloth Pads", - description: "Simple shoulderpads made from blue cloth.", + legacy_name: "Blue Cloth Pads", + legacy_description: "Simple shoulderpads made from blue cloth.", kind: Armor(( kind: Shoulder, stats: FromSet("Cloth Blue"), diff --git a/assets/common/items/armor/cloth_green/belt.ron b/assets/common/items/armor/cloth_green/belt.ron index 1fcfc99ff2..a12e8d3b90 100644 --- a/assets/common/items/armor/cloth_green/belt.ron +++ b/assets/common/items/armor/cloth_green/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Linen Belt", - description: "A stylish rough fabric belt, dyed green.", + legacy_name: "Green Linen Belt", + legacy_description: "A stylish rough fabric belt, dyed green.", kind: Armor(( kind: Belt, stats: FromSet("Cloth Green"), diff --git a/assets/common/items/armor/cloth_green/chest.ron b/assets/common/items/armor/cloth_green/chest.ron index 68a78756a4..489a0935f6 100644 --- a/assets/common/items/armor/cloth_green/chest.ron +++ b/assets/common/items/armor/cloth_green/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Linen Chest", - description: "A stylish rough fabric surcoat, dyed green.", + legacy_name: "Green Linen Chest", + legacy_description: "A stylish rough fabric surcoat, dyed green.", kind: Armor(( kind: Chest, stats: FromSet("Cloth Green"), diff --git a/assets/common/items/armor/cloth_green/foot.ron b/assets/common/items/armor/cloth_green/foot.ron index 42fd812bac..51974774db 100644 --- a/assets/common/items/armor/cloth_green/foot.ron +++ b/assets/common/items/armor/cloth_green/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Linen Boots", - description: "Cobbled rough fabric boots, dyed green.", + legacy_name: "Green Linen Boots", + legacy_description: "Cobbled rough fabric boots, dyed green.", kind: Armor(( kind: Foot, stats: FromSet("Cloth Green"), diff --git a/assets/common/items/armor/cloth_green/hand.ron b/assets/common/items/armor/cloth_green/hand.ron index 16ee51d5c7..b3471ca6d7 100644 --- a/assets/common/items/armor/cloth_green/hand.ron +++ b/assets/common/items/armor/cloth_green/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Linen Wrists", - description: "Rough cloth bracelets provide a stylish fashion statement, dyed green.", + legacy_name: "Green Linen Wrists", + legacy_description: "Rough cloth bracelets provide a stylish fashion statement, dyed green.", kind: Armor(( kind: Hand, stats: FromSet("Cloth Green"), diff --git a/assets/common/items/armor/cloth_green/pants.ron b/assets/common/items/armor/cloth_green/pants.ron index 590b3377f8..0e7d6e38ca 100644 --- a/assets/common/items/armor/cloth_green/pants.ron +++ b/assets/common/items/armor/cloth_green/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Linen Skirt", - description: "A stylish, rough fabric skirt, dyed green.", + legacy_name: "Green Linen Skirt", + legacy_description: "A stylish, rough fabric skirt, dyed green.", kind: Armor(( kind: Pants, stats: FromSet("Cloth Green"), diff --git a/assets/common/items/armor/cloth_green/shoulder.ron b/assets/common/items/armor/cloth_green/shoulder.ron index 092508c305..3f6cdfcc9e 100644 --- a/assets/common/items/armor/cloth_green/shoulder.ron +++ b/assets/common/items/armor/cloth_green/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Linen Coat", - description: "A rough fabric coat, dyed green.", + legacy_name: "Green Linen Coat", + legacy_description: "A rough fabric coat, dyed green.", kind: Armor(( kind: Shoulder, stats: FromSet("Cloth Green"), diff --git a/assets/common/items/armor/cloth_purple/belt.ron b/assets/common/items/armor/cloth_purple/belt.ron index b1a8e25395..cfc363a6fc 100644 --- a/assets/common/items/armor/cloth_purple/belt.ron +++ b/assets/common/items/armor/cloth_purple/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Linen Belt", - description: "A stylish rough fabric belt, dyed purple.", + legacy_name: "Purple Linen Belt", + legacy_description: "A stylish rough fabric belt, dyed purple.", kind: Armor(( kind: Belt, stats: FromSet("Cloth Purple"), diff --git a/assets/common/items/armor/cloth_purple/chest.ron b/assets/common/items/armor/cloth_purple/chest.ron index eabb39535f..65ad802c2b 100644 --- a/assets/common/items/armor/cloth_purple/chest.ron +++ b/assets/common/items/armor/cloth_purple/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Linen Chest", - description: "A stylish rough fabric surcoat, dyed purple.", + legacy_name: "Purple Linen Chest", + legacy_description: "A stylish rough fabric surcoat, dyed purple.", kind: Armor(( kind: Chest, stats: FromSet("Cloth Purple"), diff --git a/assets/common/items/armor/cloth_purple/foot.ron b/assets/common/items/armor/cloth_purple/foot.ron index a8283fe2c0..f657f7c9ed 100644 --- a/assets/common/items/armor/cloth_purple/foot.ron +++ b/assets/common/items/armor/cloth_purple/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Linen Boots", - description: "Cobbled rough fabric boots, dyed purple.", + legacy_name: "Purple Linen Boots", + legacy_description: "Cobbled rough fabric boots, dyed purple.", kind: Armor(( kind: Foot, stats: FromSet("Cloth Purple"), diff --git a/assets/common/items/armor/cloth_purple/hand.ron b/assets/common/items/armor/cloth_purple/hand.ron index ecc8f41298..f3f7bfa69e 100644 --- a/assets/common/items/armor/cloth_purple/hand.ron +++ b/assets/common/items/armor/cloth_purple/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Linen Wrists", - description: "Rough cloth bracelets provide a stylish fashion statement, dyed purple.", + legacy_name: "Purple Linen Wrists", + legacy_description: "Rough cloth bracelets provide a stylish fashion statement, dyed purple.", kind: Armor(( kind: Hand, stats: FromSet("Cloth Purple"), diff --git a/assets/common/items/armor/cloth_purple/pants.ron b/assets/common/items/armor/cloth_purple/pants.ron index 1533d65ce6..e14392e456 100644 --- a/assets/common/items/armor/cloth_purple/pants.ron +++ b/assets/common/items/armor/cloth_purple/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Linen Skirt", - description: "A stylish, rough fabric skirt, dyed purple.", + legacy_name: "Purple Linen Skirt", + legacy_description: "A stylish, rough fabric skirt, dyed purple.", kind: Armor(( kind: Pants, stats: FromSet("Cloth Purple"), diff --git a/assets/common/items/armor/cloth_purple/shoulder.ron b/assets/common/items/armor/cloth_purple/shoulder.ron index c6815e2c50..ce89848616 100644 --- a/assets/common/items/armor/cloth_purple/shoulder.ron +++ b/assets/common/items/armor/cloth_purple/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Linen Coat", - description: "A rough fabric coat, dyed purple.", + legacy_name: "Purple Linen Coat", + legacy_description: "A rough fabric coat, dyed purple.", kind: Armor(( kind: Shoulder, stats: FromSet("Cloth Purple"), diff --git a/assets/common/items/armor/cultist/bandana.ron b/assets/common/items/armor/cultist/bandana.ron index 9ffa1976a5..0d6dfc3c86 100644 --- a/assets/common/items/armor/cultist/bandana.ron +++ b/assets/common/items/armor/cultist/bandana.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Bandana", - description: "Ceremonial attire used by members.", + legacy_name: "Cultist Bandana", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/cultist/belt.ron b/assets/common/items/armor/cultist/belt.ron index 3cc9661407..fb7181fc2d 100644 --- a/assets/common/items/armor/cultist/belt.ron +++ b/assets/common/items/armor/cultist/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Belt", - description: "Ceremonial attire used by members.", + legacy_name: "Cultist Belt", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: FromSet("Cultist"), diff --git a/assets/common/items/armor/cultist/chest.ron b/assets/common/items/armor/cultist/chest.ron index 4dae8cda0b..8805072c97 100644 --- a/assets/common/items/armor/cultist/chest.ron +++ b/assets/common/items/armor/cultist/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Chest", - description: "Ceremonial attire used by members.", + legacy_name: "Cultist Chest", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: FromSet("Cultist"), diff --git a/assets/common/items/armor/cultist/foot.ron b/assets/common/items/armor/cultist/foot.ron index 567163434e..c11733a5d8 100644 --- a/assets/common/items/armor/cultist/foot.ron +++ b/assets/common/items/armor/cultist/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Boots", - description: "Ceremonial attire used by members.", + legacy_name: "Cultist Boots", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: FromSet("Cultist"), diff --git a/assets/common/items/armor/cultist/hand.ron b/assets/common/items/armor/cultist/hand.ron index 90d48879ae..0eb11aa79d 100644 --- a/assets/common/items/armor/cultist/hand.ron +++ b/assets/common/items/armor/cultist/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Gloves", - description: "Ceremonial attire used by members.", + legacy_name: "Cultist Gloves", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Hand, stats: FromSet("Cultist"), diff --git a/assets/common/items/armor/cultist/necklace.ron b/assets/common/items/armor/cultist/necklace.ron index 73d9f3fdc6..6985ee4eb8 100644 --- a/assets/common/items/armor/cultist/necklace.ron +++ b/assets/common/items/armor/cultist/necklace.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Amulet", - description: "You can still feel the Mindflayer's presence within this amulet...", + legacy_name: "Cultist Amulet", + legacy_description: "You can still feel the Mindflayer's presence within this amulet...", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/cultist/pants.ron b/assets/common/items/armor/cultist/pants.ron index 79540e02ea..f082097d4f 100644 --- a/assets/common/items/armor/cultist/pants.ron +++ b/assets/common/items/armor/cultist/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Skirt", - description: "Ceremonial attire used by members.", + legacy_name: "Cultist Skirt", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Pants, stats: FromSet("Cultist"), diff --git a/assets/common/items/armor/cultist/ring.ron b/assets/common/items/armor/cultist/ring.ron index c6a117df76..c73c750967 100644 --- a/assets/common/items/armor/cultist/ring.ron +++ b/assets/common/items/armor/cultist/ring.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Signet Ring", - description: "Once belonged to a cultist.", + legacy_name: "Cultist Signet Ring", + legacy_description: "Once belonged to a cultist.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/cultist/shoulder.ron b/assets/common/items/armor/cultist/shoulder.ron index 09bba89e87..9028a5f956 100644 --- a/assets/common/items/armor/cultist/shoulder.ron +++ b/assets/common/items/armor/cultist/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Mantle", - description: "Ceremonial attire used by members.", + legacy_name: "Cultist Mantle", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Shoulder, stats: FromSet("Cultist"), diff --git a/assets/common/items/armor/ferocious/back.ron b/assets/common/items/armor/ferocious/back.ron index 0cbfc6bb6d..08c5818337 100644 --- a/assets/common/items/armor/ferocious/back.ron +++ b/assets/common/items/armor/ferocious/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ferocious Mantle", - description: "The dark side of nature", + legacy_name: "Ferocious Mantle", + legacy_description: "The dark side of nature", kind: Armor(( kind: Back, stats: FromSet("Ferocious"), diff --git a/assets/common/items/armor/ferocious/belt.ron b/assets/common/items/armor/ferocious/belt.ron index 6cc72fa7f6..0f26d3d1d0 100644 --- a/assets/common/items/armor/ferocious/belt.ron +++ b/assets/common/items/armor/ferocious/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ferocious Sash", - description: "The dark side of nature", + legacy_name: "Ferocious Sash", + legacy_description: "The dark side of nature", kind: Armor(( kind: Belt, stats: FromSet("Ferocious"), diff --git a/assets/common/items/armor/ferocious/chest.ron b/assets/common/items/armor/ferocious/chest.ron index 4e3efd16d5..bf365c1946 100644 --- a/assets/common/items/armor/ferocious/chest.ron +++ b/assets/common/items/armor/ferocious/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ferocious Shirt", - description: "The dark side of nature", + legacy_name: "Ferocious Shirt", + legacy_description: "The dark side of nature", kind: Armor(( kind: Chest, stats: FromSet("Ferocious"), diff --git a/assets/common/items/armor/ferocious/foot.ron b/assets/common/items/armor/ferocious/foot.ron index 47d5b25fdc..1cb681b648 100644 --- a/assets/common/items/armor/ferocious/foot.ron +++ b/assets/common/items/armor/ferocious/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ferocious Waraji", - description: "The dark side of nature", + legacy_name: "Ferocious Waraji", + legacy_description: "The dark side of nature", kind: Armor(( kind: Foot, stats: FromSet("Ferocious"), diff --git a/assets/common/items/armor/ferocious/hand.ron b/assets/common/items/armor/ferocious/hand.ron index 84125c4ac0..a83be007f2 100644 --- a/assets/common/items/armor/ferocious/hand.ron +++ b/assets/common/items/armor/ferocious/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ferocious Wraps", - description: "The dark side of nature", + legacy_name: "Ferocious Wraps", + legacy_description: "The dark side of nature", kind: Armor(( kind: Hand, stats: FromSet("Ferocious"), diff --git a/assets/common/items/armor/ferocious/pants.ron b/assets/common/items/armor/ferocious/pants.ron index 3b60a847d9..ec7e5c36db 100644 --- a/assets/common/items/armor/ferocious/pants.ron +++ b/assets/common/items/armor/ferocious/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ferocious Shorts", - description: "The dark side of nature", + legacy_name: "Ferocious Shorts", + legacy_description: "The dark side of nature", kind: Armor(( kind: Pants, stats: FromSet("Ferocious"), diff --git a/assets/common/items/armor/ferocious/shoulder.ron b/assets/common/items/armor/ferocious/shoulder.ron index 83c30c030d..069172d2ea 100644 --- a/assets/common/items/armor/ferocious/shoulder.ron +++ b/assets/common/items/armor/ferocious/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ferocious Guards", - description: "The dark side of nature", + legacy_name: "Ferocious Guards", + legacy_description: "The dark side of nature", kind: Armor(( kind: Shoulder, stats: FromSet("Ferocious"), diff --git a/assets/common/items/armor/hide/carapace/back.ron b/assets/common/items/armor/hide/carapace/back.ron index abec198dc1..a5a0c986eb 100644 --- a/assets/common/items/armor/hide/carapace/back.ron +++ b/assets/common/items/armor/hide/carapace/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carapace Cape", - description: "Made from the shell that once shielded a beast.", + legacy_name: "Carapace Cape", + legacy_description: "Made from the shell that once shielded a beast.", kind: Armor(( kind: Back, stats: FromSet("Carapace"), diff --git a/assets/common/items/armor/hide/carapace/belt.ron b/assets/common/items/armor/hide/carapace/belt.ron index 1dd4e13184..3a1fdce99b 100644 --- a/assets/common/items/armor/hide/carapace/belt.ron +++ b/assets/common/items/armor/hide/carapace/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carapace Belt", - description: "Made from the shell that once shielded a beast.", + legacy_name: "Carapace Belt", + legacy_description: "Made from the shell that once shielded a beast.", kind: Armor(( kind: Belt, stats: FromSet("Carapace"), diff --git a/assets/common/items/armor/hide/carapace/chest.ron b/assets/common/items/armor/hide/carapace/chest.ron index 0b24271d7d..06fbd6d8f1 100644 --- a/assets/common/items/armor/hide/carapace/chest.ron +++ b/assets/common/items/armor/hide/carapace/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carapace Cuirass", - description: "Made from the shell that once shielded a beast.", + legacy_name: "Carapace Cuirass", + legacy_description: "Made from the shell that once shielded a beast.", kind: Armor(( kind: Chest, stats: FromSet("Carapace"), diff --git a/assets/common/items/armor/hide/carapace/foot.ron b/assets/common/items/armor/hide/carapace/foot.ron index 154690e0d7..1a50119525 100644 --- a/assets/common/items/armor/hide/carapace/foot.ron +++ b/assets/common/items/armor/hide/carapace/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carapace Treads", - description: "Made from the shell that once shielded a beast.", + legacy_name: "Carapace Treads", + legacy_description: "Made from the shell that once shielded a beast.", kind: Armor(( kind: Foot, stats: FromSet("Carapace"), diff --git a/assets/common/items/armor/hide/carapace/hand.ron b/assets/common/items/armor/hide/carapace/hand.ron index 052db20f6e..674cd793aa 100644 --- a/assets/common/items/armor/hide/carapace/hand.ron +++ b/assets/common/items/armor/hide/carapace/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carapace Grips", - description: "Made from the shell that once shielded a beast.", + legacy_name: "Carapace Grips", + legacy_description: "Made from the shell that once shielded a beast.", kind: Armor(( kind: Hand, stats: FromSet("Carapace"), diff --git a/assets/common/items/armor/hide/carapace/pants.ron b/assets/common/items/armor/hide/carapace/pants.ron index 5b40ea0947..6a05561b91 100644 --- a/assets/common/items/armor/hide/carapace/pants.ron +++ b/assets/common/items/armor/hide/carapace/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carapace Leggings", - description: "Made from the shell that once shielded a beast.", + legacy_name: "Carapace Leggings", + legacy_description: "Made from the shell that once shielded a beast.", kind: Armor(( kind: Pants, stats: FromSet("Carapace"), diff --git a/assets/common/items/armor/hide/carapace/shoulder.ron b/assets/common/items/armor/hide/carapace/shoulder.ron index 06768a0d8d..6ee7ebc5dc 100644 --- a/assets/common/items/armor/hide/carapace/shoulder.ron +++ b/assets/common/items/armor/hide/carapace/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carapace Shoulderpads", - description: "Made from the shell that once shielded a beast.", + legacy_name: "Carapace Shoulderpads", + legacy_description: "Made from the shell that once shielded a beast.", kind: Armor(( kind: Shoulder, stats: FromSet("Carapace"), diff --git a/assets/common/items/armor/hide/dragonscale/back.ron b/assets/common/items/armor/hide/dragonscale/back.ron index 18eaed1cc5..69e0b82081 100644 --- a/assets/common/items/armor/hide/dragonscale/back.ron +++ b/assets/common/items/armor/hide/dragonscale/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragonscale Cape", - description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", + legacy_name: "Dragonscale Cape", + legacy_description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", kind: Armor(( kind: Back, stats: FromSet("Dragonscale"), diff --git a/assets/common/items/armor/hide/dragonscale/belt.ron b/assets/common/items/armor/hide/dragonscale/belt.ron index fbeab82ef8..6c0834cdf1 100644 --- a/assets/common/items/armor/hide/dragonscale/belt.ron +++ b/assets/common/items/armor/hide/dragonscale/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragonscale Sash", - description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", + legacy_name: "Dragonscale Sash", + legacy_description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", kind: Armor(( kind: Belt, stats: FromSet("Dragonscale"), diff --git a/assets/common/items/armor/hide/dragonscale/chest.ron b/assets/common/items/armor/hide/dragonscale/chest.ron index 40a9315ed6..2035195197 100644 --- a/assets/common/items/armor/hide/dragonscale/chest.ron +++ b/assets/common/items/armor/hide/dragonscale/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragonscale Chestplate", - description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", + legacy_name: "Dragonscale Chestplate", + legacy_description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", kind: Armor(( kind: Chest, stats: FromSet("Dragonscale"), diff --git a/assets/common/items/armor/hide/dragonscale/foot.ron b/assets/common/items/armor/hide/dragonscale/foot.ron index 9d5a39bbd9..0dd3d5d6aa 100644 --- a/assets/common/items/armor/hide/dragonscale/foot.ron +++ b/assets/common/items/armor/hide/dragonscale/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragonscale Spurs", - description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", + legacy_name: "Dragonscale Spurs", + legacy_description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", kind: Armor(( kind: Foot, stats: FromSet("Dragonscale"), diff --git a/assets/common/items/armor/hide/dragonscale/hand.ron b/assets/common/items/armor/hide/dragonscale/hand.ron index d6d228b042..60bb8a3c18 100644 --- a/assets/common/items/armor/hide/dragonscale/hand.ron +++ b/assets/common/items/armor/hide/dragonscale/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragonscale Gloves", - description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", + legacy_name: "Dragonscale Gloves", + legacy_description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", kind: Armor(( kind: Hand, stats: FromSet("Dragonscale"), diff --git a/assets/common/items/armor/hide/dragonscale/pants.ron b/assets/common/items/armor/hide/dragonscale/pants.ron index 733553708f..46fc370ca8 100644 --- a/assets/common/items/armor/hide/dragonscale/pants.ron +++ b/assets/common/items/armor/hide/dragonscale/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragonscale Leggings", - description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", + legacy_name: "Dragonscale Leggings", + legacy_description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", kind: Armor(( kind: Pants, stats: FromSet("Dragonscale"), diff --git a/assets/common/items/armor/hide/dragonscale/shoulder.ron b/assets/common/items/armor/hide/dragonscale/shoulder.ron index b6353ed649..674468a922 100644 --- a/assets/common/items/armor/hide/dragonscale/shoulder.ron +++ b/assets/common/items/armor/hide/dragonscale/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragonscale Mantle", - description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", + legacy_name: "Dragonscale Mantle", + legacy_description: "Crafted from the scales of a legendary creature, power can be felt pulsing through it.", kind: Armor(( kind: Shoulder, stats: FromSet("Dragonscale"), diff --git a/assets/common/items/armor/hide/leather/back.ron b/assets/common/items/armor/hide/leather/back.ron index 48a473438c..1acdfe172e 100644 --- a/assets/common/items/armor/hide/leather/back.ron +++ b/assets/common/items/armor/hide/leather/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Cloak", - description: "Swift like the wind.", + legacy_name: "Leather Cloak", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Back, stats: FromSet("Leather"), diff --git a/assets/common/items/armor/hide/leather/belt.ron b/assets/common/items/armor/hide/leather/belt.ron index a4e7b37944..1093f49ca9 100644 --- a/assets/common/items/armor/hide/leather/belt.ron +++ b/assets/common/items/armor/hide/leather/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Belt", - description: "Swift like the wind.", + legacy_name: "Leather Belt", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Belt, stats: FromSet("Leather"), diff --git a/assets/common/items/armor/hide/leather/chest.ron b/assets/common/items/armor/hide/leather/chest.ron index d5802ac866..274530ad10 100644 --- a/assets/common/items/armor/hide/leather/chest.ron +++ b/assets/common/items/armor/hide/leather/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Chestpiece", - description: "Swift like the wind.", + legacy_name: "Leather Chestpiece", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Chest, stats: FromSet("Leather"), diff --git a/assets/common/items/armor/hide/leather/foot.ron b/assets/common/items/armor/hide/leather/foot.ron index f5f2bf2bfa..d8935e552e 100644 --- a/assets/common/items/armor/hide/leather/foot.ron +++ b/assets/common/items/armor/hide/leather/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Boots", - description: "Swift like the wind.", + legacy_name: "Leather Boots", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Foot, stats: FromSet("Leather"), diff --git a/assets/common/items/armor/hide/leather/hand.ron b/assets/common/items/armor/hide/leather/hand.ron index ff418e1ab6..574c4c88f8 100644 --- a/assets/common/items/armor/hide/leather/hand.ron +++ b/assets/common/items/armor/hide/leather/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Gloves", - description: "Swift like the wind.", + legacy_name: "Leather Gloves", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Hand, stats: FromSet("Leather"), diff --git a/assets/common/items/armor/hide/leather/head.ron b/assets/common/items/armor/hide/leather/head.ron index d5d174f559..cd14a785d5 100644 --- a/assets/common/items/armor/hide/leather/head.ron +++ b/assets/common/items/armor/hide/leather/head.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Cap", - description: "Swift like the wind.", + legacy_name: "Leather Cap", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/hide/leather/pants.ron b/assets/common/items/armor/hide/leather/pants.ron index b8c41eeec3..0ebb1e361f 100644 --- a/assets/common/items/armor/hide/leather/pants.ron +++ b/assets/common/items/armor/hide/leather/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Pants", - description: "Swift like the wind.", + legacy_name: "Leather Pants", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Pants, stats: FromSet("Leather"), diff --git a/assets/common/items/armor/hide/leather/shoulder.ron b/assets/common/items/armor/hide/leather/shoulder.ron index eaebecf2dd..6abea4842e 100644 --- a/assets/common/items/armor/hide/leather/shoulder.ron +++ b/assets/common/items/armor/hide/leather/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Shoulderpads", - description: "Swift like the wind.", + legacy_name: "Leather Shoulderpads", + legacy_description: "Swift like the wind.", kind: Armor(( kind: Shoulder, stats: FromSet("Leather"), diff --git a/assets/common/items/armor/hide/primal/back.ron b/assets/common/items/armor/hide/primal/back.ron index ed558bd344..b29b11e210 100644 --- a/assets/common/items/armor/hide/primal/back.ron +++ b/assets/common/items/armor/hide/primal/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Primal Cape", - description: "Smithed from hide tougher than steel.", + legacy_name: "Primal Cape", + legacy_description: "Smithed from hide tougher than steel.", kind: Armor(( kind: Back, stats: FromSet("Plate"), diff --git a/assets/common/items/armor/hide/primal/belt.ron b/assets/common/items/armor/hide/primal/belt.ron index a448f952a7..243a6f9689 100644 --- a/assets/common/items/armor/hide/primal/belt.ron +++ b/assets/common/items/armor/hide/primal/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Primal Sash", - description: "Smithed from hide tougher than steel.", + legacy_name: "Primal Sash", + legacy_description: "Smithed from hide tougher than steel.", kind: Armor(( kind: Belt, stats: FromSet("Plate"), diff --git a/assets/common/items/armor/hide/primal/chest.ron b/assets/common/items/armor/hide/primal/chest.ron index 6ea0f5a659..b03eb74191 100644 --- a/assets/common/items/armor/hide/primal/chest.ron +++ b/assets/common/items/armor/hide/primal/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Primal Cuirass", - description: "Smithed from hide tougher than steel.", + legacy_name: "Primal Cuirass", + legacy_description: "Smithed from hide tougher than steel.", kind: Armor(( kind: Chest, stats: FromSet("Plate"), diff --git a/assets/common/items/armor/hide/primal/foot.ron b/assets/common/items/armor/hide/primal/foot.ron index 0f0e90786f..789cd7fb31 100644 --- a/assets/common/items/armor/hide/primal/foot.ron +++ b/assets/common/items/armor/hide/primal/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Primal Boots", - description: "Smithed from hide tougher than steel.", + legacy_name: "Primal Boots", + legacy_description: "Smithed from hide tougher than steel.", kind: Armor(( kind: Foot, stats: FromSet("Plate"), diff --git a/assets/common/items/armor/hide/primal/hand.ron b/assets/common/items/armor/hide/primal/hand.ron index 81acf23c20..593d0fcd8e 100644 --- a/assets/common/items/armor/hide/primal/hand.ron +++ b/assets/common/items/armor/hide/primal/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Primal Gauntlets", - description: "Smithed from hide tougher than steel.", + legacy_name: "Primal Gauntlets", + legacy_description: "Smithed from hide tougher than steel.", kind: Armor(( kind: Hand, stats: FromSet("Plate"), diff --git a/assets/common/items/armor/hide/primal/pants.ron b/assets/common/items/armor/hide/primal/pants.ron index 57919eb5ad..bfe88b93ee 100644 --- a/assets/common/items/armor/hide/primal/pants.ron +++ b/assets/common/items/armor/hide/primal/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Primal Legs", - description: "Smithed from hide tougher than steel.", + legacy_name: "Primal Legs", + legacy_description: "Smithed from hide tougher than steel.", kind: Armor(( kind: Pants, stats: FromSet("Plate"), diff --git a/assets/common/items/armor/hide/primal/shoulder.ron b/assets/common/items/armor/hide/primal/shoulder.ron index c734b9e71b..912b5fd921 100644 --- a/assets/common/items/armor/hide/primal/shoulder.ron +++ b/assets/common/items/armor/hide/primal/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Primal Shoulders", - description: "Smithed from hide tougher than steel.", + legacy_name: "Primal Shoulders", + legacy_description: "Smithed from hide tougher than steel.", kind: Armor(( kind: Shoulder, stats: FromSet("Plate"), diff --git a/assets/common/items/armor/hide/rawhide/back.ron b/assets/common/items/armor/hide/rawhide/back.ron index 28bd644d9b..428e9705c3 100644 --- a/assets/common/items/armor/hide/rawhide/back.ron +++ b/assets/common/items/armor/hide/rawhide/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rawhide Cloak", - description: "Tightly packed pieces of leather. Light-weight and sturdy!", + legacy_name: "Rawhide Cloak", + legacy_description: "Tightly packed pieces of leather. Light-weight and sturdy!", kind: Armor(( kind: Back, stats: FromSet("Rawhide"), diff --git a/assets/common/items/armor/hide/rawhide/belt.ron b/assets/common/items/armor/hide/rawhide/belt.ron index 0cf0a5b1f0..dea0128370 100644 --- a/assets/common/items/armor/hide/rawhide/belt.ron +++ b/assets/common/items/armor/hide/rawhide/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rawhide Belt", - description: "Tightly packed pieces of leather. Light-weight and sturdy!", + legacy_name: "Rawhide Belt", + legacy_description: "Tightly packed pieces of leather. Light-weight and sturdy!", kind: Armor(( kind: Belt, stats: FromSet("Rawhide"), diff --git a/assets/common/items/armor/hide/rawhide/chest.ron b/assets/common/items/armor/hide/rawhide/chest.ron index 92e8520213..963d11181a 100644 --- a/assets/common/items/armor/hide/rawhide/chest.ron +++ b/assets/common/items/armor/hide/rawhide/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rawhide Chestpiece", - description: "Tightly packed pieces of leather. Light-weight and sturdy!", + legacy_name: "Rawhide Chestpiece", + legacy_description: "Tightly packed pieces of leather. Light-weight and sturdy!", kind: Armor(( kind: Chest, stats: FromSet("Rawhide"), diff --git a/assets/common/items/armor/hide/rawhide/foot.ron b/assets/common/items/armor/hide/rawhide/foot.ron index e9c24201a7..0db2edc043 100644 --- a/assets/common/items/armor/hide/rawhide/foot.ron +++ b/assets/common/items/armor/hide/rawhide/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rawhide Shoes", - description: "Tightly packed pieces of leather. Light-weight and sturdy!", + legacy_name: "Rawhide Shoes", + legacy_description: "Tightly packed pieces of leather. Light-weight and sturdy!", kind: Armor(( kind: Foot, stats: FromSet("Rawhide"), diff --git a/assets/common/items/armor/hide/rawhide/hand.ron b/assets/common/items/armor/hide/rawhide/hand.ron index 31c7bc841f..0379fd6e4a 100644 --- a/assets/common/items/armor/hide/rawhide/hand.ron +++ b/assets/common/items/armor/hide/rawhide/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rawhide Bracers", - description: "Tightly packed pieces of leather. Light-weight and sturdy!", + legacy_name: "Rawhide Bracers", + legacy_description: "Tightly packed pieces of leather. Light-weight and sturdy!", kind: Armor(( kind: Hand, stats: FromSet("Rawhide"), diff --git a/assets/common/items/armor/hide/rawhide/pants.ron b/assets/common/items/armor/hide/rawhide/pants.ron index 4608b845d5..3523757dab 100644 --- a/assets/common/items/armor/hide/rawhide/pants.ron +++ b/assets/common/items/armor/hide/rawhide/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rawhide Pants", - description: "Tightly packed pieces of leather. Light-weight and sturdy!", + legacy_name: "Rawhide Pants", + legacy_description: "Tightly packed pieces of leather. Light-weight and sturdy!", kind: Armor(( kind: Pants, stats: FromSet("Rawhide"), diff --git a/assets/common/items/armor/hide/rawhide/shoulder.ron b/assets/common/items/armor/hide/rawhide/shoulder.ron index 1da0b95d14..c8e07ed58d 100644 --- a/assets/common/items/armor/hide/rawhide/shoulder.ron +++ b/assets/common/items/armor/hide/rawhide/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rawhide Shoulderpads", - description: "Tightly packed pieces of leather. Light-weight and sturdy!", + legacy_name: "Rawhide Shoulderpads", + legacy_description: "Tightly packed pieces of leather. Light-weight and sturdy!", kind: Armor(( kind: Shoulder, stats: FromSet("Rawhide"), diff --git a/assets/common/items/armor/hide/scale/back.ron b/assets/common/items/armor/hide/scale/back.ron index 6c4c7f32de..d514504404 100644 --- a/assets/common/items/armor/hide/scale/back.ron +++ b/assets/common/items/armor/hide/scale/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale Cape", - description: "Each embedded scale provides additional protection.", + legacy_name: "Scale Cape", + legacy_description: "Each embedded scale provides additional protection.", kind: Armor(( kind: Back, stats: FromSet("Scale"), diff --git a/assets/common/items/armor/hide/scale/belt.ron b/assets/common/items/armor/hide/scale/belt.ron index e440102d34..9acff2a6b5 100644 --- a/assets/common/items/armor/hide/scale/belt.ron +++ b/assets/common/items/armor/hide/scale/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale Girdle", - description: "Each embedded scale provides additional protection.", + legacy_name: "Scale Girdle", + legacy_description: "Each embedded scale provides additional protection.", kind: Armor(( kind: Belt, stats: FromSet("Scale"), diff --git a/assets/common/items/armor/hide/scale/chest.ron b/assets/common/items/armor/hide/scale/chest.ron index 1cc83bb302..e4e26427c0 100644 --- a/assets/common/items/armor/hide/scale/chest.ron +++ b/assets/common/items/armor/hide/scale/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale Chestpiece", - description: "Each embedded scale provides additional protection.", + legacy_name: "Scale Chestpiece", + legacy_description: "Each embedded scale provides additional protection.", kind: Armor(( kind: Chest, stats: FromSet("Scale"), diff --git a/assets/common/items/armor/hide/scale/foot.ron b/assets/common/items/armor/hide/scale/foot.ron index 7a2ac62756..a31ac64efd 100644 --- a/assets/common/items/armor/hide/scale/foot.ron +++ b/assets/common/items/armor/hide/scale/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale Sabatons", - description: "Each embedded scale provides additional protection.", + legacy_name: "Scale Sabatons", + legacy_description: "Each embedded scale provides additional protection.", kind: Armor(( kind: Foot, stats: FromSet("Scale"), diff --git a/assets/common/items/armor/hide/scale/hand.ron b/assets/common/items/armor/hide/scale/hand.ron index 201faaa557..afc619a892 100644 --- a/assets/common/items/armor/hide/scale/hand.ron +++ b/assets/common/items/armor/hide/scale/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale Fists", - description: "Each embedded scale provides additional protection.", + legacy_name: "Scale Fists", + legacy_description: "Each embedded scale provides additional protection.", kind: Armor(( kind: Hand, stats: FromSet("Scale"), diff --git a/assets/common/items/armor/hide/scale/pants.ron b/assets/common/items/armor/hide/scale/pants.ron index 3cd7d4279e..7a418c06f6 100644 --- a/assets/common/items/armor/hide/scale/pants.ron +++ b/assets/common/items/armor/hide/scale/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale Leggings", - description: "Each embedded scale provides additional protection.", + legacy_name: "Scale Leggings", + legacy_description: "Each embedded scale provides additional protection.", kind: Armor(( kind: Pants, stats: FromSet("Scale"), diff --git a/assets/common/items/armor/hide/scale/shoulder.ron b/assets/common/items/armor/hide/scale/shoulder.ron index 52b97493b7..02046ef376 100644 --- a/assets/common/items/armor/hide/scale/shoulder.ron +++ b/assets/common/items/armor/hide/scale/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale Shoulderguards", - description: "Each embedded scale provides additional protection.", + legacy_name: "Scale Shoulderguards", + legacy_description: "Each embedded scale provides additional protection.", kind: Armor(( kind: Shoulder, stats: FromSet("Scale"), diff --git a/assets/common/items/armor/leather_plate/belt.ron b/assets/common/items/armor/leather_plate/belt.ron index 679aee0f71..eff54414d6 100644 --- a/assets/common/items/armor/leather_plate/belt.ron +++ b/assets/common/items/armor/leather_plate/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Plate Belt", - description: "Leather adorned with steel for better protection.", + legacy_name: "Leather Plate Belt", + legacy_description: "Leather adorned with steel for better protection.", kind: Armor(( kind: Belt, stats: FromSet("Leather Plate"), diff --git a/assets/common/items/armor/leather_plate/chest.ron b/assets/common/items/armor/leather_plate/chest.ron index c83330e9a9..300fffcbcb 100644 --- a/assets/common/items/armor/leather_plate/chest.ron +++ b/assets/common/items/armor/leather_plate/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Plate Chest", - description: "Leather adorned with steel for better protection.", + legacy_name: "Leather Plate Chest", + legacy_description: "Leather adorned with steel for better protection.", kind: Armor(( kind: Chest, stats: FromSet("Leather Plate"), diff --git a/assets/common/items/armor/leather_plate/foot.ron b/assets/common/items/armor/leather_plate/foot.ron index 0285683f84..d68667726e 100644 --- a/assets/common/items/armor/leather_plate/foot.ron +++ b/assets/common/items/armor/leather_plate/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Plate Boots", - description: "Leather adorned with steel for better protection.", + legacy_name: "Leather Plate Boots", + legacy_description: "Leather adorned with steel for better protection.", kind: Armor(( kind: Foot, stats: FromSet("Leather Plate"), diff --git a/assets/common/items/armor/leather_plate/hand.ron b/assets/common/items/armor/leather_plate/hand.ron index 8250cee62a..ff19f4c3e4 100644 --- a/assets/common/items/armor/leather_plate/hand.ron +++ b/assets/common/items/armor/leather_plate/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Plate Gloves", - description: "Leather adorned with steel for better protection.", + legacy_name: "Leather Plate Gloves", + legacy_description: "Leather adorned with steel for better protection.", kind: Armor(( kind: Hand, stats: FromSet("Leather Plate"), diff --git a/assets/common/items/armor/leather_plate/helmet.ron b/assets/common/items/armor/leather_plate/helmet.ron index 1ccf2add06..c776009c17 100644 --- a/assets/common/items/armor/leather_plate/helmet.ron +++ b/assets/common/items/armor/leather_plate/helmet.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Plate Helmet", - description: "Leather adorned with steel for better protection.", + legacy_name: "Leather Plate Helmet", + legacy_description: "Leather adorned with steel for better protection.", kind: Armor(( kind: Head, stats: FromSet("Leather Plate"), diff --git a/assets/common/items/armor/leather_plate/pants.ron b/assets/common/items/armor/leather_plate/pants.ron index 114538f6e3..d6f9638eff 100644 --- a/assets/common/items/armor/leather_plate/pants.ron +++ b/assets/common/items/armor/leather_plate/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Plate Chausses", - description: "Leather adorned with steel for better protection.", + legacy_name: "Leather Plate Chausses", + legacy_description: "Leather adorned with steel for better protection.", kind: Armor(( kind: Pants, stats: FromSet("Leather Plate"), diff --git a/assets/common/items/armor/leather_plate/shoulder.ron b/assets/common/items/armor/leather_plate/shoulder.ron index 3c27743702..a901dbc9f2 100644 --- a/assets/common/items/armor/leather_plate/shoulder.ron +++ b/assets/common/items/armor/leather_plate/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Plate Shoulder Pad", - description: "Leather adorned with steel for better protection.", + legacy_name: "Leather Plate Shoulder Pad", + legacy_description: "Leather adorned with steel for better protection.", kind: Armor(( kind: Shoulder, stats: FromSet("Leather Plate"), diff --git a/assets/common/items/armor/mail/bloodsteel/back.ron b/assets/common/items/armor/mail/bloodsteel/back.ron index dfc43bc304..95daa90881 100644 --- a/assets/common/items/armor/mail/bloodsteel/back.ron +++ b/assets/common/items/armor/mail/bloodsteel/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Cape", - description: "Forged to preserve life, at the cost of another.", + legacy_name: "Bloodsteel Cape", + legacy_description: "Forged to preserve life, at the cost of another.", kind: Armor(( kind: Back, stats: FromSet("Bloodsteel"), diff --git a/assets/common/items/armor/mail/bloodsteel/belt.ron b/assets/common/items/armor/mail/bloodsteel/belt.ron index b356d71b50..7c774cbdec 100644 --- a/assets/common/items/armor/mail/bloodsteel/belt.ron +++ b/assets/common/items/armor/mail/bloodsteel/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Girdle", - description: "Forged to preserve life, at the cost of another.", + legacy_name: "Bloodsteel Girdle", + legacy_description: "Forged to preserve life, at the cost of another.", kind: Armor(( kind: Belt, stats: FromSet("Bloodsteel"), diff --git a/assets/common/items/armor/mail/bloodsteel/chest.ron b/assets/common/items/armor/mail/bloodsteel/chest.ron index 2a9c43f638..97ff86b5b9 100644 --- a/assets/common/items/armor/mail/bloodsteel/chest.ron +++ b/assets/common/items/armor/mail/bloodsteel/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Chest", - description: "Forged to preserve life, at the cost of another.", + legacy_name: "Bloodsteel Chest", + legacy_description: "Forged to preserve life, at the cost of another.", kind: Armor(( kind: Chest, stats: FromSet("Bloodsteel"), diff --git a/assets/common/items/armor/mail/bloodsteel/foot.ron b/assets/common/items/armor/mail/bloodsteel/foot.ron index 52e10a4be6..4cf50fc25f 100644 --- a/assets/common/items/armor/mail/bloodsteel/foot.ron +++ b/assets/common/items/armor/mail/bloodsteel/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Sabatons", - description: "Forged to preserve life, at the cost of another.", + legacy_name: "Bloodsteel Sabatons", + legacy_description: "Forged to preserve life, at the cost of another.", kind: Armor(( kind: Foot, stats: FromSet("Bloodsteel"), diff --git a/assets/common/items/armor/mail/bloodsteel/hand.ron b/assets/common/items/armor/mail/bloodsteel/hand.ron index 3a80673dd3..7339deb65b 100644 --- a/assets/common/items/armor/mail/bloodsteel/hand.ron +++ b/assets/common/items/armor/mail/bloodsteel/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Gauntlets", - description: "Forged to preserve life, at the cost of another.", + legacy_name: "Bloodsteel Gauntlets", + legacy_description: "Forged to preserve life, at the cost of another.", kind: Armor(( kind: Hand, stats: FromSet("Bloodsteel"), diff --git a/assets/common/items/armor/mail/bloodsteel/pants.ron b/assets/common/items/armor/mail/bloodsteel/pants.ron index 5a8cd37887..e55e12050d 100644 --- a/assets/common/items/armor/mail/bloodsteel/pants.ron +++ b/assets/common/items/armor/mail/bloodsteel/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Legs", - description: "Forged to preserve life, at the cost of another.", + legacy_name: "Bloodsteel Legs", + legacy_description: "Forged to preserve life, at the cost of another.", kind: Armor(( kind: Pants, stats: FromSet("Bloodsteel"), diff --git a/assets/common/items/armor/mail/bloodsteel/shoulder.ron b/assets/common/items/armor/mail/bloodsteel/shoulder.ron index eb455c7257..48939a4010 100644 --- a/assets/common/items/armor/mail/bloodsteel/shoulder.ron +++ b/assets/common/items/armor/mail/bloodsteel/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Pauldrons", - description: "Forged to preserve life, at the cost of another.", + legacy_name: "Bloodsteel Pauldrons", + legacy_description: "Forged to preserve life, at the cost of another.", kind: Armor(( kind: Shoulder, stats: FromSet("Bloodsteel"), diff --git a/assets/common/items/armor/mail/bronze/back.ron b/assets/common/items/armor/mail/bronze/back.ron index d5c64af2a1..1a95e5637d 100644 --- a/assets/common/items/armor/mail/bronze/back.ron +++ b/assets/common/items/armor/mail/bronze/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Cloak", - description: "'Heavy and dull, but it can take a punch.'", + legacy_name: "Bronze Cloak", + legacy_description: "'Heavy and dull, but it can take a punch.'", kind: Armor(( kind: Back, stats: FromSet("Bronze"), diff --git a/assets/common/items/armor/mail/bronze/belt.ron b/assets/common/items/armor/mail/bronze/belt.ron index 3c35293660..fc734fdb8f 100644 --- a/assets/common/items/armor/mail/bronze/belt.ron +++ b/assets/common/items/armor/mail/bronze/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Girdle", - description: "'Heavy and dull, but it can take a punch.'", + legacy_name: "Bronze Girdle", + legacy_description: "'Heavy and dull, but it can take a punch.'", kind: Armor(( kind: Belt, stats: FromSet("Bronze"), diff --git a/assets/common/items/armor/mail/bronze/chest.ron b/assets/common/items/armor/mail/bronze/chest.ron index 97f4c280b4..7c41b065dd 100644 --- a/assets/common/items/armor/mail/bronze/chest.ron +++ b/assets/common/items/armor/mail/bronze/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Chestguard", - description: "Heavy and dull, but it can take a punch.", + legacy_name: "Bronze Chestguard", + legacy_description: "Heavy and dull, but it can take a punch.", kind: Armor(( kind: Chest, stats: FromSet("Bronze"), diff --git a/assets/common/items/armor/mail/bronze/foot.ron b/assets/common/items/armor/mail/bronze/foot.ron index 25f74fab85..53f63663fd 100644 --- a/assets/common/items/armor/mail/bronze/foot.ron +++ b/assets/common/items/armor/mail/bronze/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Shoes", - description: "'Heavy and dull, but it can take a punch.", + legacy_name: "Bronze Shoes", + legacy_description: "'Heavy and dull, but it can take a punch.", kind: Armor(( kind: Foot, stats: FromSet("Bronze"), diff --git a/assets/common/items/armor/mail/bronze/hand.ron b/assets/common/items/armor/mail/bronze/hand.ron index b2bec53991..6e01de1d0b 100644 --- a/assets/common/items/armor/mail/bronze/hand.ron +++ b/assets/common/items/armor/mail/bronze/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Gauntlets", - description: "'Heavy and dull, but it can take a punch.'", + legacy_name: "Bronze Gauntlets", + legacy_description: "'Heavy and dull, but it can take a punch.'", kind: Armor(( kind: Hand, stats: FromSet("Bronze"), diff --git a/assets/common/items/armor/mail/bronze/pants.ron b/assets/common/items/armor/mail/bronze/pants.ron index 9ba052496b..3bc55acdf9 100644 --- a/assets/common/items/armor/mail/bronze/pants.ron +++ b/assets/common/items/armor/mail/bronze/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Pantalons", - description: "'Heavy and dull, but it can take a punch.'", + legacy_name: "Bronze Pantalons", + legacy_description: "'Heavy and dull, but it can take a punch.'", kind: Armor(( kind: Pants, stats: FromSet("Bronze"), diff --git a/assets/common/items/armor/mail/bronze/shoulder.ron b/assets/common/items/armor/mail/bronze/shoulder.ron index 5a38a1c271..cc54201ec0 100644 --- a/assets/common/items/armor/mail/bronze/shoulder.ron +++ b/assets/common/items/armor/mail/bronze/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Guards", - description: "Heavy and dull, but it can take a punch.", + legacy_name: "Bronze Guards", + legacy_description: "Heavy and dull, but it can take a punch.", kind: Armor(( kind: Shoulder, stats: FromSet("Bronze"), diff --git a/assets/common/items/armor/mail/cobalt/back.ron b/assets/common/items/armor/mail/cobalt/back.ron index acee1abc44..53a1f44e8b 100644 --- a/assets/common/items/armor/mail/cobalt/back.ron +++ b/assets/common/items/armor/mail/cobalt/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Cape", - description: "Ornamental and impenetrable, the metal will never dull.", + legacy_name: "Cobalt Cape", + legacy_description: "Ornamental and impenetrable, the metal will never dull.", kind: Armor(( kind: Back, stats: FromSet("Cobalt"), diff --git a/assets/common/items/armor/mail/cobalt/belt.ron b/assets/common/items/armor/mail/cobalt/belt.ron index 69a35dc1e4..a608810c3c 100644 --- a/assets/common/items/armor/mail/cobalt/belt.ron +++ b/assets/common/items/armor/mail/cobalt/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Girdle", - description: "Ornamental and impenetrable, the metal will never dull.", + legacy_name: "Cobalt Girdle", + legacy_description: "Ornamental and impenetrable, the metal will never dull.", kind: Armor(( kind: Belt, stats: FromSet("Cobalt"), diff --git a/assets/common/items/armor/mail/cobalt/chest.ron b/assets/common/items/armor/mail/cobalt/chest.ron index 262269f62e..3c20d758d3 100644 --- a/assets/common/items/armor/mail/cobalt/chest.ron +++ b/assets/common/items/armor/mail/cobalt/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Chestpiece", - description: "Ornamental and impenetrable, the metal will never dull.", + legacy_name: "Cobalt Chestpiece", + legacy_description: "Ornamental and impenetrable, the metal will never dull.", kind: Armor(( kind: Chest, stats: FromSet("Cobalt"), diff --git a/assets/common/items/armor/mail/cobalt/foot.ron b/assets/common/items/armor/mail/cobalt/foot.ron index e81caf3e72..35c9edcf99 100644 --- a/assets/common/items/armor/mail/cobalt/foot.ron +++ b/assets/common/items/armor/mail/cobalt/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Footguards", - description: "Ornamental and impenetrable, the metal will never dull.", + legacy_name: "Cobalt Footguards", + legacy_description: "Ornamental and impenetrable, the metal will never dull.", kind: Armor(( kind: Foot, stats: FromSet("Cobalt"), diff --git a/assets/common/items/armor/mail/cobalt/hand.ron b/assets/common/items/armor/mail/cobalt/hand.ron index 0c5aa6d447..94878f9058 100644 --- a/assets/common/items/armor/mail/cobalt/hand.ron +++ b/assets/common/items/armor/mail/cobalt/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Gauntlets", - description: "Ornamental and impenetrable, the metal will never dull.", + legacy_name: "Cobalt Gauntlets", + legacy_description: "Ornamental and impenetrable, the metal will never dull.", kind: Armor(( kind: Hand, stats: FromSet("Cobalt"), diff --git a/assets/common/items/armor/mail/cobalt/pants.ron b/assets/common/items/armor/mail/cobalt/pants.ron index c2a1e22f3f..1821601f05 100644 --- a/assets/common/items/armor/mail/cobalt/pants.ron +++ b/assets/common/items/armor/mail/cobalt/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Leggings", - description: "Ornamental and impenetrable, the metal will never dull.", + legacy_name: "Cobalt Leggings", + legacy_description: "Ornamental and impenetrable, the metal will never dull.", kind: Armor(( kind: Pants, stats: FromSet("Cobalt"), diff --git a/assets/common/items/armor/mail/cobalt/shoulder.ron b/assets/common/items/armor/mail/cobalt/shoulder.ron index 8b7927bf77..29a901455a 100644 --- a/assets/common/items/armor/mail/cobalt/shoulder.ron +++ b/assets/common/items/armor/mail/cobalt/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Shoulderguards", - description: "Ornamental and impenetrable, the metal will never dull.", + legacy_name: "Cobalt Shoulderguards", + legacy_description: "Ornamental and impenetrable, the metal will never dull.", kind: Armor(( kind: Shoulder, stats: FromSet("Cobalt"), diff --git a/assets/common/items/armor/mail/iron/back.ron b/assets/common/items/armor/mail/iron/back.ron index 2aa53b7c20..cfdd224c00 100644 --- a/assets/common/items/armor/mail/iron/back.ron +++ b/assets/common/items/armor/mail/iron/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Cloak", - description: "Sturdy and unyielding, across ages of war.", + legacy_name: "Iron Cloak", + legacy_description: "Sturdy and unyielding, across ages of war.", kind: Armor(( kind: Back, stats: FromSet("Iron"), diff --git a/assets/common/items/armor/mail/iron/belt.ron b/assets/common/items/armor/mail/iron/belt.ron index 74a987cc86..3c8720debd 100644 --- a/assets/common/items/armor/mail/iron/belt.ron +++ b/assets/common/items/armor/mail/iron/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Belt", - description: "Sturdy and unyielding, across ages of war.", + legacy_name: "Iron Belt", + legacy_description: "Sturdy and unyielding, across ages of war.", kind: Armor(( kind: Belt, stats: FromSet("Iron"), diff --git a/assets/common/items/armor/mail/iron/chest.ron b/assets/common/items/armor/mail/iron/chest.ron index cd6aaf0a74..0280a53838 100644 --- a/assets/common/items/armor/mail/iron/chest.ron +++ b/assets/common/items/armor/mail/iron/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Chestguard", - description: "Sturdy and unyielding, across ages of war.", + legacy_name: "Iron Chestguard", + legacy_description: "Sturdy and unyielding, across ages of war.", kind: Armor(( kind: Chest, stats: FromSet("Iron"), diff --git a/assets/common/items/armor/mail/iron/foot.ron b/assets/common/items/armor/mail/iron/foot.ron index e537c2c486..a1f554df6a 100644 --- a/assets/common/items/armor/mail/iron/foot.ron +++ b/assets/common/items/armor/mail/iron/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Footguards", - description: "Sturdy and unyielding, across ages of war.", + legacy_name: "Iron Footguards", + legacy_description: "Sturdy and unyielding, across ages of war.", kind: Armor(( kind: Foot, stats: FromSet("Iron"), diff --git a/assets/common/items/armor/mail/iron/hand.ron b/assets/common/items/armor/mail/iron/hand.ron index 51b803f6c4..9a52b4efc5 100644 --- a/assets/common/items/armor/mail/iron/hand.ron +++ b/assets/common/items/armor/mail/iron/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Fists", - description: "Sturdy and unyielding, across ages of war.", + legacy_name: "Iron Fists", + legacy_description: "Sturdy and unyielding, across ages of war.", kind: Armor(( kind: Hand, stats: FromSet("Iron"), diff --git a/assets/common/items/armor/mail/iron/pants.ron b/assets/common/items/armor/mail/iron/pants.ron index 90c6d87775..dab46db4f3 100644 --- a/assets/common/items/armor/mail/iron/pants.ron +++ b/assets/common/items/armor/mail/iron/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Pants", - description: "Sturdy and unyielding, across ages of war.", + legacy_name: "Iron Pants", + legacy_description: "Sturdy and unyielding, across ages of war.", kind: Armor(( kind: Pants, stats: FromSet("Iron"), diff --git a/assets/common/items/armor/mail/iron/shoulder.ron b/assets/common/items/armor/mail/iron/shoulder.ron index c2f5ccdc51..0d2a47f52c 100644 --- a/assets/common/items/armor/mail/iron/shoulder.ron +++ b/assets/common/items/armor/mail/iron/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Shoulderpads", - description: "Sturdy and unyielding, across ages of war.", + legacy_name: "Iron Shoulderpads", + legacy_description: "Sturdy and unyielding, across ages of war.", kind: Armor(( kind: Shoulder, stats: FromSet("Iron"), diff --git a/assets/common/items/armor/mail/orichalcum/back.ron b/assets/common/items/armor/mail/orichalcum/back.ron index dd2311df54..a8441fa706 100644 --- a/assets/common/items/armor/mail/orichalcum/back.ron +++ b/assets/common/items/armor/mail/orichalcum/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Cape", - description: "An ancient alloy. Myths remain of heroes who once wore this metal.", + legacy_name: "Orichalcum Cape", + legacy_description: "An ancient alloy. Myths remain of heroes who once wore this metal.", kind: Armor(( kind: Back, stats: FromSet("Orichalcum"), diff --git a/assets/common/items/armor/mail/orichalcum/belt.ron b/assets/common/items/armor/mail/orichalcum/belt.ron index 4fe568e1d1..e9f5437368 100644 --- a/assets/common/items/armor/mail/orichalcum/belt.ron +++ b/assets/common/items/armor/mail/orichalcum/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Belt", - description: "An ancient alloy. Myths remain of heroes who once wore this metal.", + legacy_name: "Orichalcum Belt", + legacy_description: "An ancient alloy. Myths remain of heroes who once wore this metal.", kind: Armor(( kind: Belt, stats: FromSet("Orichalcum"), diff --git a/assets/common/items/armor/mail/orichalcum/chest.ron b/assets/common/items/armor/mail/orichalcum/chest.ron index a1647db952..baf72a4979 100644 --- a/assets/common/items/armor/mail/orichalcum/chest.ron +++ b/assets/common/items/armor/mail/orichalcum/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Chestguard", - description: "An ancient alloy. Myths remain of heroes who once wore this metal.", + legacy_name: "Orichalcum Chestguard", + legacy_description: "An ancient alloy. Myths remain of heroes who once wore this metal.", kind: Armor(( kind: Chest, stats: FromSet("Orichalcum"), diff --git a/assets/common/items/armor/mail/orichalcum/foot.ron b/assets/common/items/armor/mail/orichalcum/foot.ron index e7ac5ac6d2..bf8435b0c2 100644 --- a/assets/common/items/armor/mail/orichalcum/foot.ron +++ b/assets/common/items/armor/mail/orichalcum/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Warboots", - description: "An ancient alloy. Myths remain of heroes who once wore this metal.", + legacy_name: "Orichalcum Warboots", + legacy_description: "An ancient alloy. Myths remain of heroes who once wore this metal.", kind: Armor(( kind: Foot, stats: FromSet("Orichalcum"), diff --git a/assets/common/items/armor/mail/orichalcum/hand.ron b/assets/common/items/armor/mail/orichalcum/hand.ron index 5067ca0780..d5bf091609 100644 --- a/assets/common/items/armor/mail/orichalcum/hand.ron +++ b/assets/common/items/armor/mail/orichalcum/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Gloves", - description: "An ancient alloy. Myths remain of heroes who once wore this metal.", + legacy_name: "Orichalcum Gloves", + legacy_description: "An ancient alloy. Myths remain of heroes who once wore this metal.", kind: Armor(( kind: Hand, stats: FromSet("Orichalcum"), diff --git a/assets/common/items/armor/mail/orichalcum/pants.ron b/assets/common/items/armor/mail/orichalcum/pants.ron index e09299f53e..db7fb12223 100644 --- a/assets/common/items/armor/mail/orichalcum/pants.ron +++ b/assets/common/items/armor/mail/orichalcum/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Legplates", - description: "An ancient alloy. Myths remain of heroes who once wore this metal.", + legacy_name: "Orichalcum Legplates", + legacy_description: "An ancient alloy. Myths remain of heroes who once wore this metal.", kind: Armor(( kind: Pants, stats: FromSet("Orichalcum"), diff --git a/assets/common/items/armor/mail/orichalcum/shoulder.ron b/assets/common/items/armor/mail/orichalcum/shoulder.ron index 50dea44ecd..9017e96858 100644 --- a/assets/common/items/armor/mail/orichalcum/shoulder.ron +++ b/assets/common/items/armor/mail/orichalcum/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Mantle", - description: "An ancient alloy. Myths remain of heroes who once wore this armor.", + legacy_name: "Orichalcum Mantle", + legacy_description: "An ancient alloy. Myths remain of heroes who once wore this armor.", kind: Armor(( kind: Shoulder, stats: FromSet("Orichalcum"), diff --git a/assets/common/items/armor/mail/steel/back.ron b/assets/common/items/armor/mail/steel/back.ron index d0fb40a034..fd9f9398e1 100644 --- a/assets/common/items/armor/mail/steel/back.ron +++ b/assets/common/items/armor/mail/steel/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Cape", - description: "Metal alloy interlocking plates to improve protection.", + legacy_name: "Steel Cape", + legacy_description: "Metal alloy interlocking plates to improve protection.", kind: Armor(( kind: Back, stats: FromSet("Steel"), diff --git a/assets/common/items/armor/mail/steel/belt.ron b/assets/common/items/armor/mail/steel/belt.ron index 6fee9ecbf4..4bbfc4f2de 100644 --- a/assets/common/items/armor/mail/steel/belt.ron +++ b/assets/common/items/armor/mail/steel/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Belt", - description: "Metal alloy interlocking plates to improve protection.", + legacy_name: "Steel Belt", + legacy_description: "Metal alloy interlocking plates to improve protection.", kind: Armor(( kind: Belt, stats: FromSet("Steel"), diff --git a/assets/common/items/armor/mail/steel/chest.ron b/assets/common/items/armor/mail/steel/chest.ron index c1e21aed4d..758b4bd0f9 100644 --- a/assets/common/items/armor/mail/steel/chest.ron +++ b/assets/common/items/armor/mail/steel/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Cuirass", - description: "The metal alloy provides a somewhat lighter and stronger cuirass.", + legacy_name: "Steel Cuirass", + legacy_description: "The metal alloy provides a somewhat lighter and stronger cuirass.", kind: Armor(( kind: Chest, stats: FromSet("Steel"), diff --git a/assets/common/items/armor/mail/steel/foot.ron b/assets/common/items/armor/mail/steel/foot.ron index 28f4adef2b..441df20d64 100644 --- a/assets/common/items/armor/mail/steel/foot.ron +++ b/assets/common/items/armor/mail/steel/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Boots", - description: "Metal alloy boots providing a more comfortable and durable protection.", + legacy_name: "Steel Boots", + legacy_description: "Metal alloy boots providing a more comfortable and durable protection.", kind: Armor(( kind: Foot, stats: FromSet("Steel"), diff --git a/assets/common/items/armor/mail/steel/hand.ron b/assets/common/items/armor/mail/steel/hand.ron index fca4fc5f2a..88cbef4aec 100644 --- a/assets/common/items/armor/mail/steel/hand.ron +++ b/assets/common/items/armor/mail/steel/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Gauntlets", - description: "The metal alloy provides better protection and lighter weight, a quite comfortable gauntlet.", + legacy_name: "Steel Gauntlets", + legacy_description: "The metal alloy provides better protection and lighter weight, a quite comfortable gauntlet.", kind: Armor(( kind: Hand, stats: FromSet("Steel"), diff --git a/assets/common/items/armor/mail/steel/pants.ron b/assets/common/items/armor/mail/steel/pants.ron index 2ee918fd87..05bae2add4 100644 --- a/assets/common/items/armor/mail/steel/pants.ron +++ b/assets/common/items/armor/mail/steel/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Chausses", - description: "The metal alloy provides improvements to fit, durability, and lightness.", + legacy_name: "Steel Chausses", + legacy_description: "The metal alloy provides improvements to fit, durability, and lightness.", kind: Armor(( kind: Pants, stats: FromSet("Steel"), diff --git a/assets/common/items/armor/mail/steel/shoulder.ron b/assets/common/items/armor/mail/steel/shoulder.ron index ff754aac8a..e320ac75ed 100644 --- a/assets/common/items/armor/mail/steel/shoulder.ron +++ b/assets/common/items/armor/mail/steel/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Shoulders", - description: "The metal alloy plates provide better protection and comfort.", + legacy_name: "Steel Shoulders", + legacy_description: "The metal alloy plates provide better protection and comfort.", kind: Armor(( kind: Shoulder, stats: FromSet("Steel"), diff --git a/assets/common/items/armor/merchant/back.ron b/assets/common/items/armor/merchant/back.ron index 6c27d557e4..3158cbdf9e 100644 --- a/assets/common/items/armor/merchant/back.ron +++ b/assets/common/items/armor/merchant/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Merchant Backpack", - description: "", + legacy_name: "Merchant Backpack", + legacy_description: "", kind: Armor(( kind: Backpack, stats: FromSet("Merchant"), diff --git a/assets/common/items/armor/merchant/belt.ron b/assets/common/items/armor/merchant/belt.ron index 7013077b07..17651d79dd 100644 --- a/assets/common/items/armor/merchant/belt.ron +++ b/assets/common/items/armor/merchant/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Merchant Belt", - description: "", + legacy_name: "Merchant Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Merchant"), diff --git a/assets/common/items/armor/merchant/chest.ron b/assets/common/items/armor/merchant/chest.ron index 7a98f0c3b0..81b2f64b61 100644 --- a/assets/common/items/armor/merchant/chest.ron +++ b/assets/common/items/armor/merchant/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Merchant Jacket", - description: "", + legacy_name: "Merchant Jacket", + legacy_description: "", kind: Armor(( kind: Chest, stats: FromSet("Merchant"), diff --git a/assets/common/items/armor/merchant/foot.ron b/assets/common/items/armor/merchant/foot.ron index ee1b648592..e882b9e1ea 100644 --- a/assets/common/items/armor/merchant/foot.ron +++ b/assets/common/items/armor/merchant/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Merchant Boots", - description: "", + legacy_name: "Merchant Boots", + legacy_description: "", kind: Armor(( kind: Foot, stats: FromSet("Merchant"), diff --git a/assets/common/items/armor/merchant/hand.ron b/assets/common/items/armor/merchant/hand.ron index 2c653ce1f7..7920cfac9b 100644 --- a/assets/common/items/armor/merchant/hand.ron +++ b/assets/common/items/armor/merchant/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Merchant Gloves", - description: "", + legacy_name: "Merchant Gloves", + legacy_description: "", kind: Armor(( kind: Hand, stats: FromSet("Merchant"), diff --git a/assets/common/items/armor/merchant/pants.ron b/assets/common/items/armor/merchant/pants.ron index 3100d4f01a..d42518abe7 100644 --- a/assets/common/items/armor/merchant/pants.ron +++ b/assets/common/items/armor/merchant/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Merchant Pants", - description: "", + legacy_name: "Merchant Pants", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Merchant"), diff --git a/assets/common/items/armor/merchant/shoulder.ron b/assets/common/items/armor/merchant/shoulder.ron index ce1dfe9989..bd5a12550b 100644 --- a/assets/common/items/armor/merchant/shoulder.ron +++ b/assets/common/items/armor/merchant/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Merchant Mantle", - description: "", + legacy_name: "Merchant Mantle", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: FromSet("Merchant"), diff --git a/assets/common/items/armor/merchant/turban.ron b/assets/common/items/armor/merchant/turban.ron index a926e1437e..e14e49528e 100644 --- a/assets/common/items/armor/merchant/turban.ron +++ b/assets/common/items/armor/merchant/turban.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Impressive Turban", - description: "An incredibly fancy and light-weight turban, quite expensive too.", + legacy_name: "Impressive Turban", + legacy_description: "An incredibly fancy and light-weight turban, quite expensive too.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/miner/back.ron b/assets/common/items/armor/miner/back.ron index b1a0223377..b8679a244e 100644 --- a/assets/common/items/armor/miner/back.ron +++ b/assets/common/items/armor/miner/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner's Backpack", - description: "Battered from heavy rocks being carried inside.", + legacy_name: "Miner's Backpack", + legacy_description: "Battered from heavy rocks being carried inside.", kind: Armor(( kind: Backpack, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/belt.ron b/assets/common/items/armor/miner/belt.ron index a3a724d8f2..f33417daca 100644 --- a/assets/common/items/armor/miner/belt.ron +++ b/assets/common/items/armor/miner/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner's Belt", - description: "", + legacy_name: "Miner's Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/chest.ron b/assets/common/items/armor/miner/chest.ron index 77448b80d4..e34c3a5601 100644 --- a/assets/common/items/armor/miner/chest.ron +++ b/assets/common/items/armor/miner/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner's Vestment", - description: "Rock dust is covering most of the leather parts.", + legacy_name: "Miner's Vestment", + legacy_description: "Rock dust is covering most of the leather parts.", kind: Armor(( kind: Chest, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/foot.ron b/assets/common/items/armor/miner/foot.ron index 1b1fedab02..d2d406e1aa 100644 --- a/assets/common/items/armor/miner/foot.ron +++ b/assets/common/items/armor/miner/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner's Footwear", - description: "Someone carved 'Mine!' into the inside.", + legacy_name: "Miner's Footwear", + legacy_description: "Someone carved 'Mine!' into the inside.", kind: Armor(( kind: Foot, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/hand.ron b/assets/common/items/armor/miner/hand.ron index d73b88f969..3c60a7138d 100644 --- a/assets/common/items/armor/miner/hand.ron +++ b/assets/common/items/armor/miner/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner's Gloves", - description: "Someone carved 'Mine!' into the inside.", + legacy_name: "Miner's Gloves", + legacy_description: "Someone carved 'Mine!' into the inside.", kind: Armor(( kind: Hand, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/helmet.ron b/assets/common/items/armor/miner/helmet.ron index aeaf3f9e4f..ac7ce9ead0 100644 --- a/assets/common/items/armor/miner/helmet.ron +++ b/assets/common/items/armor/miner/helmet.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner Helmet", - description: "Someone carved 'Mine!' into the inside.", + legacy_name: "Miner Helmet", + legacy_description: "Someone carved 'Mine!' into the inside.", kind: Armor(( kind: Head, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/pants.ron b/assets/common/items/armor/miner/pants.ron index 2408d2f1f4..5bb2d2ee30 100644 --- a/assets/common/items/armor/miner/pants.ron +++ b/assets/common/items/armor/miner/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner's pantaloons.", - description: "", + legacy_name: "Miner's pantaloons.", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/shoulder.ron b/assets/common/items/armor/miner/shoulder.ron index 1362ab6a0b..e51a8a3e2d 100644 --- a/assets/common/items/armor/miner/shoulder.ron +++ b/assets/common/items/armor/miner/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Miner's Pauldrons.", - description: "Protects Cave-in and out.", + legacy_name: "Miner's Pauldrons.", + legacy_description: "Protects Cave-in and out.", kind: Armor(( kind: Shoulder, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/shoulder_captain.ron b/assets/common/items/armor/miner/shoulder_captain.ron index ad84e56f19..6106ea40b7 100644 --- a/assets/common/items/armor/miner/shoulder_captain.ron +++ b/assets/common/items/armor/miner/shoulder_captain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Captain's Pauldrons.", - description: "", + legacy_name: "Captain's Pauldrons.", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/shoulder_flame.ron b/assets/common/items/armor/miner/shoulder_flame.ron index 1b9e437101..5ca18f8ab7 100644 --- a/assets/common/items/armor/miner/shoulder_flame.ron +++ b/assets/common/items/armor/miner/shoulder_flame.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamekeeper's Pauldrons.", - description: "", + legacy_name: "Flamekeeper's Pauldrons.", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/miner/shoulder_overseer.ron b/assets/common/items/armor/miner/shoulder_overseer.ron index 3f846db23d..ee03cb8dea 100644 --- a/assets/common/items/armor/miner/shoulder_overseer.ron +++ b/assets/common/items/armor/miner/shoulder_overseer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Overseer's Pauldrons.", - description: "", + legacy_name: "Overseer's Pauldrons.", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: FromSet("Miner"), diff --git a/assets/common/items/armor/misc/back/admin.ron b/assets/common/items/armor/misc/back/admin.ron index 91c74c6002..5486ec7818 100644 --- a/assets/common/items/armor/misc/back/admin.ron +++ b/assets/common/items/armor/misc/back/admin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Admin's Cape", - description: "With great power comes\ngreat responsibility.", + legacy_name: "Admin's Cape", + legacy_description: "With great power comes\ngreat responsibility.", kind: Armor(( kind: Back, stats: Direct(( diff --git a/assets/common/items/armor/misc/back/backpack.ron b/assets/common/items/armor/misc/back/backpack.ron index 91a4ac1531..68d580c8bf 100644 --- a/assets/common/items/armor/misc/back/backpack.ron +++ b/assets/common/items/armor/misc/back/backpack.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Traveler's Backpack", - description: "Comfortable and with enough capacity, its a hoarder's best friend.", + legacy_name: "Traveler's Backpack", + legacy_description: "Comfortable and with enough capacity, its a hoarder's best friend.", kind: Armor(( kind: Backpack, stats: Direct(( diff --git a/assets/common/items/armor/misc/back/dungeon_purple.ron b/assets/common/items/armor/misc/back/dungeon_purple.ron index 1682519ef6..8970f8d3e4 100644 --- a/assets/common/items/armor/misc/back/dungeon_purple.ron +++ b/assets/common/items/armor/misc/back/dungeon_purple.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Cultist Cape", - description: "Smells like dark magic and candles.", + legacy_name: "Purple Cultist Cape", + legacy_description: "Smells like dark magic and candles.", kind: Armor(( kind: Back, stats: FromSet("Cultist"), diff --git a/assets/common/items/armor/misc/back/short_0.ron b/assets/common/items/armor/misc/back/short_0.ron index 0248ba9a59..6140895abd 100644 --- a/assets/common/items/armor/misc/back/short_0.ron +++ b/assets/common/items/armor/misc/back/short_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Short leather Cape", - description: "Probably made of the finest leather.", + legacy_name: "Short leather Cape", + legacy_description: "Probably made of the finest leather.", kind: Armor(( kind: Back, stats: Direct(( diff --git a/assets/common/items/armor/misc/back/short_1.ron b/assets/common/items/armor/misc/back/short_1.ron index b8e80a8f56..fb8eb3083a 100644 --- a/assets/common/items/armor/misc/back/short_1.ron +++ b/assets/common/items/armor/misc/back/short_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Blanket", - description: "Keeps your shoulders warm.", + legacy_name: "Green Blanket", + legacy_description: "Keeps your shoulders warm.", kind: Armor(( kind: Back, stats: Direct(( diff --git a/assets/common/items/armor/misc/bag/heavy_seabag.ron b/assets/common/items/armor/misc/bag/heavy_seabag.ron index 35063c9f9b..c14d8976bb 100644 --- a/assets/common/items/armor/misc/bag/heavy_seabag.ron +++ b/assets/common/items/armor/misc/bag/heavy_seabag.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Heavy Seabag", - description: "Commonly used by sailors.", + legacy_name: "Heavy Seabag", + legacy_description: "Commonly used by sailors.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/knitted_red_pouch.ron b/assets/common/items/armor/misc/bag/knitted_red_pouch.ron index 066806fc66..556c479006 100644 --- a/assets/common/items/armor/misc/bag/knitted_red_pouch.ron +++ b/assets/common/items/armor/misc/bag/knitted_red_pouch.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Knitted Red Pouch", - description: "A sizeable red bag with two pouches, made of wool and dye.", + legacy_name: "Knitted Red Pouch", + legacy_description: "A sizeable red bag with two pouches, made of wool and dye.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/liana_kit.ron b/assets/common/items/armor/misc/bag/liana_kit.ron index 161ede06de..567fa90ff9 100644 --- a/assets/common/items/armor/misc/bag/liana_kit.ron +++ b/assets/common/items/armor/misc/bag/liana_kit.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Liana Kit", - description: "Woven from dried lianas.", + legacy_name: "Liana Kit", + legacy_description: "Woven from dried lianas.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/mindflayer_spellbag.ron b/assets/common/items/armor/misc/bag/mindflayer_spellbag.ron index 98b340986d..3fa8304a66 100644 --- a/assets/common/items/armor/misc/bag/mindflayer_spellbag.ron +++ b/assets/common/items/armor/misc/bag/mindflayer_spellbag.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mindflayer Spellbag", - description: "You can almost feel the Mindflayer's\nevil presence flowing through the fabric.", + legacy_name: "Mindflayer Spellbag", + legacy_description: "You can almost feel the Mindflayer's\nevil presence flowing through the fabric.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/reliable_backpack.ron b/assets/common/items/armor/misc/bag/reliable_backpack.ron index 4e3748f735..a052794b48 100644 --- a/assets/common/items/armor/misc/bag/reliable_backpack.ron +++ b/assets/common/items/armor/misc/bag/reliable_backpack.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Reliable Backpack", - description: "It will never give you up.", + legacy_name: "Reliable Backpack", + legacy_description: "It will never give you up.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/reliable_leather_pack.ron b/assets/common/items/armor/misc/bag/reliable_leather_pack.ron index f94a8edf9c..82c20999e6 100644 --- a/assets/common/items/armor/misc/bag/reliable_leather_pack.ron +++ b/assets/common/items/armor/misc/bag/reliable_leather_pack.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Reliable Leather Pack", - description: "It will never give you up.", + legacy_name: "Reliable Leather Pack", + legacy_description: "It will never give you up.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/soulkeeper_cursed.ron b/assets/common/items/armor/misc/bag/soulkeeper_cursed.ron index 74bc2032c2..bde7da1ab9 100644 --- a/assets/common/items/armor/misc/bag/soulkeeper_cursed.ron +++ b/assets/common/items/armor/misc/bag/soulkeeper_cursed.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cursed Soulkeeper", - description: "WIP", + legacy_name: "Cursed Soulkeeper", + legacy_description: "WIP", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/soulkeeper_pure.ron b/assets/common/items/armor/misc/bag/soulkeeper_pure.ron index ee9abdd81f..c421740884 100644 --- a/assets/common/items/armor/misc/bag/soulkeeper_pure.ron +++ b/assets/common/items/armor/misc/bag/soulkeeper_pure.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purified Soulkeeper", - description: "WIP", + legacy_name: "Purified Soulkeeper", + legacy_description: "WIP", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/sturdy_red_backpack.ron b/assets/common/items/armor/misc/bag/sturdy_red_backpack.ron index d3ceda8b78..317d902b5b 100644 --- a/assets/common/items/armor/misc/bag/sturdy_red_backpack.ron +++ b/assets/common/items/armor/misc/bag/sturdy_red_backpack.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sturdy Red Saddlebag", - description: "A truly reliable and sizeable bag, embroidered with amethyst and thick leather.", + legacy_name: "Sturdy Red Saddlebag", + legacy_description: "A truly reliable and sizeable bag, embroidered with amethyst and thick leather.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/tiny_leather_pouch.ron b/assets/common/items/armor/misc/bag/tiny_leather_pouch.ron index 6149d719a0..7715d658b5 100644 --- a/assets/common/items/armor/misc/bag/tiny_leather_pouch.ron +++ b/assets/common/items/armor/misc/bag/tiny_leather_pouch.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Small Leather Pouch", - description: "A small reliable leather pouch.", + legacy_name: "Small Leather Pouch", + legacy_description: "A small reliable leather pouch.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/tiny_red_pouch.ron b/assets/common/items/armor/misc/bag/tiny_red_pouch.ron index 5b751b97bf..addff538ba 100644 --- a/assets/common/items/armor/misc/bag/tiny_red_pouch.ron +++ b/assets/common/items/armor/misc/bag/tiny_red_pouch.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tiny Red Pouch", - description: "Made from multiple patches of dyed cloth.", + legacy_name: "Tiny Red Pouch", + legacy_description: "Made from multiple patches of dyed cloth.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/troll_hide_pack.ron b/assets/common/items/armor/misc/bag/troll_hide_pack.ron index a9581f8a34..c712bc6072 100644 --- a/assets/common/items/armor/misc/bag/troll_hide_pack.ron +++ b/assets/common/items/armor/misc/bag/troll_hide_pack.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Trollhide Pack", - description: "Trolls were definitely hurt in the making of this.", + legacy_name: "Trollhide Pack", + legacy_description: "Trolls were definitely hurt in the making of this.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/bag/woven_red_bag.ron b/assets/common/items/armor/misc/bag/woven_red_bag.ron index cfd06ee040..8fe1bf16c5 100644 --- a/assets/common/items/armor/misc/bag/woven_red_bag.ron +++ b/assets/common/items/armor/misc/bag/woven_red_bag.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woven Red Bag", - description: "A moderately sized red bag. Although it still feels pretty cramped.", + legacy_name: "Woven Red Bag", + legacy_description: "A moderately sized red bag. Although it still feels pretty cramped.", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/armor/misc/chest/worker_green_0.ron b/assets/common/items/armor/misc/chest/worker_green_0.ron index ebfffdea8d..0178eaf34a 100644 --- a/assets/common/items/armor/misc/chest/worker_green_0.ron +++ b/assets/common/items/armor/misc/chest/worker_green_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Green Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_green_1.ron b/assets/common/items/armor/misc/chest/worker_green_1.ron index ebfffdea8d..0178eaf34a 100644 --- a/assets/common/items/armor/misc/chest/worker_green_1.ron +++ b/assets/common/items/armor/misc/chest/worker_green_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Green Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_orange_0.ron b/assets/common/items/armor/misc/chest/worker_orange_0.ron index 0387b968dc..4e2ee0f1be 100644 --- a/assets/common/items/armor/misc/chest/worker_orange_0.ron +++ b/assets/common/items/armor/misc/chest/worker_orange_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orange Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Orange Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_orange_1.ron b/assets/common/items/armor/misc/chest/worker_orange_1.ron index 0387b968dc..4e2ee0f1be 100644 --- a/assets/common/items/armor/misc/chest/worker_orange_1.ron +++ b/assets/common/items/armor/misc/chest/worker_orange_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orange Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Orange Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_purple_0.ron b/assets/common/items/armor/misc/chest/worker_purple_0.ron index 1f7219f0d0..3cf3270159 100644 --- a/assets/common/items/armor/misc/chest/worker_purple_0.ron +++ b/assets/common/items/armor/misc/chest/worker_purple_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Worker Shirt", - description: "Resilient and reliable.", + legacy_name: "Purple Worker Shirt", + legacy_description: "Resilient and reliable.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_purple_1.ron b/assets/common/items/armor/misc/chest/worker_purple_1.ron index 4606e53828..f95df5ce86 100644 --- a/assets/common/items/armor/misc/chest/worker_purple_1.ron +++ b/assets/common/items/armor/misc/chest/worker_purple_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Purple Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_purple_brown.ron b/assets/common/items/armor/misc/chest/worker_purple_brown.ron index 1f7219f0d0..3cf3270159 100644 --- a/assets/common/items/armor/misc/chest/worker_purple_brown.ron +++ b/assets/common/items/armor/misc/chest/worker_purple_brown.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Worker Shirt", - description: "Resilient and reliable.", + legacy_name: "Purple Worker Shirt", + legacy_description: "Resilient and reliable.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_red_0.ron b/assets/common/items/armor/misc/chest/worker_red_0.ron index 13c7b09088..ebb17ddd8f 100644 --- a/assets/common/items/armor/misc/chest/worker_red_0.ron +++ b/assets/common/items/armor/misc/chest/worker_red_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Red Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_red_1.ron b/assets/common/items/armor/misc/chest/worker_red_1.ron index 13c7b09088..ebb17ddd8f 100644 --- a/assets/common/items/armor/misc/chest/worker_red_1.ron +++ b/assets/common/items/armor/misc/chest/worker_red_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Red Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_yellow_0.ron b/assets/common/items/armor/misc/chest/worker_yellow_0.ron index cdad0be3f0..d0dc38b1f7 100644 --- a/assets/common/items/armor/misc/chest/worker_yellow_0.ron +++ b/assets/common/items/armor/misc/chest/worker_yellow_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Yellow Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Yellow Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/chest/worker_yellow_1.ron b/assets/common/items/armor/misc/chest/worker_yellow_1.ron index cdad0be3f0..d0dc38b1f7 100644 --- a/assets/common/items/armor/misc/chest/worker_yellow_1.ron +++ b/assets/common/items/armor/misc/chest/worker_yellow_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Yellow Worker Shirt", - description: "Was used by a farmer, until recently.", + legacy_name: "Yellow Worker Shirt", + legacy_description: "Was used by a farmer, until recently.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/misc/foot/iceskate.ron b/assets/common/items/armor/misc/foot/iceskate.ron index c9230139fb..ec99395a03 100644 --- a/assets/common/items/armor/misc/foot/iceskate.ron +++ b/assets/common/items/armor/misc/foot/iceskate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ice Skates", - description: "Best used on a frozen lake.", + legacy_name: "Ice Skates", + legacy_description: "Best used on a frozen lake.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/armor/misc/foot/jackalope_slippers.ron b/assets/common/items/armor/misc/foot/jackalope_slippers.ron index 3841a17a62..359b613a92 100644 --- a/assets/common/items/armor/misc/foot/jackalope_slippers.ron +++ b/assets/common/items/armor/misc/foot/jackalope_slippers.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Fluffy Jackalope Slippers", - description: "So warm and cozy!", + legacy_name: "Fluffy Jackalope Slippers", + legacy_description: "So warm and cozy!", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/armor/misc/foot/sandals.ron b/assets/common/items/armor/misc/foot/sandals.ron index 98fd34687a..96dd9c8768 100644 --- a/assets/common/items/armor/misc/foot/sandals.ron +++ b/assets/common/items/armor/misc/foot/sandals.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Worn out Sandals", - description: "Loyal companions, though they don't look like they can go much further.", + legacy_name: "Worn out Sandals", + legacy_description: "Loyal companions, though they don't look like they can go much further.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/armor/misc/foot/ski.ron b/assets/common/items/armor/misc/foot/ski.ron index a9ab2c0ef2..56a68704e1 100644 --- a/assets/common/items/armor/misc/foot/ski.ron +++ b/assets/common/items/armor/misc/foot/ski.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wooden skis", - description: "Best used downhill on snow.", + legacy_name: "Wooden skis", + legacy_description: "Best used downhill on snow.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/bamboo_twig.ron b/assets/common/items/armor/misc/head/bamboo_twig.ron index 0a25ccdec0..0c0d3073e5 100644 --- a/assets/common/items/armor/misc/head/bamboo_twig.ron +++ b/assets/common/items/armor/misc/head/bamboo_twig.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bamboo Twig", - description: "A tiny stray shoot from a larger bamboo shaft.", + legacy_name: "Bamboo Twig", + legacy_description: "A tiny stray shoot from a larger bamboo shaft.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/bandana/red.ron b/assets/common/items/armor/misc/head/bandana/red.ron index 9ec61cbf5e..b5c9b64f8d 100644 --- a/assets/common/items/armor/misc/head/bandana/red.ron +++ b/assets/common/items/armor/misc/head/bandana/red.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Bandana", - description: "Very sneaky, but also, bright red.", + legacy_name: "Red Bandana", + legacy_description: "Very sneaky, but also, bright red.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/bandana/thief.ron b/assets/common/items/armor/misc/head/bandana/thief.ron index 682e5c2aed..044be2c2fd 100644 --- a/assets/common/items/armor/misc/head/bandana/thief.ron +++ b/assets/common/items/armor/misc/head/bandana/thief.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Thief Bandana", - description: "Common bandit's mask.", + legacy_name: "Thief Bandana", + legacy_description: "Common bandit's mask.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/bear_bonnet.ron b/assets/common/items/armor/misc/head/bear_bonnet.ron index 68b88b073f..ec681bb8d7 100644 --- a/assets/common/items/armor/misc/head/bear_bonnet.ron +++ b/assets/common/items/armor/misc/head/bear_bonnet.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bear Bonnet", - description: "Wearing the guise of a ferocious bear, its fury becomes your own.", + legacy_name: "Bear Bonnet", + legacy_description: "Wearing the guise of a ferocious bear, its fury becomes your own.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/boreal_warhelm.ron b/assets/common/items/armor/misc/head/boreal_warhelm.ron index 6594f99c82..33e85d3637 100644 --- a/assets/common/items/armor/misc/head/boreal_warhelm.ron +++ b/assets/common/items/armor/misc/head/boreal_warhelm.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Warhelmet", - description: "I wonder where it's pointing...", + legacy_name: "Boreal Warhelmet", + legacy_description: "I wonder where it's pointing...", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/crown.ron b/assets/common/items/armor/misc/head/crown.ron index 1661c2802e..fba533ba12 100644 --- a/assets/common/items/armor/misc/head/crown.ron +++ b/assets/common/items/armor/misc/head/crown.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Crown", - description: "A crown fit for royal stature.", + legacy_name: "Crown", + legacy_description: "A crown fit for royal stature.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/exclamation.ron b/assets/common/items/armor/misc/head/exclamation.ron index 63b677781d..9a74086df6 100644 --- a/assets/common/items/armor/misc/head/exclamation.ron +++ b/assets/common/items/armor/misc/head/exclamation.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Exclamation hat", - description: "You feel like bestowing quests.", + legacy_name: "Exclamation hat", + legacy_description: "You feel like bestowing quests.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/facegourd.ron b/assets/common/items/armor/misc/head/facegourd.ron index 65c832501f..3dc34fb032 100644 --- a/assets/common/items/armor/misc/head/facegourd.ron +++ b/assets/common/items/armor/misc/head/facegourd.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Facegourd", - description: "Pumpkin Head.", + legacy_name: "Facegourd", + legacy_description: "Pumpkin Head.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/gnarling_mask.ron b/assets/common/items/armor/misc/head/gnarling_mask.ron index dbf7f32619..f6d1318b46 100644 --- a/assets/common/items/armor/misc/head/gnarling_mask.ron +++ b/assets/common/items/armor/misc/head/gnarling_mask.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Chieftain Mask", - description: "It smells like burned wood.", + legacy_name: "Chieftain Mask", + legacy_description: "It smells like burned wood.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/headband.ron b/assets/common/items/armor/misc/head/headband.ron index 9cd17a9ce7..d764e79dd2 100644 --- a/assets/common/items/armor/misc/head/headband.ron +++ b/assets/common/items/armor/misc/head/headband.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Headband", - description: "A simple headband, it's nothing special.", + legacy_name: "Headband", + legacy_description: "A simple headband, it's nothing special.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/helmet.ron b/assets/common/items/armor/misc/head/helmet.ron index 88848060b1..e1dad0925a 100644 --- a/assets/common/items/armor/misc/head/helmet.ron +++ b/assets/common/items/armor/misc/head/helmet.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Helmet", - description: "yep.", + legacy_name: "Helmet", + legacy_description: "yep.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/hog_hood.ron b/assets/common/items/armor/misc/head/hog_hood.ron index c641da84cf..f979971170 100644 --- a/assets/common/items/armor/misc/head/hog_hood.ron +++ b/assets/common/items/armor/misc/head/hog_hood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hog Hood", - description: "Wear the guise of a great swine now felled, so that you may honor its sacrifice.", + legacy_name: "Hog Hood", + legacy_description: "Wear the guise of a great swine now felled, so that you may honor its sacrifice.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/hood.ron b/assets/common/items/armor/misc/head/hood.ron index 5d08dad104..625bc55a9d 100644 --- a/assets/common/items/armor/misc/head/hood.ron +++ b/assets/common/items/armor/misc/head/hood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hood", - description: "Become one with the treetops.", + legacy_name: "Hood", + legacy_description: "Become one with the treetops.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/hood_dark.ron b/assets/common/items/armor/misc/head/hood_dark.ron index 21fcb8ebd6..97be6cfdc4 100644 --- a/assets/common/items/armor/misc/head/hood_dark.ron +++ b/assets/common/items/armor/misc/head/hood_dark.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dark Hood", - description: "Tis a bit thicker.", + legacy_name: "Dark Hood", + legacy_description: "Tis a bit thicker.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/howl_cowl.ron b/assets/common/items/armor/misc/head/howl_cowl.ron index 45df5b15b2..94fbf23d42 100644 --- a/assets/common/items/armor/misc/head/howl_cowl.ron +++ b/assets/common/items/armor/misc/head/howl_cowl.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Howl Cowl", - description: "Wearing the guise of a fearsome wolf befits a fearsome hunter.", + legacy_name: "Howl Cowl", + legacy_description: "Wearing the guise of a fearsome wolf befits a fearsome hunter.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/mitre.ron b/assets/common/items/armor/misc/head/mitre.ron index 3c1f0a57c3..05d9e2fe3b 100644 --- a/assets/common/items/armor/misc/head/mitre.ron +++ b/assets/common/items/armor/misc/head/mitre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mitre", - description: "Calls strength down from above.", + legacy_name: "Mitre", + legacy_description: "Calls strength down from above.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/spikeguard.ron b/assets/common/items/armor/misc/head/spikeguard.ron index ba7fb7c85c..eb615acc26 100644 --- a/assets/common/items/armor/misc/head/spikeguard.ron +++ b/assets/common/items/armor/misc/head/spikeguard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Spiked Crown", - description: "Resembling some sort of thorny crown.", + legacy_name: "Spiked Crown", + legacy_description: "Resembling some sort of thorny crown.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/straw.ron b/assets/common/items/armor/misc/head/straw.ron index 1736739ad0..936fad0448 100644 --- a/assets/common/items/armor/misc/head/straw.ron +++ b/assets/common/items/armor/misc/head/straw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Straw Hat", - description: "Often times worn by villagers. It's simple and stylish!", + legacy_name: "Straw Hat", + legacy_description: "Often times worn by villagers. It's simple and stylish!", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/wanderers_hat.ron b/assets/common/items/armor/misc/head/wanderers_hat.ron index cf86f5b97b..c9a7d18a3d 100644 --- a/assets/common/items/armor/misc/head/wanderers_hat.ron +++ b/assets/common/items/armor/misc/head/wanderers_hat.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wanderer's Hat", - description: "The perfect headwear for those who feel at home on the highways and byways of Veloren.", + legacy_name: "Wanderer's Hat", + legacy_description: "The perfect headwear for those who feel at home on the highways and byways of Veloren.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/head/winged_coronet.ron b/assets/common/items/armor/misc/head/winged_coronet.ron index a6f7af062b..a78a8c25ff 100644 --- a/assets/common/items/armor/misc/head/winged_coronet.ron +++ b/assets/common/items/armor/misc/head/winged_coronet.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Winged Coronet", - description: "You feel more connected with nature.", + legacy_name: "Winged Coronet", + legacy_description: "You feel more connected with nature.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/abyssal_gorget.ron b/assets/common/items/armor/misc/neck/abyssal_gorget.ron index b444e6de88..b7e223526f 100644 --- a/assets/common/items/armor/misc/neck/abyssal_gorget.ron +++ b/assets/common/items/armor/misc/neck/abyssal_gorget.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Abyssal Gorget", - description: "Harnessed vigour of the tides", + legacy_name: "Abyssal Gorget", + legacy_description: "Harnessed vigour of the tides", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/amethyst.ron b/assets/common/items/armor/misc/neck/amethyst.ron index 82732fbd88..042701946e 100644 --- a/assets/common/items/armor/misc/neck/amethyst.ron +++ b/assets/common/items/armor/misc/neck/amethyst.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Amethyst Necklace", - description: "A tin necklace lined with amethyst gems.", + legacy_name: "Amethyst Necklace", + legacy_description: "A tin necklace lined with amethyst gems.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/ankh_of_life.ron b/assets/common/items/armor/misc/neck/ankh_of_life.ron index 0f8d31f157..006db1d1aa 100644 --- a/assets/common/items/armor/misc/neck/ankh_of_life.ron +++ b/assets/common/items/armor/misc/neck/ankh_of_life.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ankh of Life", - description: "A unique necklace of unkown origin... You can feel the power flowing through it.", + legacy_name: "Ankh of Life", + legacy_description: "A unique necklace of unkown origin... You can feel the power flowing through it.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/carcanet_of_wrath.ron b/assets/common/items/armor/misc/neck/carcanet_of_wrath.ron index 300004648a..65cc47f423 100644 --- a/assets/common/items/armor/misc/neck/carcanet_of_wrath.ron +++ b/assets/common/items/armor/misc/neck/carcanet_of_wrath.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carcanet of Wrath", - description: "A necklace that gives even the most feeble beings immense amounts of power.", + legacy_name: "Carcanet of Wrath", + legacy_description: "A necklace that gives even the most feeble beings immense amounts of power.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/diamond.ron b/assets/common/items/armor/misc/neck/diamond.ron index 53961b4247..27cac9209d 100644 --- a/assets/common/items/armor/misc/neck/diamond.ron +++ b/assets/common/items/armor/misc/neck/diamond.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Diamond Necklace", - description: "An expensive gold necklace, ornate with exquisite diamonds.", + legacy_name: "Diamond Necklace", + legacy_description: "An expensive gold necklace, ornate with exquisite diamonds.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/emerald.ron b/assets/common/items/armor/misc/neck/emerald.ron index a60b1b84ad..f5296b2890 100644 --- a/assets/common/items/armor/misc/neck/emerald.ron +++ b/assets/common/items/armor/misc/neck/emerald.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Emerald Necklace", - description: "A cobalt necklace, bearing beautiful emerald gems.", + legacy_name: "Emerald Necklace", + legacy_description: "A cobalt necklace, bearing beautiful emerald gems.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/fang.ron b/assets/common/items/armor/misc/neck/fang.ron index e76a627556..5610b531a4 100644 --- a/assets/common/items/armor/misc/neck/fang.ron +++ b/assets/common/items/armor/misc/neck/fang.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Fang Necklace", - description: "Only the most savage beings can handle the power of this necklace...", + legacy_name: "Fang Necklace", + legacy_description: "Only the most savage beings can handle the power of this necklace...", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/gem_of_resilience.ron b/assets/common/items/armor/misc/neck/gem_of_resilience.ron index a69927c299..82032759ad 100644 --- a/assets/common/items/armor/misc/neck/gem_of_resilience.ron +++ b/assets/common/items/armor/misc/neck/gem_of_resilience.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gem of Resilience", - description: "Surrounded by a discrete magical glow.", + legacy_name: "Gem of Resilience", + legacy_description: "Surrounded by a discrete magical glow.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/gold.ron b/assets/common/items/armor/misc/neck/gold.ron index 94dd0a313f..4c647c6530 100644 --- a/assets/common/items/armor/misc/neck/gold.ron +++ b/assets/common/items/armor/misc/neck/gold.ron @@ -1,7 +1,7 @@ // Note: Will be used to craft other necklaces, acting as the base. ItemDef( - name: "Gold Necklace", - description: "An expensive gold necklace... looks stolen.", + legacy_name: "Gold Necklace", + legacy_description: "An expensive gold necklace... looks stolen.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/haniwa_talisman.ron b/assets/common/items/armor/misc/neck/haniwa_talisman.ron index bc23f058cd..0906c6a20a 100644 --- a/assets/common/items/armor/misc/neck/haniwa_talisman.ron +++ b/assets/common/items/armor/misc/neck/haniwa_talisman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Talisman", - description: "A talisman depicting a figure of unknown origin.", + legacy_name: "Haniwa Talisman", + legacy_description: "A talisman depicting a figure of unknown origin.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/honeycomb_pendant.ron b/assets/common/items/armor/misc/neck/honeycomb_pendant.ron index a82f9f85dd..41bb2b9c4d 100644 --- a/assets/common/items/armor/misc/neck/honeycomb_pendant.ron +++ b/assets/common/items/armor/misc/neck/honeycomb_pendant.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Honeycomb Pendant", - description: "This necklace is always spewing out honey...", + legacy_name: "Honeycomb Pendant", + legacy_description: "This necklace is always spewing out honey...", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/pendant_of_protection.ron b/assets/common/items/armor/misc/neck/pendant_of_protection.ron index 1d9b4bfe0f..bce7b5f1a7 100644 --- a/assets/common/items/armor/misc/neck/pendant_of_protection.ron +++ b/assets/common/items/armor/misc/neck/pendant_of_protection.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pendant of Protection", - description: "You feel some sort of presence keeping you safe...", + legacy_name: "Pendant of Protection", + legacy_description: "You feel some sort of presence keeping you safe...", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/ruby.ron b/assets/common/items/armor/misc/neck/ruby.ron index e2ebebef4d..ccaea535b6 100644 --- a/assets/common/items/armor/misc/neck/ruby.ron +++ b/assets/common/items/armor/misc/neck/ruby.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ruby Necklace", - description: "An ornate silver necklace, embedded with beautiful rubies.", + legacy_name: "Ruby Necklace", + legacy_description: "An ornate silver necklace, embedded with beautiful rubies.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/sapphire.ron b/assets/common/items/armor/misc/neck/sapphire.ron index b7c6096bbf..191ed53904 100644 --- a/assets/common/items/armor/misc/neck/sapphire.ron +++ b/assets/common/items/armor/misc/neck/sapphire.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sapphire Necklace", - description: "A sturdy iron necklace, with polished sapphire gems embedded into it.", + legacy_name: "Sapphire Necklace", + legacy_description: "A sturdy iron necklace, with polished sapphire gems embedded into it.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/scratched.ron b/assets/common/items/armor/misc/neck/scratched.ron index e9ea73f188..e7f19ed874 100644 --- a/assets/common/items/armor/misc/neck/scratched.ron +++ b/assets/common/items/armor/misc/neck/scratched.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scratched Necklace", - description: "A shoddy necklace with a string about to snap...", + legacy_name: "Scratched Necklace", + legacy_description: "A shoddy necklace with a string about to snap...", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/shell.ron b/assets/common/items/armor/misc/neck/shell.ron index dadada9e47..a24c29154c 100644 --- a/assets/common/items/armor/misc/neck/shell.ron +++ b/assets/common/items/armor/misc/neck/shell.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Seashell Necklace", - description: "Contains the guardian aura of the ocean", + legacy_name: "Seashell Necklace", + legacy_description: "Contains the guardian aura of the ocean", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/neck/topaz.ron b/assets/common/items/armor/misc/neck/topaz.ron index 59e1626f3d..9e8b4e3417 100644 --- a/assets/common/items/armor/misc/neck/topaz.ron +++ b/assets/common/items/armor/misc/neck/topaz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Topaz Necklace", - description: "A copper necklace, with topaz embedded in the center.", + legacy_name: "Topaz Necklace", + legacy_description: "A copper necklace, with topaz embedded in the center.", kind: Armor(( kind: Neck, stats: Direct(( diff --git a/assets/common/items/armor/misc/pants/hunting.ron b/assets/common/items/armor/misc/pants/hunting.ron index 05f4279e07..b4a617b1b9 100644 --- a/assets/common/items/armor/misc/pants/hunting.ron +++ b/assets/common/items/armor/misc/pants/hunting.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hunting Pants", - description: "Crafted from soft, supple leather.", + legacy_name: "Hunting Pants", + legacy_description: "Crafted from soft, supple leather.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/armor/misc/pants/worker_blue.ron b/assets/common/items/armor/misc/pants/worker_blue.ron index 64d1853255..5f68406330 100644 --- a/assets/common/items/armor/misc/pants/worker_blue.ron +++ b/assets/common/items/armor/misc/pants/worker_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Worker Pants", - description: "Resilient and reliable.", + legacy_name: "Blue Worker Pants", + legacy_description: "Resilient and reliable.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/armor/misc/pants/worker_brown.ron b/assets/common/items/armor/misc/pants/worker_brown.ron index a9f1f85514..79636f8903 100644 --- a/assets/common/items/armor/misc/pants/worker_brown.ron +++ b/assets/common/items/armor/misc/pants/worker_brown.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Comfortable Worker Pants", - description: "Resilient and reliable.", + legacy_name: "Comfortable Worker Pants", + legacy_description: "Resilient and reliable.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/amethyst.ron b/assets/common/items/armor/misc/ring/amethyst.ron index e0f08ce81a..7e207f908f 100644 --- a/assets/common/items/armor/misc/ring/amethyst.ron +++ b/assets/common/items/armor/misc/ring/amethyst.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Amethyst Ring", - description: "A tin ring with an amethyst gem.", + legacy_name: "Amethyst Ring", + legacy_description: "A tin ring with an amethyst gem.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/diamond.ron b/assets/common/items/armor/misc/ring/diamond.ron index ab8698de40..e13f2c4eb8 100644 --- a/assets/common/items/armor/misc/ring/diamond.ron +++ b/assets/common/items/armor/misc/ring/diamond.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Diamond Ring", - description: "A gold ring with an expensive diamond.", + legacy_name: "Diamond Ring", + legacy_description: "A gold ring with an expensive diamond.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/emerald.ron b/assets/common/items/armor/misc/ring/emerald.ron index aaf35e17ff..78465b9e04 100644 --- a/assets/common/items/armor/misc/ring/emerald.ron +++ b/assets/common/items/armor/misc/ring/emerald.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Emerald Ring", - description: "A cobalt ring with an emerald gem.", + legacy_name: "Emerald Ring", + legacy_description: "A cobalt ring with an emerald gem.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/gold.ron b/assets/common/items/armor/misc/ring/gold.ron index 117a884ceb..dd9cb82b58 100644 --- a/assets/common/items/armor/misc/ring/gold.ron +++ b/assets/common/items/armor/misc/ring/gold.ron @@ -1,7 +1,7 @@ // Note: Will be used to craft other rings, acting as the base. ItemDef( - name: "Gold Ring", - description: "A plain gold ring... almost as if it is missing a gem.", + legacy_name: "Gold Ring", + legacy_description: "A plain gold ring... almost as if it is missing a gem.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/ruby.ron b/assets/common/items/armor/misc/ring/ruby.ron index 590327aff6..cd7b7e21d9 100644 --- a/assets/common/items/armor/misc/ring/ruby.ron +++ b/assets/common/items/armor/misc/ring/ruby.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ruby Ring", - description: "A silver ring with a ruby gem.", + legacy_name: "Ruby Ring", + legacy_description: "A silver ring with a ruby gem.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/sapphire.ron b/assets/common/items/armor/misc/ring/sapphire.ron index a97c11af1e..a586003bb4 100644 --- a/assets/common/items/armor/misc/ring/sapphire.ron +++ b/assets/common/items/armor/misc/ring/sapphire.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sapphire Ring", - description: "An iron ring with a sapphire gem.", + legacy_name: "Sapphire Ring", + legacy_description: "An iron ring with a sapphire gem.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/scratched.ron b/assets/common/items/armor/misc/ring/scratched.ron index b407fe21f1..cfe52e6e6d 100644 --- a/assets/common/items/armor/misc/ring/scratched.ron +++ b/assets/common/items/armor/misc/ring/scratched.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scratched Ring", - description: "Barely fits your finger.", + legacy_name: "Scratched Ring", + legacy_description: "Barely fits your finger.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/ring/topaz.ron b/assets/common/items/armor/misc/ring/topaz.ron index 9e75e278e4..c8a27b0dee 100644 --- a/assets/common/items/armor/misc/ring/topaz.ron +++ b/assets/common/items/armor/misc/ring/topaz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Topaz Ring", - description: "A copper ring with a topaz gem.", + legacy_name: "Topaz Ring", + legacy_description: "A copper ring with a topaz gem.", kind: Armor(( kind: Ring, stats: Direct(( diff --git a/assets/common/items/armor/misc/shoulder/iron_spikes.ron b/assets/common/items/armor/misc/shoulder/iron_spikes.ron index d8993015dd..03205adafb 100644 --- a/assets/common/items/armor/misc/shoulder/iron_spikes.ron +++ b/assets/common/items/armor/misc/shoulder/iron_spikes.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Spiked Pauldrons", - description: "The heavy, rough iron plate has an interlocking spikes shoved through several slots in the center to dissuade attackers.", + legacy_name: "Iron Spiked Pauldrons", + legacy_description: "The heavy, rough iron plate has an interlocking spikes shoved through several slots in the center to dissuade attackers.", kind: Armor(( kind: Shoulder, stats: Direct(( diff --git a/assets/common/items/armor/misc/shoulder/leather_iron_0.ron b/assets/common/items/armor/misc/shoulder/leather_iron_0.ron index 4329bda25a..3b9a304aa6 100644 --- a/assets/common/items/armor/misc/shoulder/leather_iron_0.ron +++ b/assets/common/items/armor/misc/shoulder/leather_iron_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron and Leather Spaulders", - description: "Leather shoulders decorated with heavy iron hooks provide protection to the wearer.", + legacy_name: "Iron and Leather Spaulders", + legacy_description: "Leather shoulders decorated with heavy iron hooks provide protection to the wearer.", kind: Armor(( kind: Shoulder, stats: Direct(( diff --git a/assets/common/items/armor/misc/shoulder/leather_iron_1.ron b/assets/common/items/armor/misc/shoulder/leather_iron_1.ron index 450c7051c0..e96bcac652 100644 --- a/assets/common/items/armor/misc/shoulder/leather_iron_1.ron +++ b/assets/common/items/armor/misc/shoulder/leather_iron_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron and Leather Spaulders", - description: "Leather inset with heavy iron spikes provide solid protection to the wearer.", + legacy_name: "Iron and Leather Spaulders", + legacy_description: "Leather inset with heavy iron spikes provide solid protection to the wearer.", kind: Armor(( kind: Shoulder, stats: Direct(( diff --git a/assets/common/items/armor/misc/shoulder/leather_iron_2.ron b/assets/common/items/armor/misc/shoulder/leather_iron_2.ron index d753422cf1..bd09e6d761 100644 --- a/assets/common/items/armor/misc/shoulder/leather_iron_2.ron +++ b/assets/common/items/armor/misc/shoulder/leather_iron_2.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron and Leather Spaulders", - description: "Leather inset with heavy iron bands provide protection to the wearer.", + legacy_name: "Iron and Leather Spaulders", + legacy_description: "Leather inset with heavy iron bands provide protection to the wearer.", kind: Armor(( kind: Shoulder, stats: Direct(( diff --git a/assets/common/items/armor/misc/shoulder/leather_iron_3.ron b/assets/common/items/armor/misc/shoulder/leather_iron_3.ron index 63bc2aac74..2e461aa8cb 100644 --- a/assets/common/items/armor/misc/shoulder/leather_iron_3.ron +++ b/assets/common/items/armor/misc/shoulder/leather_iron_3.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron and Leather Spaulders", - description: "Leather inset with iron fragments provide protection to the wearer.", + legacy_name: "Iron and Leather Spaulders", + legacy_description: "Leather inset with iron fragments provide protection to the wearer.", kind: Armor(( kind: Shoulder, stats: Direct(( diff --git a/assets/common/items/armor/misc/shoulder/leather_strip.ron b/assets/common/items/armor/misc/shoulder/leather_strip.ron index 30de3907a8..dad2025ae1 100644 --- a/assets/common/items/armor/misc/shoulder/leather_strip.ron +++ b/assets/common/items/armor/misc/shoulder/leather_strip.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Strips", - description: "Tanned animal hide strips formed into loose shoulder pads.", + legacy_name: "Leather Strips", + legacy_description: "Tanned animal hide strips formed into loose shoulder pads.", kind: Armor(( kind: Shoulder, stats: Direct(( diff --git a/assets/common/items/armor/misc/tabard/admin.ron b/assets/common/items/armor/misc/tabard/admin.ron index 7db4ba5c99..c3363fc502 100644 --- a/assets/common/items/armor/misc/tabard/admin.ron +++ b/assets/common/items/armor/misc/tabard/admin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Admin's Tabard", - description: "With great power comes great responsibility.", + legacy_name: "Admin's Tabard", + legacy_description: "With great power comes great responsibility.", kind: Armor(( kind: Tabard, stats: Direct(( diff --git a/assets/common/items/armor/pirate/belt.ron b/assets/common/items/armor/pirate/belt.ron index 1813da86d5..e2258c0f74 100644 --- a/assets/common/items/armor/pirate/belt.ron +++ b/assets/common/items/armor/pirate/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pirate Belt", - description: "", + legacy_name: "Pirate Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Pirate"), diff --git a/assets/common/items/armor/pirate/chest.ron b/assets/common/items/armor/pirate/chest.ron index c813bea4ec..14dd2d3ce7 100644 --- a/assets/common/items/armor/pirate/chest.ron +++ b/assets/common/items/armor/pirate/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pirate Jacket", - description: "", + legacy_name: "Pirate Jacket", + legacy_description: "", kind: Armor(( kind: Chest, stats: FromSet("Pirate"), diff --git a/assets/common/items/armor/pirate/foot.ron b/assets/common/items/armor/pirate/foot.ron index db3783c3f9..ab2f235ae1 100644 --- a/assets/common/items/armor/pirate/foot.ron +++ b/assets/common/items/armor/pirate/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pirate Boots", - description: "", + legacy_name: "Pirate Boots", + legacy_description: "", kind: Armor(( kind: Foot, stats: FromSet("Pirate"), diff --git a/assets/common/items/armor/pirate/hand.ron b/assets/common/items/armor/pirate/hand.ron index ad02e93d27..ed70677e9c 100644 --- a/assets/common/items/armor/pirate/hand.ron +++ b/assets/common/items/armor/pirate/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pirate Gloves", - description: "", + legacy_name: "Pirate Gloves", + legacy_description: "", kind: Armor(( kind: Hand, stats: FromSet("Pirate"), diff --git a/assets/common/items/armor/pirate/hat.ron b/assets/common/items/armor/pirate/hat.ron index 1e8df990cb..7b2df2a7c8 100644 --- a/assets/common/items/armor/pirate/hat.ron +++ b/assets/common/items/armor/pirate/hat.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pirate Hat", - description: "It seems like a parrot was perched up here.", + legacy_name: "Pirate Hat", + legacy_description: "It seems like a parrot was perched up here.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/pirate/pants.ron b/assets/common/items/armor/pirate/pants.ron index 1b2eef620b..a3bf67e2cb 100644 --- a/assets/common/items/armor/pirate/pants.ron +++ b/assets/common/items/armor/pirate/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pirate Pants", - description: "", + legacy_name: "Pirate Pants", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Pirate"), diff --git a/assets/common/items/armor/pirate/shoulder.ron b/assets/common/items/armor/pirate/shoulder.ron index 331ca0791a..c55f2b8e05 100644 --- a/assets/common/items/armor/pirate/shoulder.ron +++ b/assets/common/items/armor/pirate/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pirate Mantle", - description: "", + legacy_name: "Pirate Mantle", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: FromSet("Pirate"), diff --git a/assets/common/items/armor/rugged/chest.ron b/assets/common/items/armor/rugged/chest.ron index aa1cb692a8..eed54e9600 100644 --- a/assets/common/items/armor/rugged/chest.ron +++ b/assets/common/items/armor/rugged/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rugged Shirt", - description: "Smells like Adventure.", + legacy_name: "Rugged Shirt", + legacy_description: "Smells like Adventure.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/armor/rugged/pants.ron b/assets/common/items/armor/rugged/pants.ron index ac16f01cd0..103679dfe9 100644 --- a/assets/common/items/armor/rugged/pants.ron +++ b/assets/common/items/armor/rugged/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rugged Commoner's Pants", - description: "They remind you of the old days.", + legacy_name: "Rugged Commoner's Pants", + legacy_description: "They remind you of the old days.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/armor/savage/back.ron b/assets/common/items/armor/savage/back.ron index bbb3aa810f..fad0ece083 100644 --- a/assets/common/items/armor/savage/back.ron +++ b/assets/common/items/armor/savage/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Savage Cape", - description: "Brings the fury of the barbarians.", + legacy_name: "Savage Cape", + legacy_description: "Brings the fury of the barbarians.", kind: Armor(( kind: Back, stats: FromSet("Savage"), diff --git a/assets/common/items/armor/savage/belt.ron b/assets/common/items/armor/savage/belt.ron index 3fb0cb23c6..482f78aa6b 100644 --- a/assets/common/items/armor/savage/belt.ron +++ b/assets/common/items/armor/savage/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Savage Belt", - description: "Brings the fury of the barbarians.", + legacy_name: "Savage Belt", + legacy_description: "Brings the fury of the barbarians.", kind: Armor(( kind: Belt, stats: FromSet("Savage"), diff --git a/assets/common/items/armor/savage/chest.ron b/assets/common/items/armor/savage/chest.ron index f241782dc5..ff88b9af23 100644 --- a/assets/common/items/armor/savage/chest.ron +++ b/assets/common/items/armor/savage/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Savage Cuirass", - description: "Brings the fury of the barbarians.", + legacy_name: "Savage Cuirass", + legacy_description: "Brings the fury of the barbarians.", kind: Armor(( kind: Chest, stats: FromSet("Savage"), diff --git a/assets/common/items/armor/savage/foot.ron b/assets/common/items/armor/savage/foot.ron index 6831d58705..58edb0b3c5 100644 --- a/assets/common/items/armor/savage/foot.ron +++ b/assets/common/items/armor/savage/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Savage Boots", - description: "Brings the fury of the barbarians.", + legacy_name: "Savage Boots", + legacy_description: "Brings the fury of the barbarians.", kind: Armor(( kind: Foot, stats: FromSet("Savage"), diff --git a/assets/common/items/armor/savage/hand.ron b/assets/common/items/armor/savage/hand.ron index 25e7d0a358..993ac7b47d 100644 --- a/assets/common/items/armor/savage/hand.ron +++ b/assets/common/items/armor/savage/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Savage Gauntlets", - description: "Brings the fury of the barbarians.", + legacy_name: "Savage Gauntlets", + legacy_description: "Brings the fury of the barbarians.", kind: Armor(( kind: Hand, stats: FromSet("Savage"), diff --git a/assets/common/items/armor/savage/pants.ron b/assets/common/items/armor/savage/pants.ron index 359fd5ba53..0715c73d27 100644 --- a/assets/common/items/armor/savage/pants.ron +++ b/assets/common/items/armor/savage/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Savage Chausses", - description: "Brings the fury of the barbarians.", + legacy_name: "Savage Chausses", + legacy_description: "Brings the fury of the barbarians.", kind: Armor(( kind: Pants, stats: FromSet("Savage"), diff --git a/assets/common/items/armor/savage/shoulder.ron b/assets/common/items/armor/savage/shoulder.ron index a18e9cb9f7..3a2c645db0 100644 --- a/assets/common/items/armor/savage/shoulder.ron +++ b/assets/common/items/armor/savage/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Savage Shoulder Pad", - description: "Brings the fury of the barbarians.", + legacy_name: "Savage Shoulder Pad", + legacy_description: "Brings the fury of the barbarians.", kind: Armor(( kind: Shoulder, stats: FromSet("Savage"), diff --git a/assets/common/items/armor/tarasque/belt.ron b/assets/common/items/armor/tarasque/belt.ron index bca4cd3fd8..429dc63fb4 100644 --- a/assets/common/items/armor/tarasque/belt.ron +++ b/assets/common/items/armor/tarasque/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tarasque Belt", - description: "Shattered band of a tarasque shell, making for a strong belt.", + legacy_name: "Tarasque Belt", + legacy_description: "Shattered band of a tarasque shell, making for a strong belt.", kind: Armor(( kind: Belt, stats: FromSet("Tarasque"), diff --git a/assets/common/items/armor/tarasque/chest.ron b/assets/common/items/armor/tarasque/chest.ron index 71bbddeda5..97bb083f51 100644 --- a/assets/common/items/armor/tarasque/chest.ron +++ b/assets/common/items/armor/tarasque/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tarasque Cuirass", - description: "The rough protective underbelly and back of a tarasque's shell, formed to fit humanoid proportions.", + legacy_name: "Tarasque Cuirass", + legacy_description: "The rough protective underbelly and back of a tarasque's shell, formed to fit humanoid proportions.", kind: Armor(( kind: Chest, stats: FromSet("Tarasque"), diff --git a/assets/common/items/armor/tarasque/foot.ron b/assets/common/items/armor/tarasque/foot.ron index e0d105c7d1..9b56000ee0 100644 --- a/assets/common/items/armor/tarasque/foot.ron +++ b/assets/common/items/armor/tarasque/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tarasque Boots", - description: "Tarasque claws form the outside of these boots, protecting the wearer's feet.", + legacy_name: "Tarasque Boots", + legacy_description: "Tarasque claws form the outside of these boots, protecting the wearer's feet.", kind: Armor(( kind: Foot, stats: FromSet("Tarasque"), diff --git a/assets/common/items/armor/tarasque/hand.ron b/assets/common/items/armor/tarasque/hand.ron index 4a518bddc4..0885b7dee5 100644 --- a/assets/common/items/armor/tarasque/hand.ron +++ b/assets/common/items/armor/tarasque/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tarasque Gauntlets", - description: "Shattered fragments from a tarasque shell shaped into a protective gauntlets.", + legacy_name: "Tarasque Gauntlets", + legacy_description: "Shattered fragments from a tarasque shell shaped into a protective gauntlets.", kind: Armor(( kind: Hand, stats: FromSet("Tarasque"), diff --git a/assets/common/items/armor/tarasque/pants.ron b/assets/common/items/armor/tarasque/pants.ron index 73ef1ee7a2..5ce6afd780 100644 --- a/assets/common/items/armor/tarasque/pants.ron +++ b/assets/common/items/armor/tarasque/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tarasque Chausses", - description: "Fragmented tarasque shell tied together to form protective leg armor.", + legacy_name: "Tarasque Chausses", + legacy_description: "Fragmented tarasque shell tied together to form protective leg armor.", kind: Armor(( kind: Pants, stats: FromSet("Tarasque"), diff --git a/assets/common/items/armor/tarasque/shoulder.ron b/assets/common/items/armor/tarasque/shoulder.ron index eb1e1df6e2..39380f00a9 100644 --- a/assets/common/items/armor/tarasque/shoulder.ron +++ b/assets/common/items/armor/tarasque/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tarasque Shoulder Pad", - description: "Spiky tarasque shell fragments formed to fit as shoulder guards.", + legacy_name: "Tarasque Shoulder Pad", + legacy_description: "Spiky tarasque shell fragments formed to fit as shoulder guards.", kind: Armor(( kind: Shoulder, stats: FromSet("Tarasque"), diff --git a/assets/common/items/armor/twigs/belt.ron b/assets/common/items/armor/twigs/belt.ron index cbc260743b..ea80b92619 100644 --- a/assets/common/items/armor/twigs/belt.ron +++ b/assets/common/items/armor/twigs/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Twig Belt", - description: "Small bits of nature magically held together into the shape of a belt.", + legacy_name: "Twig Belt", + legacy_description: "Small bits of nature magically held together into the shape of a belt.", kind: Armor(( kind: Belt, stats: FromSet("Twigs"), diff --git a/assets/common/items/armor/twigs/chest.ron b/assets/common/items/armor/twigs/chest.ron index d899c43be4..8ac39f6710 100644 --- a/assets/common/items/armor/twigs/chest.ron +++ b/assets/common/items/armor/twigs/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Twig Shirt", - description: "Small sticks magically imbued to hold together to form a shirt.", + legacy_name: "Twig Shirt", + legacy_description: "Small sticks magically imbued to hold together to form a shirt.", kind: Armor(( kind: Chest, stats: FromSet("Twigs"), diff --git a/assets/common/items/armor/twigs/foot.ron b/assets/common/items/armor/twigs/foot.ron index bc44da8884..ee6d8a4b00 100644 --- a/assets/common/items/armor/twigs/foot.ron +++ b/assets/common/items/armor/twigs/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Twig Boots", - description: "Small twigs intertwined and imbued with magic to provide simple protection.", + legacy_name: "Twig Boots", + legacy_description: "Small twigs intertwined and imbued with magic to provide simple protection.", kind: Armor(( kind: Foot, stats: FromSet("Twigs"), diff --git a/assets/common/items/armor/twigs/hand.ron b/assets/common/items/armor/twigs/hand.ron index 6b881c283b..14ea7defd1 100644 --- a/assets/common/items/armor/twigs/hand.ron +++ b/assets/common/items/armor/twigs/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Twig Wraps", - description: "Magically imbued twigs interlocked into simple hand wraps.", + legacy_name: "Twig Wraps", + legacy_description: "Magically imbued twigs interlocked into simple hand wraps.", kind: Armor(( kind: Hand, stats: FromSet("Twigs"), diff --git a/assets/common/items/armor/twigs/pants.ron b/assets/common/items/armor/twigs/pants.ron index a3bbe723da..6abc41ef5f 100644 --- a/assets/common/items/armor/twigs/pants.ron +++ b/assets/common/items/armor/twigs/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Twig Pants", - description: "Magically imbued twigs formed into links similar to chainmail.", + legacy_name: "Twig Pants", + legacy_description: "Magically imbued twigs formed into links similar to chainmail.", kind: Armor(( kind: Pants, stats: FromSet("Twigs"), diff --git a/assets/common/items/armor/twigs/shoulder.ron b/assets/common/items/armor/twigs/shoulder.ron index 3d937d1429..ca251e04a1 100644 --- a/assets/common/items/armor/twigs/shoulder.ron +++ b/assets/common/items/armor/twigs/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Twig Shoulders", - description: "Spaulders made from tightly tied twigs.", + legacy_name: "Twig Shoulders", + legacy_description: "Spaulders made from tightly tied twigs.", kind: Armor(( kind: Shoulder, stats: FromSet("Twigs"), diff --git a/assets/common/items/armor/twigsflowers/belt.ron b/assets/common/items/armor/twigsflowers/belt.ron index e1fe6b7529..952bef3760 100644 --- a/assets/common/items/armor/twigsflowers/belt.ron +++ b/assets/common/items/armor/twigsflowers/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flowery Belt", - description: "Magically imbued twigs, held together with a flower intertwining its stem to hold the belt together.", + legacy_name: "Flowery Belt", + legacy_description: "Magically imbued twigs, held together with a flower intertwining its stem to hold the belt together.", kind: Armor(( kind: Belt, stats: FromSet("Twigs Flowers"), diff --git a/assets/common/items/armor/twigsflowers/chest.ron b/assets/common/items/armor/twigsflowers/chest.ron index c7fb797e3f..f2422f5ff7 100644 --- a/assets/common/items/armor/twigsflowers/chest.ron +++ b/assets/common/items/armor/twigsflowers/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flowery Shirt", - description: "Magically imbued twigs decorated with flowers and their stems, letting others know your intentions of peace and love.", + legacy_name: "Flowery Shirt", + legacy_description: "Magically imbued twigs decorated with flowers and their stems, letting others know your intentions of peace and love.", kind: Armor(( kind: Chest, stats: FromSet("Twigs Flowers"), diff --git a/assets/common/items/armor/twigsflowers/foot.ron b/assets/common/items/armor/twigsflowers/foot.ron index 16ecff213e..51b6f432ec 100644 --- a/assets/common/items/armor/twigsflowers/foot.ron +++ b/assets/common/items/armor/twigsflowers/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flowery Boots", - description: "Woven and magically imbued, these boots of twigs and flowers provide simple protection and peace to the wearer.", + legacy_name: "Flowery Boots", + legacy_description: "Woven and magically imbued, these boots of twigs and flowers provide simple protection and peace to the wearer.", kind: Armor(( kind: Foot, stats: FromSet("Twigs Flowers"), diff --git a/assets/common/items/armor/twigsflowers/hand.ron b/assets/common/items/armor/twigsflowers/hand.ron index 5fe59799d9..fbf326f81f 100644 --- a/assets/common/items/armor/twigsflowers/hand.ron +++ b/assets/common/items/armor/twigsflowers/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flowery Wraps", - description: "Wrapped and intertwined twigs held together with magic and flowers with their stems, providing peace and protection for the wearer.", + legacy_name: "Flowery Wraps", + legacy_description: "Wrapped and intertwined twigs held together with magic and flowers with their stems, providing peace and protection for the wearer.", kind: Armor(( kind: Hand, stats: FromSet("Twigs Flowers"), diff --git a/assets/common/items/armor/twigsflowers/pants.ron b/assets/common/items/armor/twigsflowers/pants.ron index e29bc5815f..ab98c4a82e 100644 --- a/assets/common/items/armor/twigsflowers/pants.ron +++ b/assets/common/items/armor/twigsflowers/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flowery Pants", - description: "Chainmail woven twigs enhanced with flower stems to provide protection and peace.", + legacy_name: "Flowery Pants", + legacy_description: "Chainmail woven twigs enhanced with flower stems to provide protection and peace.", kind: Armor(( kind: Pants, stats: FromSet("Twigs Flowers"), diff --git a/assets/common/items/armor/twigsflowers/shoulder.ron b/assets/common/items/armor/twigsflowers/shoulder.ron index bca2afa3bc..d8e1d0f7a7 100644 --- a/assets/common/items/armor/twigsflowers/shoulder.ron +++ b/assets/common/items/armor/twigsflowers/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flowery Shoulders", - description: "Flowers join the tied twigs to provide protection and peace to the wearer.", + legacy_name: "Flowery Shoulders", + legacy_description: "Flowers join the tied twigs to provide protection and peace to the wearer.", kind: Armor(( kind: Shoulder, stats: FromSet("Twigs Flowers"), diff --git a/assets/common/items/armor/twigsleaves/belt.ron b/assets/common/items/armor/twigsleaves/belt.ron index 41eae60a79..04b103155d 100644 --- a/assets/common/items/armor/twigsleaves/belt.ron +++ b/assets/common/items/armor/twigsleaves/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leafy Belt", - description: "Dried leaves cover over the standard twig belt, providing a slightly different texture.", + legacy_name: "Leafy Belt", + legacy_description: "Dried leaves cover over the standard twig belt, providing a slightly different texture.", kind: Armor(( kind: Belt, stats: FromSet("Twigs Leaves"), diff --git a/assets/common/items/armor/twigsleaves/chest.ron b/assets/common/items/armor/twigsleaves/chest.ron index 873eebc514..8e52c53fd3 100644 --- a/assets/common/items/armor/twigsleaves/chest.ron +++ b/assets/common/items/armor/twigsleaves/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leafy Shirt", - description: "Leaves cover the magically imbued twig shirt, providing a more natural appearance.", + legacy_name: "Leafy Shirt", + legacy_description: "Leaves cover the magically imbued twig shirt, providing a more natural appearance.", kind: Armor(( kind: Chest, stats: FromSet("Twigs Leaves"), diff --git a/assets/common/items/armor/twigsleaves/foot.ron b/assets/common/items/armor/twigsleaves/foot.ron index f83cc52c8e..24930787e1 100644 --- a/assets/common/items/armor/twigsleaves/foot.ron +++ b/assets/common/items/armor/twigsleaves/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leafy Boots", - description: "Leaves cover the magically entwined twigs to provide simple protection from the elements.", + legacy_name: "Leafy Boots", + legacy_description: "Leaves cover the magically entwined twigs to provide simple protection from the elements.", kind: Armor(( kind: Foot, stats: FromSet("Twigs Leaves"), diff --git a/assets/common/items/armor/twigsleaves/hand.ron b/assets/common/items/armor/twigsleaves/hand.ron index 70106b5a85..22b4dd23c9 100644 --- a/assets/common/items/armor/twigsleaves/hand.ron +++ b/assets/common/items/armor/twigsleaves/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leafy Wraps", - description: "Leaves help hide the magic-interlocking twigs, and provide mild protection from the elements.", + legacy_name: "Leafy Wraps", + legacy_description: "Leaves help hide the magic-interlocking twigs, and provide mild protection from the elements.", kind: Armor(( kind: Hand, stats: FromSet("Twigs Leaves"), diff --git a/assets/common/items/armor/twigsleaves/pants.ron b/assets/common/items/armor/twigsleaves/pants.ron index 45a00ba35a..fc3cb5136e 100644 --- a/assets/common/items/armor/twigsleaves/pants.ron +++ b/assets/common/items/armor/twigsleaves/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leafy Pants", - description: "Leaves cover the magically imbued chainmail twigs, providing protection from the elements.", + legacy_name: "Leafy Pants", + legacy_description: "Leaves cover the magically imbued chainmail twigs, providing protection from the elements.", kind: Armor(( kind: Pants, stats: FromSet("Twigs Leaves"), diff --git a/assets/common/items/armor/twigsleaves/shoulder.ron b/assets/common/items/armor/twigsleaves/shoulder.ron index dd3b7b93d9..faa48117e5 100644 --- a/assets/common/items/armor/twigsleaves/shoulder.ron +++ b/assets/common/items/armor/twigsleaves/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leafy Shoulders", - description: "Leaves cover over the twigs to provide better protection from the elements.", + legacy_name: "Leafy Shoulders", + legacy_description: "Leaves cover over the twigs to provide better protection from the elements.", kind: Armor(( kind: Shoulder, stats: FromSet("Twigs Leaves"), diff --git a/assets/common/items/armor/velorite_mage/back.ron b/assets/common/items/armor/velorite_mage/back.ron index aeee09559b..0657b10e66 100644 --- a/assets/common/items/armor/velorite_mage/back.ron +++ b/assets/common/items/armor/velorite_mage/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Battlemage Cloak", - description: "Keeps your shoulders warm.", + legacy_name: "Velorite Battlemage Cloak", + legacy_description: "Keeps your shoulders warm.", kind: Armor(( kind: Back, stats: FromSet("Velorite Battlemage"), diff --git a/assets/common/items/armor/velorite_mage/belt.ron b/assets/common/items/armor/velorite_mage/belt.ron index dfbda16bc5..a6a386b33a 100644 --- a/assets/common/items/armor/velorite_mage/belt.ron +++ b/assets/common/items/armor/velorite_mage/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Battlemage Belt", - description: "", + legacy_name: "Velorite Battlemage Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Velorite Battlemage"), diff --git a/assets/common/items/armor/velorite_mage/chest.ron b/assets/common/items/armor/velorite_mage/chest.ron index f6ea823f9e..5905d63b29 100644 --- a/assets/common/items/armor/velorite_mage/chest.ron +++ b/assets/common/items/armor/velorite_mage/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Battlemage Vest", - description: "", + legacy_name: "Velorite Battlemage Vest", + legacy_description: "", kind: Armor(( kind: Chest, stats: FromSet("Velorite Battlemage"), diff --git a/assets/common/items/armor/velorite_mage/foot.ron b/assets/common/items/armor/velorite_mage/foot.ron index b06b641da3..69f9124024 100644 --- a/assets/common/items/armor/velorite_mage/foot.ron +++ b/assets/common/items/armor/velorite_mage/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Battlemage Boots", - description: "", + legacy_name: "Velorite Battlemage Boots", + legacy_description: "", kind: Armor(( kind: Foot, stats: FromSet("Velorite Battlemage"), diff --git a/assets/common/items/armor/velorite_mage/hand.ron b/assets/common/items/armor/velorite_mage/hand.ron index bbe0c857ba..7aadb1d3dc 100644 --- a/assets/common/items/armor/velorite_mage/hand.ron +++ b/assets/common/items/armor/velorite_mage/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Battlemage Gauntlets", - description: "", + legacy_name: "Velorite Battlemage Gauntlets", + legacy_description: "", kind: Armor(( kind: Hand, stats: FromSet("Velorite Battlemage"), diff --git a/assets/common/items/armor/velorite_mage/pants.ron b/assets/common/items/armor/velorite_mage/pants.ron index 9958223802..4d4ce860b7 100644 --- a/assets/common/items/armor/velorite_mage/pants.ron +++ b/assets/common/items/armor/velorite_mage/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Battlemage Kilt", - description: "", + legacy_name: "Velorite Battlemage Kilt", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Velorite Battlemage"), diff --git a/assets/common/items/armor/velorite_mage/shoulder.ron b/assets/common/items/armor/velorite_mage/shoulder.ron index adc44751a6..842cad9d0e 100644 --- a/assets/common/items/armor/velorite_mage/shoulder.ron +++ b/assets/common/items/armor/velorite_mage/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Battlemage Guards", - description: "", + legacy_name: "Velorite Battlemage Guards", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: FromSet("Velorite Battlemage"), diff --git a/assets/common/items/armor/witch/back.ron b/assets/common/items/armor/witch/back.ron index 9f7a2a8604..6af126de22 100644 --- a/assets/common/items/armor/witch/back.ron +++ b/assets/common/items/armor/witch/back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Cape", - description: "", + legacy_name: "Witch Cape", + legacy_description: "", kind: Armor(( kind: Back, stats: FromSet("Witch"), diff --git a/assets/common/items/armor/witch/belt.ron b/assets/common/items/armor/witch/belt.ron index 7124305281..0a4c755b6c 100644 --- a/assets/common/items/armor/witch/belt.ron +++ b/assets/common/items/armor/witch/belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Belt", - description: "", + legacy_name: "Witch Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: FromSet("Witch"), diff --git a/assets/common/items/armor/witch/chest.ron b/assets/common/items/armor/witch/chest.ron index 8cd0842b27..df294317d9 100644 --- a/assets/common/items/armor/witch/chest.ron +++ b/assets/common/items/armor/witch/chest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Robe", - description: "", + legacy_name: "Witch Robe", + legacy_description: "", kind: Armor(( kind: Chest, stats: FromSet("Witch"), diff --git a/assets/common/items/armor/witch/foot.ron b/assets/common/items/armor/witch/foot.ron index 8a437d2382..21030f8687 100644 --- a/assets/common/items/armor/witch/foot.ron +++ b/assets/common/items/armor/witch/foot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Boots", - description: "", + legacy_name: "Witch Boots", + legacy_description: "", kind: Armor(( kind: Foot, stats: FromSet("Witch"), diff --git a/assets/common/items/armor/witch/hand.ron b/assets/common/items/armor/witch/hand.ron index a9dc9a3ffd..516d5afc3d 100644 --- a/assets/common/items/armor/witch/hand.ron +++ b/assets/common/items/armor/witch/hand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Handwarmers", - description: "", + legacy_name: "Witch Handwarmers", + legacy_description: "", kind: Armor(( kind: Hand, stats: FromSet("Witch"), diff --git a/assets/common/items/armor/witch/hat.ron b/assets/common/items/armor/witch/hat.ron index 1e64b5dffa..7c8fd81ddd 100644 --- a/assets/common/items/armor/witch/hat.ron +++ b/assets/common/items/armor/witch/hat.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Hat", - description: "Draws strength from dark arts.", + legacy_name: "Witch Hat", + legacy_description: "Draws strength from dark arts.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/armor/witch/pants.ron b/assets/common/items/armor/witch/pants.ron index 7b3087bf30..3f3b042c96 100644 --- a/assets/common/items/armor/witch/pants.ron +++ b/assets/common/items/armor/witch/pants.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Skirt", - description: "", + legacy_name: "Witch Skirt", + legacy_description: "", kind: Armor(( kind: Pants, stats: FromSet("Witch"), diff --git a/assets/common/items/armor/witch/shoulder.ron b/assets/common/items/armor/witch/shoulder.ron index f3bca853dd..71d55c8874 100644 --- a/assets/common/items/armor/witch/shoulder.ron +++ b/assets/common/items/armor/witch/shoulder.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Witch Mantle", - description: "", + legacy_name: "Witch Mantle", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: FromSet("Witch"), diff --git a/assets/common/items/boss_drops/exp_flask.ron b/assets/common/items/boss_drops/exp_flask.ron index a6a37b9d6c..c73b73247a 100644 --- a/assets/common/items/boss_drops/exp_flask.ron +++ b/assets/common/items/boss_drops/exp_flask.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flask of Velorite Dust", - description: "Take with plenty of water", + legacy_name: "Flask of Velorite Dust", + legacy_description: "Take with plenty of water", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/boss_drops/lantern.ron b/assets/common/items/boss_drops/lantern.ron index 3e7ca21c6d..3d5c243a0c 100644 --- a/assets/common/items/boss_drops/lantern.ron +++ b/assets/common/items/boss_drops/lantern.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Magic Lantern", - description: "Illuminates even the darkest dungeon\nA great monster was slain for this item", + legacy_name: "Magic Lantern", + legacy_description: "Illuminates even the darkest dungeon\nA great monster was slain for this item", kind: Lantern( ( color: (r: 128, g: 26, b: 255), diff --git a/assets/common/items/boss_drops/potions.ron b/assets/common/items/boss_drops/potions.ron index c0e5333ccb..7bcd7aa978 100644 --- a/assets/common/items/boss_drops/potions.ron +++ b/assets/common/items/boss_drops/potions.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Potent Potion", - description: "A potent healing potion.", + legacy_name: "Potent Potion", + legacy_description: "A potent healing potion.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/boss_drops/xp_potion.ron b/assets/common/items/boss_drops/xp_potion.ron index 2f7ec6e8f3..d79565aec2 100644 --- a/assets/common/items/boss_drops/xp_potion.ron +++ b/assets/common/items/boss_drops/xp_potion.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Potion of Skill", - description: "It doesn't seem to be doing anything...", + legacy_name: "Potion of Skill", + legacy_description: "It doesn't seem to be doing anything...", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/calendar/christmas/armor/misc/head/woolly_wintercap.ron b/assets/common/items/calendar/christmas/armor/misc/head/woolly_wintercap.ron index a3a7a40414..909ef567a1 100644 --- a/assets/common/items/calendar/christmas/armor/misc/head/woolly_wintercap.ron +++ b/assets/common/items/calendar/christmas/armor/misc/head/woolly_wintercap.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Woolly Wintercap", - description: "Simple, stylish, and festive.", + legacy_name: "Woolly Wintercap", + legacy_description: "Simple, stylish, and festive.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/charms/burning_charm.ron b/assets/common/items/charms/burning_charm.ron index d67ea32178..a12b33e65b 100644 --- a/assets/common/items/charms/burning_charm.ron +++ b/assets/common/items/charms/burning_charm.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blazing Charm", - description: "Flame is your ally, harness its power to burn your foes.", + legacy_name: "Blazing Charm", + legacy_description: "Flame is your ally, harness its power to burn your foes.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/charms/frozen_charm.ron b/assets/common/items/charms/frozen_charm.ron index c4dec746bb..4b930b1f49 100644 --- a/assets/common/items/charms/frozen_charm.ron +++ b/assets/common/items/charms/frozen_charm.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Freezing Charm", - description: "Let your enemies feel the sting of cold as you freeze them in their tracks.", + legacy_name: "Freezing Charm", + legacy_description: "Let your enemies feel the sting of cold as you freeze them in their tracks.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/charms/lifesteal_charm.ron b/assets/common/items/charms/lifesteal_charm.ron index fd21a65c4c..8f835cf3e7 100644 --- a/assets/common/items/charms/lifesteal_charm.ron +++ b/assets/common/items/charms/lifesteal_charm.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Siphon Charm", - description: "Siphon your target life and use it for your own.", + legacy_name: "Siphon Charm", + legacy_description: "Siphon your target life and use it for your own.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/consumable/curious_potion.ron b/assets/common/items/consumable/curious_potion.ron index eac967ff7e..a696e3736b 100644 --- a/assets/common/items/consumable/curious_potion.ron +++ b/assets/common/items/consumable/curious_potion.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Curious Potion", - description: "Wonder what this does...", + legacy_name: "Curious Potion", + legacy_description: "Wonder what this does...", kind: Consumable( kind: Drink, effects: Any([ diff --git a/assets/common/items/consumable/potion_agility.ron b/assets/common/items/consumable/potion_agility.ron index e7ebefd0e8..0324a9635e 100644 --- a/assets/common/items/consumable/potion_agility.ron +++ b/assets/common/items/consumable/potion_agility.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Potion of Agility", - description: "Fly, you fools!", + legacy_name: "Potion of Agility", + legacy_description: "Fly, you fools!", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/consumable/potion_big.ron b/assets/common/items/consumable/potion_big.ron index 2a49103fed..3e298cd9e1 100644 --- a/assets/common/items/consumable/potion_big.ron +++ b/assets/common/items/consumable/potion_big.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Large Potion", - description: "Precious medicine, it makes for the largest rejuvenative flask yet.", + legacy_name: "Large Potion", + legacy_description: "Precious medicine, it makes for the largest rejuvenative flask yet.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/consumable/potion_combustion.ron b/assets/common/items/consumable/potion_combustion.ron index 6bf6f6736d..42d3af3d5c 100644 --- a/assets/common/items/consumable/potion_combustion.ron +++ b/assets/common/items/consumable/potion_combustion.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Potion of Combustion", - description: "Sets the user ablaze", + legacy_name: "Potion of Combustion", + legacy_description: "Sets the user ablaze", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/consumable/potion_med.ron b/assets/common/items/consumable/potion_med.ron index 784c0ddf66..5250f3774a 100644 --- a/assets/common/items/consumable/potion_med.ron +++ b/assets/common/items/consumable/potion_med.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Medium Potion", - description: "An innovative invention from an apothecary, better than its smaller precursors.", + legacy_name: "Medium Potion", + legacy_description: "An innovative invention from an apothecary, better than its smaller precursors.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/consumable/potion_minor.ron b/assets/common/items/consumable/potion_minor.ron index d573b86fc9..f9df7131fa 100644 --- a/assets/common/items/consumable/potion_minor.ron +++ b/assets/common/items/consumable/potion_minor.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Minor Potion", - description: "A small potion concocted from apples and honey.", + legacy_name: "Minor Potion", + legacy_description: "A small potion concocted from apples and honey.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/crafting_ing/abyssal_heart.ron b/assets/common/items/crafting_ing/abyssal_heart.ron index e2f66769ad..d26819a1b0 100644 --- a/assets/common/items/crafting_ing/abyssal_heart.ron +++ b/assets/common/items/crafting_ing/abyssal_heart.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Abyssal Heart", - description: "Source of Dagons Power.", + legacy_name: "Abyssal Heart", + legacy_description: "Source of Dagons Power.", kind: Ingredient( // Descriptor not needed descriptor: "", ), diff --git a/assets/common/items/crafting_ing/animal_misc/bone.ron b/assets/common/items/crafting_ing/animal_misc/bone.ron index 8084d848a8..f9427108bb 100644 --- a/assets/common/items/crafting_ing/animal_misc/bone.ron +++ b/assets/common/items/crafting_ing/animal_misc/bone.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Thick Bone", - description: "A thick bone, it seems sturdy enough to craft with.", + legacy_name: "Thick Bone", + legacy_description: "A thick bone, it seems sturdy enough to craft with.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/claw.ron b/assets/common/items/crafting_ing/animal_misc/claw.ron index 97ab6066fc..fdb130feaa 100644 --- a/assets/common/items/crafting_ing/animal_misc/claw.ron +++ b/assets/common/items/crafting_ing/animal_misc/claw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Predator Claw", - description: "Incredibly sharp claw from a predatory animal.\n\nThis can be used when crafting weapons.", + legacy_name: "Predator Claw", + legacy_description: "Incredibly sharp claw from a predatory animal.\n\nThis can be used when crafting weapons.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/elegant_crest.ron b/assets/common/items/crafting_ing/animal_misc/elegant_crest.ron index ea1f3cd565..d1863df767 100644 --- a/assets/common/items/crafting_ing/animal_misc/elegant_crest.ron +++ b/assets/common/items/crafting_ing/animal_misc/elegant_crest.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Elegant Crest", - description: "A flawless crest from some majestic creature.\n\nThis can be used when crafting weapons.", + legacy_name: "Elegant Crest", + legacy_description: "A flawless crest from some majestic creature.\n\nThis can be used when crafting weapons.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/ember.ron b/assets/common/items/crafting_ing/animal_misc/ember.ron index 4b0112b607..1b473ebab9 100644 --- a/assets/common/items/crafting_ing/animal_misc/ember.ron +++ b/assets/common/items/crafting_ing/animal_misc/ember.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ember", - description: "A flicking ember left by a fiery creature.", + legacy_name: "Ember", + legacy_description: "A flicking ember left by a fiery creature.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/feather.ron b/assets/common/items/crafting_ing/animal_misc/feather.ron index 3875f2b610..ae82dcd255 100644 --- a/assets/common/items/crafting_ing/animal_misc/feather.ron +++ b/assets/common/items/crafting_ing/animal_misc/feather.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Feather", - description: "Feather from a bird.", + legacy_name: "Feather", + legacy_description: "Feather from a bird.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/fur.ron b/assets/common/items/crafting_ing/animal_misc/fur.ron index 181dee601d..597aa8b429 100644 --- a/assets/common/items/crafting_ing/animal_misc/fur.ron +++ b/assets/common/items/crafting_ing/animal_misc/fur.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Soft Fur", - description: "Soft fur from an animal.", + legacy_name: "Soft Fur", + legacy_description: "Soft fur from an animal.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/grim_eyeball.ron b/assets/common/items/crafting_ing/animal_misc/grim_eyeball.ron index dbd2a5a076..2b235c4621 100644 --- a/assets/common/items/crafting_ing/animal_misc/grim_eyeball.ron +++ b/assets/common/items/crafting_ing/animal_misc/grim_eyeball.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Grim Eyeball", - description: "Casts a petrifying gaze.", + legacy_name: "Grim Eyeball", + legacy_description: "Casts a petrifying gaze.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/icy_fang.ron b/assets/common/items/crafting_ing/animal_misc/icy_fang.ron index d738953227..7bf8d56bdd 100644 --- a/assets/common/items/crafting_ing/animal_misc/icy_fang.ron +++ b/assets/common/items/crafting_ing/animal_misc/icy_fang.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Icy Shard", - description: "Looted from a frosty creature.", + legacy_name: "Icy Shard", + legacy_description: "Looted from a frosty creature.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/large_horn.ron b/assets/common/items/crafting_ing/animal_misc/large_horn.ron index a92228938c..dbd9c9d309 100644 --- a/assets/common/items/crafting_ing/animal_misc/large_horn.ron +++ b/assets/common/items/crafting_ing/animal_misc/large_horn.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Large Horn", - description: "A huge sharp horn from an animal.\n\nThis can be used when crafting weapons.", + legacy_name: "Large Horn", + legacy_description: "A huge sharp horn from an animal.\n\nThis can be used when crafting weapons.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/lively_vine.ron b/assets/common/items/crafting_ing/animal_misc/lively_vine.ron index 4f01df5c68..700ba954a4 100644 --- a/assets/common/items/crafting_ing/animal_misc/lively_vine.ron +++ b/assets/common/items/crafting_ing/animal_misc/lively_vine.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Lively Vine", - description: "I think it just moved...", + legacy_name: "Lively Vine", + legacy_description: "I think it just moved...", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/long_tusk.ron b/assets/common/items/crafting_ing/animal_misc/long_tusk.ron index 0be80aa325..13f2ca84a3 100644 --- a/assets/common/items/crafting_ing/animal_misc/long_tusk.ron +++ b/assets/common/items/crafting_ing/animal_misc/long_tusk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Long Tusk", - description: "A pointy tusk from some beast.\n\nThis can be used when crafting weapons.", + legacy_name: "Long Tusk", + legacy_description: "A pointy tusk from some beast.\n\nThis can be used when crafting weapons.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/phoenix_feather.ron b/assets/common/items/crafting_ing/animal_misc/phoenix_feather.ron index f9ae1acd4a..36ea455c38 100644 --- a/assets/common/items/crafting_ing/animal_misc/phoenix_feather.ron +++ b/assets/common/items/crafting_ing/animal_misc/phoenix_feather.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Phoenix Feather", - description: "Said to have magical properties.", + legacy_name: "Phoenix Feather", + legacy_description: "Said to have magical properties.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/raptor_feather.ron b/assets/common/items/crafting_ing/animal_misc/raptor_feather.ron index eb4d2ef7f5..9fa148e211 100644 --- a/assets/common/items/crafting_ing/animal_misc/raptor_feather.ron +++ b/assets/common/items/crafting_ing/animal_misc/raptor_feather.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Raptor Feather", - description: "A large colorful feather from a raptor.", + legacy_name: "Raptor Feather", + legacy_description: "A large colorful feather from a raptor.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/sharp_fang.ron b/assets/common/items/crafting_ing/animal_misc/sharp_fang.ron index 1ecc74eb4c..89d8b9397a 100644 --- a/assets/common/items/crafting_ing/animal_misc/sharp_fang.ron +++ b/assets/common/items/crafting_ing/animal_misc/sharp_fang.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sharp Fang", - description: "Incredibly sharp tooth from a predatory animal.\n\nThis can be used when crafting weapons.", + legacy_name: "Sharp Fang", + legacy_description: "Incredibly sharp tooth from a predatory animal.\n\nThis can be used when crafting weapons.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/strong_pincer.ron b/assets/common/items/crafting_ing/animal_misc/strong_pincer.ron index 67ea846220..2c0f7e779b 100644 --- a/assets/common/items/crafting_ing/animal_misc/strong_pincer.ron +++ b/assets/common/items/crafting_ing/animal_misc/strong_pincer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Strong Pincer", - description: "The pincer of some creature, it is very tough.\n\nThis can be used when crafting weapons.", + legacy_name: "Strong Pincer", + legacy_description: "The pincer of some creature, it is very tough.\n\nThis can be used when crafting weapons.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/venom_sac.ron b/assets/common/items/crafting_ing/animal_misc/venom_sac.ron index 05323404ce..26cc58d4b7 100644 --- a/assets/common/items/crafting_ing/animal_misc/venom_sac.ron +++ b/assets/common/items/crafting_ing/animal_misc/venom_sac.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Venom Sac", - description: "A venomous sac from a poisonous creature.", + legacy_name: "Venom Sac", + legacy_description: "A venomous sac from a poisonous creature.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/animal_misc/viscous_ooze.ron b/assets/common/items/crafting_ing/animal_misc/viscous_ooze.ron index 63bdfc4b73..97125e6875 100644 --- a/assets/common/items/crafting_ing/animal_misc/viscous_ooze.ron +++ b/assets/common/items/crafting_ing/animal_misc/viscous_ooze.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Viscous Ooze", - description: "A measure of viscous ooze from a slimy creature.", + legacy_name: "Viscous Ooze", + legacy_description: "A measure of viscous ooze from a slimy creature.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/bowl.ron b/assets/common/items/crafting_ing/bowl.ron index 92fd47fde2..3f941a2b79 100644 --- a/assets/common/items/crafting_ing/bowl.ron +++ b/assets/common/items/crafting_ing/bowl.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bowl", - description: "A simple bowl for preparing meals.", + legacy_name: "Bowl", + legacy_description: "A simple bowl for preparing meals.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/brinestone.ron b/assets/common/items/crafting_ing/brinestone.ron index f24afadd2d..9d5b40dc99 100644 --- a/assets/common/items/crafting_ing/brinestone.ron +++ b/assets/common/items/crafting_ing/brinestone.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brinestone", - description: "Used for armor crafting.", + legacy_name: "Brinestone", + legacy_description: "Used for armor crafting.", kind: Ingredient( // Descriptor not needed descriptor: "", ), diff --git a/assets/common/items/crafting_ing/cactus.ron b/assets/common/items/crafting_ing/cactus.ron index 254a35029e..9673c4c94f 100644 --- a/assets/common/items/crafting_ing/cactus.ron +++ b/assets/common/items/crafting_ing/cactus.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cactus", - description: "Grows in warm and dry places. Very prickly!", + legacy_name: "Cactus", + legacy_description: "Grows in warm and dry places. Very prickly!", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/cloth/cloth_strips.ron b/assets/common/items/crafting_ing/cloth/cloth_strips.ron index a2f3d38d29..af46504fa6 100644 --- a/assets/common/items/crafting_ing/cloth/cloth_strips.ron +++ b/assets/common/items/crafting_ing/cloth/cloth_strips.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cloth Strips", - description: "Small and soft, yet useful", + legacy_name: "Cloth Strips", + legacy_description: "Small and soft, yet useful", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/cloth/cotton.ron b/assets/common/items/crafting_ing/cloth/cotton.ron index 7c0574d6a8..572bf21d3b 100644 --- a/assets/common/items/crafting_ing/cloth/cotton.ron +++ b/assets/common/items/crafting_ing/cloth/cotton.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cotton", - description: "Easy to work with and multi-functional.", + legacy_name: "Cotton", + legacy_description: "Easy to work with and multi-functional.", kind: Ingredient( descriptor: "Cotton", ), diff --git a/assets/common/items/crafting_ing/cloth/lifecloth.ron b/assets/common/items/crafting_ing/cloth/lifecloth.ron index 6cf59c3554..71c94b8a9b 100644 --- a/assets/common/items/crafting_ing/cloth/lifecloth.ron +++ b/assets/common/items/crafting_ing/cloth/lifecloth.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Lifecloth", - description: "A fabric imbued with the gentleness that nature has to offer.", + legacy_name: "Lifecloth", + legacy_description: "A fabric imbued with the gentleness that nature has to offer.", kind: Ingredient( descriptor: "Lifecloth", ), diff --git a/assets/common/items/crafting_ing/cloth/linen.ron b/assets/common/items/crafting_ing/cloth/linen.ron index 4d950958db..6ab34318eb 100644 --- a/assets/common/items/crafting_ing/cloth/linen.ron +++ b/assets/common/items/crafting_ing/cloth/linen.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Linen", - description: "A textile made from flax fibers.", + legacy_name: "Linen", + legacy_description: "A textile made from flax fibers.", kind: Ingredient( descriptor: "Linen", ), diff --git a/assets/common/items/crafting_ing/cloth/linen_red.ron b/assets/common/items/crafting_ing/cloth/linen_red.ron index ce9e4fac67..883f37cdb2 100644 --- a/assets/common/items/crafting_ing/cloth/linen_red.ron +++ b/assets/common/items/crafting_ing/cloth/linen_red.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Linen", - description: "A flax fiber textile, dyed to stand out.", + legacy_name: "Red Linen", + legacy_description: "A flax fiber textile, dyed to stand out.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/cloth/moonweave.ron b/assets/common/items/crafting_ing/cloth/moonweave.ron index 27275a93fa..0039745937 100644 --- a/assets/common/items/crafting_ing/cloth/moonweave.ron +++ b/assets/common/items/crafting_ing/cloth/moonweave.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonweave", - description: "A light yet very sturdy textile.", + legacy_name: "Moonweave", + legacy_description: "A light yet very sturdy textile.", kind: Ingredient( descriptor: "Moonwoven", ), diff --git a/assets/common/items/crafting_ing/cloth/silk.ron b/assets/common/items/crafting_ing/cloth/silk.ron index 123704f7ea..2ff676affd 100644 --- a/assets/common/items/crafting_ing/cloth/silk.ron +++ b/assets/common/items/crafting_ing/cloth/silk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silk", - description: "A fine and strong fibre produced by spiders.", + legacy_name: "Silk", + legacy_description: "A fine and strong fibre produced by spiders.", kind: Ingredient( descriptor: "Silken", ), diff --git a/assets/common/items/crafting_ing/cloth/sunsilk.ron b/assets/common/items/crafting_ing/cloth/sunsilk.ron index 778edbc73f..7c8987bd38 100644 --- a/assets/common/items/crafting_ing/cloth/sunsilk.ron +++ b/assets/common/items/crafting_ing/cloth/sunsilk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunsilk", - description: "A supernaturally strong textile.", + legacy_name: "Sunsilk", + legacy_description: "A supernaturally strong textile.", kind: Ingredient( descriptor: "Sunsilken", ), diff --git a/assets/common/items/crafting_ing/cloth/wool.ron b/assets/common/items/crafting_ing/cloth/wool.ron index 3e5cf0b84b..47d3e48611 100644 --- a/assets/common/items/crafting_ing/cloth/wool.ron +++ b/assets/common/items/crafting_ing/cloth/wool.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Soft Wool", - description: "Soft wool from an animal.", + legacy_name: "Soft Wool", + legacy_description: "Soft wool from an animal.", kind: Ingredient( descriptor: "Woolen", ), diff --git a/assets/common/items/crafting_ing/coral_branch.ron b/assets/common/items/crafting_ing/coral_branch.ron index 272867d267..c30955265b 100644 --- a/assets/common/items/crafting_ing/coral_branch.ron +++ b/assets/common/items/crafting_ing/coral_branch.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Coral Branch", - description: "Treasure from the bottom of the sea.", + legacy_name: "Coral Branch", + legacy_description: "Treasure from the bottom of the sea.", kind: Ingredient( // Descriptor not needed descriptor: "", ), diff --git a/assets/common/items/crafting_ing/cotton_boll.ron b/assets/common/items/crafting_ing/cotton_boll.ron index 3002b986ab..5abd2cd9d6 100644 --- a/assets/common/items/crafting_ing/cotton_boll.ron +++ b/assets/common/items/crafting_ing/cotton_boll.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cotton Boll", - description: "Plucked from a common cotton plant.", + legacy_name: "Cotton Boll", + legacy_description: "Plucked from a common cotton plant.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/empty_vial.ron b/assets/common/items/crafting_ing/empty_vial.ron index 14d6fa95c0..ad6851d092 100644 --- a/assets/common/items/crafting_ing/empty_vial.ron +++ b/assets/common/items/crafting_ing/empty_vial.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Empty Vial", - description: "A simple glass vial used for holding various fluids.", + legacy_name: "Empty Vial", + legacy_description: "A simple glass vial used for holding various fluids.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/glacial_crystal.ron b/assets/common/items/crafting_ing/glacial_crystal.ron index b77ce270b9..98003a13d8 100644 --- a/assets/common/items/crafting_ing/glacial_crystal.ron +++ b/assets/common/items/crafting_ing/glacial_crystal.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Glacial Crystal", - description: "The purest form of ice, cold enough to cool lava.", + legacy_name: "Glacial Crystal", + legacy_description: "The purest form of ice, cold enough to cool lava.", kind: Ingredient( // Descriptor not needed descriptor: "", ), diff --git a/assets/common/items/crafting_ing/hide/animal_hide.ron b/assets/common/items/crafting_ing/hide/animal_hide.ron index ff107ebf5d..07bb06cd96 100644 --- a/assets/common/items/crafting_ing/hide/animal_hide.ron +++ b/assets/common/items/crafting_ing/hide/animal_hide.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Animal Hide", - description: "A common pelt from most animals. Becomes leather.", + legacy_name: "Animal Hide", + legacy_description: "A common pelt from most animals. Becomes leather.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/hide/carapace.ron b/assets/common/items/crafting_ing/hide/carapace.ron index 05412b14ba..daa099ef28 100644 --- a/assets/common/items/crafting_ing/hide/carapace.ron +++ b/assets/common/items/crafting_ing/hide/carapace.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hard Carapace", - description: "Tough, hard carapace, a shield to many creatures.", + legacy_name: "Hard Carapace", + legacy_description: "Tough, hard carapace, a shield to many creatures.", kind: Ingredient( descriptor: "Carapace", ), diff --git a/assets/common/items/crafting_ing/hide/dragon_scale.ron b/assets/common/items/crafting_ing/hide/dragon_scale.ron index 74d0fa8b63..65c7ba09de 100644 --- a/assets/common/items/crafting_ing/hide/dragon_scale.ron +++ b/assets/common/items/crafting_ing/hide/dragon_scale.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dragon Scale", - description: "Tough scale from a legendary beast, hot to the touch.", + legacy_name: "Dragon Scale", + legacy_description: "Tough scale from a legendary beast, hot to the touch.", kind: Ingredient( descriptor: "Dragonscale", ), diff --git a/assets/common/items/crafting_ing/hide/leather_troll.ron b/assets/common/items/crafting_ing/hide/leather_troll.ron index 8610a81b3b..3b8cdf076b 100644 --- a/assets/common/items/crafting_ing/hide/leather_troll.ron +++ b/assets/common/items/crafting_ing/hide/leather_troll.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Troll Hide", - description: "Looted from cave trolls.", + legacy_name: "Troll Hide", + legacy_description: "Looted from cave trolls.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/hide/plate.ron b/assets/common/items/crafting_ing/hide/plate.ron index 6bea861155..b171e17cb1 100644 --- a/assets/common/items/crafting_ing/hide/plate.ron +++ b/assets/common/items/crafting_ing/hide/plate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Plate", - description: "Durable plate from an armored animal.", + legacy_name: "Plate", + legacy_description: "Durable plate from an armored animal.", kind: Ingredient( descriptor: "Plate", ), diff --git a/assets/common/items/crafting_ing/hide/rugged_hide.ron b/assets/common/items/crafting_ing/hide/rugged_hide.ron index 56e65090e8..e95637dbac 100644 --- a/assets/common/items/crafting_ing/hide/rugged_hide.ron +++ b/assets/common/items/crafting_ing/hide/rugged_hide.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rugged Hide", - description: "A durable pelt from fierce creatures, favored by leatherworkers.", + legacy_name: "Rugged Hide", + legacy_description: "A durable pelt from fierce creatures, favored by leatherworkers.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/hide/scales.ron b/assets/common/items/crafting_ing/hide/scales.ron index 922fd8273d..690280d395 100644 --- a/assets/common/items/crafting_ing/hide/scales.ron +++ b/assets/common/items/crafting_ing/hide/scales.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Scale", - description: "Shiny scales found off of an animal.", + legacy_name: "Scale", + legacy_description: "Shiny scales found off of an animal.", kind: Ingredient( descriptor: "Scale", ), diff --git a/assets/common/items/crafting_ing/hide/tough_hide.ron b/assets/common/items/crafting_ing/hide/tough_hide.ron index 636726d5fc..e5eb82a78c 100644 --- a/assets/common/items/crafting_ing/hide/tough_hide.ron +++ b/assets/common/items/crafting_ing/hide/tough_hide.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tough Hide", - description: "A relatively tough, rough hide. Becomes leather.", + legacy_name: "Tough Hide", + legacy_description: "A relatively tough, rough hide. Becomes leather.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/honey.ron b/assets/common/items/crafting_ing/honey.ron index e7ac2d01fb..20983fe09a 100644 --- a/assets/common/items/crafting_ing/honey.ron +++ b/assets/common/items/crafting_ing/honey.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Honey", - description: "Stolen from a beehive. Surely the bees won't be happy with this!", + legacy_name: "Honey", + legacy_description: "Stolen from a beehive. Surely the bees won't be happy with this!", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/leather/leather_strips.ron b/assets/common/items/crafting_ing/leather/leather_strips.ron index 6abdaac8ea..0f34e0ce23 100644 --- a/assets/common/items/crafting_ing/leather/leather_strips.ron +++ b/assets/common/items/crafting_ing/leather/leather_strips.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leather Strips", - description: "Simple and versatile.", + legacy_name: "Leather Strips", + legacy_description: "Simple and versatile.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/leather/rigid_leather.ron b/assets/common/items/crafting_ing/leather/rigid_leather.ron index ea0736f805..62c3ad5637 100644 --- a/assets/common/items/crafting_ing/leather/rigid_leather.ron +++ b/assets/common/items/crafting_ing/leather/rigid_leather.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rigid Leather", - description: "Light but layered, perfect for protection.", + legacy_name: "Rigid Leather", + legacy_description: "Light but layered, perfect for protection.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/leather/simple_leather.ron b/assets/common/items/crafting_ing/leather/simple_leather.ron index 035d3d7855..2b57a39e0f 100644 --- a/assets/common/items/crafting_ing/leather/simple_leather.ron +++ b/assets/common/items/crafting_ing/leather/simple_leather.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Simple Leather", - description: "Light and flexible.", + legacy_name: "Simple Leather", + legacy_description: "Light and flexible.", kind: Ingredient( descriptor: "Raw Hide", ), diff --git a/assets/common/items/crafting_ing/leather/thick_leather.ron b/assets/common/items/crafting_ing/leather/thick_leather.ron index 58d7d22a23..353b2b3aaa 100644 --- a/assets/common/items/crafting_ing/leather/thick_leather.ron +++ b/assets/common/items/crafting_ing/leather/thick_leather.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Thick Leather", - description: "Strong and durable.", + legacy_name: "Thick Leather", + legacy_description: "Strong and durable.", kind: Ingredient( descriptor: "Leather", ), diff --git a/assets/common/items/crafting_ing/living_embers.ron b/assets/common/items/crafting_ing/living_embers.ron index afa03cf702..5122bae795 100644 --- a/assets/common/items/crafting_ing/living_embers.ron +++ b/assets/common/items/crafting_ing/living_embers.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Living Embers", - description: "The smouldering remains of a fiery creature.", + legacy_name: "Living Embers", + legacy_description: "The smouldering remains of a fiery creature.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/mindflayer_bag_damaged.ron b/assets/common/items/crafting_ing/mindflayer_bag_damaged.ron index a36ba69f53..1abb9308cd 100644 --- a/assets/common/items/crafting_ing/mindflayer_bag_damaged.ron +++ b/assets/common/items/crafting_ing/mindflayer_bag_damaged.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Glowing Remains", - description: "Looted from an evil being.\n\nWith some additional work it can surely be\nbrought back to its former glory...", + legacy_name: "Glowing Remains", + legacy_description: "Looted from an evil being.\n\nWith some additional work it can surely be\nbrought back to its former glory...", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/oil.ron b/assets/common/items/crafting_ing/oil.ron index c7016dd318..c05f24001f 100644 --- a/assets/common/items/crafting_ing/oil.ron +++ b/assets/common/items/crafting_ing/oil.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Oil", - description: "A measure of thick, sludgy oil.", + legacy_name: "Oil", + legacy_description: "A measure of thick, sludgy oil.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/pearl.ron b/assets/common/items/crafting_ing/pearl.ron index 8d331c4ff4..7b6796ead7 100644 --- a/assets/common/items/crafting_ing/pearl.ron +++ b/assets/common/items/crafting_ing/pearl.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pearl", - description: "Would make a nice lamp.", + legacy_name: "Pearl", + legacy_description: "Would make a nice lamp.", kind: Ingredient( // Descriptor not needed descriptor: "", ), diff --git a/assets/common/items/crafting_ing/resin.ron b/assets/common/items/crafting_ing/resin.ron index 02b188485e..b5dbe5af68 100644 --- a/assets/common/items/crafting_ing/resin.ron +++ b/assets/common/items/crafting_ing/resin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Resin", - description: "Used for woodworking.", + legacy_name: "Resin", + legacy_description: "Used for woodworking.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/rock.ron b/assets/common/items/crafting_ing/rock.ron index 59b3672b5d..c5a37ef8b1 100644 --- a/assets/common/items/crafting_ing/rock.ron +++ b/assets/common/items/crafting_ing/rock.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rock", - description: "Made up of a bunch of different minerals, looks like it would hurt to get hit with.", + legacy_name: "Rock", + legacy_description: "Made up of a bunch of different minerals, looks like it would hurt to get hit with.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/seashells.ron b/assets/common/items/crafting_ing/seashells.ron index 5ebd5befbd..4dbc070e81 100644 --- a/assets/common/items/crafting_ing/seashells.ron +++ b/assets/common/items/crafting_ing/seashells.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Seashells", - description: "Shells from a sea creature.", + legacy_name: "Seashells", + legacy_description: "Shells from a sea creature.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/sentient_seed.ron b/assets/common/items/crafting_ing/sentient_seed.ron index 4fe45a8b9c..2ace797e3a 100644 --- a/assets/common/items/crafting_ing/sentient_seed.ron +++ b/assets/common/items/crafting_ing/sentient_seed.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sentient Seed", - description: "The undeveloped spawn of a sentient plant.", + legacy_name: "Sentient Seed", + legacy_description: "The undeveloped spawn of a sentient plant.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/sticky_thread.ron b/assets/common/items/crafting_ing/sticky_thread.ron index 40d27a35c5..231c0e6c7c 100644 --- a/assets/common/items/crafting_ing/sticky_thread.ron +++ b/assets/common/items/crafting_ing/sticky_thread.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sticky Thread", - description: "A messy spider extract, but a tailor may have use for it.", + legacy_name: "Sticky Thread", + legacy_description: "A messy spider extract, but a tailor may have use for it.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/stones.ron b/assets/common/items/crafting_ing/stones.ron index b27ff774f8..7bca0fb23b 100644 --- a/assets/common/items/crafting_ing/stones.ron +++ b/assets/common/items/crafting_ing/stones.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Stones", - description: "Pebbles from the ground, nothing out of the ordinary.", + legacy_name: "Stones", + legacy_description: "Pebbles from the ground, nothing out of the ordinary.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_ing/twigs.ron b/assets/common/items/crafting_ing/twigs.ron index 35932ec1e1..f4e6693656 100644 --- a/assets/common/items/crafting_ing/twigs.ron +++ b/assets/common/items/crafting_ing/twigs.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Twigs", - description: "Found near trees, a squirrel must've knocked it down.", + legacy_name: "Twigs", + legacy_description: "Found near trees, a squirrel must've knocked it down.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_tools/mortar_pestle.ron b/assets/common/items/crafting_tools/mortar_pestle.ron index 0da4e8d0db..010bbf865e 100644 --- a/assets/common/items/crafting_tools/mortar_pestle.ron +++ b/assets/common/items/crafting_tools/mortar_pestle.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mortar and Pestle", - description: "Crushes and grinds things into a fine powder or paste. Needed to craft various items.", + legacy_name: "Mortar and Pestle", + legacy_description: "Crushes and grinds things into a fine powder or paste. Needed to craft various items.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/crafting_tools/sewing_set.ron b/assets/common/items/crafting_tools/sewing_set.ron index 99d93ecb38..fd963bc8bf 100644 --- a/assets/common/items/crafting_tools/sewing_set.ron +++ b/assets/common/items/crafting_tools/sewing_set.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sewing Set", - description: "Used to craft various items.", + legacy_name: "Sewing Set", + legacy_description: "Used to craft various items.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/debug/admin.ron b/assets/common/items/debug/admin.ron index 108af49da0..b33c886ff2 100644 --- a/assets/common/items/debug/admin.ron +++ b/assets/common/items/debug/admin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Admin's Tabard", - description: "With great power comes\ngreat responsibility.", + legacy_name: "Admin's Tabard", + legacy_description: "With great power comes\ngreat responsibility.", kind: Armor(( kind: Tabard, stats: Direct(( diff --git a/assets/common/items/debug/admin_back.ron b/assets/common/items/debug/admin_back.ron index 507a1674b7..60878da5e1 100644 --- a/assets/common/items/debug/admin_back.ron +++ b/assets/common/items/debug/admin_back.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Admin's Cape", - description: "With great power comes\ngreat responsibility.", + legacy_name: "Admin's Cape", + legacy_description: "With great power comes\ngreat responsibility.", kind: Armor(( kind: Back, stats: Direct(()), diff --git a/assets/common/items/debug/admin_black_hole.ron b/assets/common/items/debug/admin_black_hole.ron index 1bf987bdc6..8cc8cd3f12 100644 --- a/assets/common/items/debug/admin_black_hole.ron +++ b/assets/common/items/debug/admin_black_hole.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Admin's Black Hole", - description: "They say it will fit anything.", + legacy_name: "Admin's Black Hole", + legacy_description: "It just works.", kind: Armor( ( kind: Bag, @@ -9,5 +9,5 @@ ItemDef( ), quality: Debug, tags: [], - slots: 2500, + slots: 900, ) diff --git a/assets/common/items/debug/admin_stick.ron b/assets/common/items/debug/admin_stick.ron index 6fcb3629fc..24f81c6c65 100644 --- a/assets/common/items/debug/admin_stick.ron +++ b/assets/common/items/debug/admin_stick.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Belzeshrub the Broom-God", - description: "You can hear him giggle whenever\nyou hit the ground a bit too hard...", + legacy_name: "Belzeshrub the Broom-God", + legacy_description: "You can hear him giggle whenever\nyou hit the ground a bit too hard...", kind: Tool(( kind: Debug, hands: Two, diff --git a/assets/common/items/debug/admin_sword.ron b/assets/common/items/debug/admin_sword.ron index 08627b6699..0a947db683 100644 --- a/assets/common/items/debug/admin_sword.ron +++ b/assets/common/items/debug/admin_sword.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Admin Greatsword", - description: "Shouldn't this be a hammer?", + legacy_name: "Admin Greatsword", + legacy_description: "Shouldn't this be a hammer?", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/debug/cultist_belt.ron b/assets/common/items/debug/cultist_belt.ron index 261416219d..27f413acf2 100644 --- a/assets/common/items/debug/cultist_belt.ron +++ b/assets/common/items/debug/cultist_belt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Belt", - description: "", + legacy_name: "Velorite Belt", + legacy_description: "", kind: Armor(( kind: Belt, stats: Direct(()), diff --git a/assets/common/items/debug/cultist_boots.ron b/assets/common/items/debug/cultist_boots.ron index 4084c2853e..ff78afb50d 100644 --- a/assets/common/items/debug/cultist_boots.ron +++ b/assets/common/items/debug/cultist_boots.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Boots", - description: "", + legacy_name: "Velorite Boots", + legacy_description: "", kind: Armor(( kind: Foot, stats: Direct(()), diff --git a/assets/common/items/debug/cultist_chest_blue.ron b/assets/common/items/debug/cultist_chest_blue.ron index 9d59562aca..252579fdac 100644 --- a/assets/common/items/debug/cultist_chest_blue.ron +++ b/assets/common/items/debug/cultist_chest_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Chest", - description: "", + legacy_name: "Velorite Chest", + legacy_description: "", kind: Armor(( kind: Chest, stats: Direct(()), diff --git a/assets/common/items/debug/cultist_hands_blue.ron b/assets/common/items/debug/cultist_hands_blue.ron index a2870e7776..b92926001f 100644 --- a/assets/common/items/debug/cultist_hands_blue.ron +++ b/assets/common/items/debug/cultist_hands_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Gloves", - description: "", + legacy_name: "Velorite Gloves", + legacy_description: "", kind: Armor(( kind: Hand, stats: Direct(()), diff --git a/assets/common/items/debug/cultist_legs_blue.ron b/assets/common/items/debug/cultist_legs_blue.ron index fba70b07a2..850335e96c 100644 --- a/assets/common/items/debug/cultist_legs_blue.ron +++ b/assets/common/items/debug/cultist_legs_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Skirt", - description: "", + legacy_name: "Velorite Skirt", + legacy_description: "", kind: Armor(( kind: Pants, stats: Direct(()), diff --git a/assets/common/items/debug/cultist_shoulder_blue.ron b/assets/common/items/debug/cultist_shoulder_blue.ron index d7d74312a1..436dccf583 100644 --- a/assets/common/items/debug/cultist_shoulder_blue.ron +++ b/assets/common/items/debug/cultist_shoulder_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Mantle", - description: "", + legacy_name: "Velorite Mantle", + legacy_description: "", kind: Armor(( kind: Shoulder, stats: Direct(()), diff --git a/assets/common/items/debug/dungeon_purple.ron b/assets/common/items/debug/dungeon_purple.ron index 5991093294..eeabf41373 100644 --- a/assets/common/items/debug/dungeon_purple.ron +++ b/assets/common/items/debug/dungeon_purple.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Admin Cape", - description: "Where did I put my banhammer again?", + legacy_name: "Velorite Admin Cape", + legacy_description: "Where did I put my banhammer again?", kind: Armor(( kind: Back, stats: Direct(()), diff --git a/assets/common/items/debug/golden_cheese.ron b/assets/common/items/debug/golden_cheese.ron index 4468f66c7c..cc506af9c7 100644 --- a/assets/common/items/debug/golden_cheese.ron +++ b/assets/common/items/debug/golden_cheese.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Golden Cheese", - description: "They say gods eat it to get eternal youth.", + legacy_name: "Golden Cheese", + legacy_description: "They say gods eat it to get eternal youth.", kind: Consumable( kind: Drink, effects: All([ diff --git a/assets/common/items/debug/velorite_bow_debug.ron b/assets/common/items/debug/velorite_bow_debug.ron index 35ebb99465..3ff3836782 100644 --- a/assets/common/items/debug/velorite_bow_debug.ron +++ b/assets/common/items/debug/velorite_bow_debug.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Admin Velorite Bow", - description: "Infused with Velorite power.", + legacy_name: "Admin Velorite Bow", + legacy_description: "Infused with Velorite power.", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/flowers/blue.ron b/assets/common/items/flowers/blue.ron index 0a927a6aa6..bd0d645db2 100644 --- a/assets/common/items/flowers/blue.ron +++ b/assets/common/items/flowers/blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Flower", - description: "Matches the color of the sky.", + legacy_name: "Blue Flower", + legacy_description: "Matches the color of the sky.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/moonbell.ron b/assets/common/items/flowers/moonbell.ron index da5eeed6a6..9512310e57 100644 --- a/assets/common/items/flowers/moonbell.ron +++ b/assets/common/items/flowers/moonbell.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonbell", - description: "It glistens brilliantly under the moonlight.", + legacy_name: "Moonbell", + legacy_description: "It glistens brilliantly under the moonlight.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/pink.ron b/assets/common/items/flowers/pink.ron index e02738bd98..53be3ecc45 100644 --- a/assets/common/items/flowers/pink.ron +++ b/assets/common/items/flowers/pink.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pink Flower", - description: "Looks like a lollipop.", + legacy_name: "Pink Flower", + legacy_description: "Looks like a lollipop.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/plant_fiber.ron b/assets/common/items/flowers/plant_fiber.ron index a964f7b111..a7facd70ee 100644 --- a/assets/common/items/flowers/plant_fiber.ron +++ b/assets/common/items/flowers/plant_fiber.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Plant Fiber", - description: "A length of raw plant material.", + legacy_name: "Plant Fiber", + legacy_description: "A length of raw plant material.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/pyrebloom.ron b/assets/common/items/flowers/pyrebloom.ron index 2efc344388..44d4e96cfb 100644 --- a/assets/common/items/flowers/pyrebloom.ron +++ b/assets/common/items/flowers/pyrebloom.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pyrebloom", - description: "Warm to the touch, long after picking.", + legacy_name: "Pyrebloom", + legacy_description: "Warm to the touch, long after picking.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/red.ron b/assets/common/items/flowers/red.ron index 9f0a061094..93f17befe9 100644 --- a/assets/common/items/flowers/red.ron +++ b/assets/common/items/flowers/red.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Flower", - description: "Can be used as a dying ingredient.", + legacy_name: "Red Flower", + legacy_description: "Can be used as a dying ingredient.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/sunflower.ron b/assets/common/items/flowers/sunflower.ron index 52b6f78f74..109bf38fe0 100644 --- a/assets/common/items/flowers/sunflower.ron +++ b/assets/common/items/flowers/sunflower.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunflower", - description: "Smells like summer.", + legacy_name: "Sunflower", + legacy_description: "Smells like summer.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/white.ron b/assets/common/items/flowers/white.ron index 11f19282e1..32d0c360e3 100644 --- a/assets/common/items/flowers/white.ron +++ b/assets/common/items/flowers/white.ron @@ -1,6 +1,6 @@ ItemDef( - name: "White flower", - description: "Pure and precious.", + legacy_name: "White flower", + legacy_description: "Pure and precious.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/wild_flax.ron b/assets/common/items/flowers/wild_flax.ron index 2ff999de1a..00dead0495 100644 --- a/assets/common/items/flowers/wild_flax.ron +++ b/assets/common/items/flowers/wild_flax.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wild Flax", - description: "Could be used to spin some simple cloth.", + legacy_name: "Wild Flax", + legacy_description: "Could be used to spin some simple cloth.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/flowers/yellow.ron b/assets/common/items/flowers/yellow.ron index 3a049b913f..0097b3fc06 100644 --- a/assets/common/items/flowers/yellow.ron +++ b/assets/common/items/flowers/yellow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Yellow Flower", - description: "Glows like the sun.", + legacy_name: "Yellow Flower", + legacy_description: "Glows like the sun.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/food/apple.ron b/assets/common/items/food/apple.ron index 6c82e7ac64..05fede298f 100644 --- a/assets/common/items/food/apple.ron +++ b/assets/common/items/food/apple.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Apple", - description: "Red and juicy", + legacy_name: "Apple", + legacy_description: "Red and juicy", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/apple_mushroom_curry.ron b/assets/common/items/food/apple_mushroom_curry.ron index 63fee7c3cc..5d2e371715 100644 --- a/assets/common/items/food/apple_mushroom_curry.ron +++ b/assets/common/items/food/apple_mushroom_curry.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mushroom Curry", - description: "Who could say no to that?", + legacy_name: "Mushroom Curry", + legacy_description: "Who could say no to that?", kind: Consumable( kind: ComplexFood, effects: All([ diff --git a/assets/common/items/food/apple_stick.ron b/assets/common/items/food/apple_stick.ron index c73618dcae..d03686b0b1 100644 --- a/assets/common/items/food/apple_stick.ron +++ b/assets/common/items/food/apple_stick.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Apple Stick", - description: "The stick makes it easier to carry!", + legacy_name: "Apple Stick", + legacy_description: "The stick makes it easier to carry!", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/blue_cheese.ron b/assets/common/items/food/blue_cheese.ron index 2b0ce8f4ee..cabeb9e18c 100644 --- a/assets/common/items/food/blue_cheese.ron +++ b/assets/common/items/food/blue_cheese.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Cheese", - description: "Pungent and filling", + legacy_name: "Blue Cheese", + legacy_description: "Pungent and filling", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/cactus_colada.ron b/assets/common/items/food/cactus_colada.ron index d7a3e370c1..6c75e7f9ac 100644 --- a/assets/common/items/food/cactus_colada.ron +++ b/assets/common/items/food/cactus_colada.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cactus Colada", - description: "Giving you that special prickle.", + legacy_name: "Cactus Colada", + legacy_description: "Giving you that special prickle.", kind: Consumable( kind: Drink, effects: One( diff --git a/assets/common/items/food/carrot.ron b/assets/common/items/food/carrot.ron index e0d4637b74..349698c10b 100644 --- a/assets/common/items/food/carrot.ron +++ b/assets/common/items/food/carrot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Carrot", - description: "An orange root vegetable. They say it'll improve your vision!", + legacy_name: "Carrot", + legacy_description: "An orange root vegetable. They say it'll improve your vision!", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/cheese.ron b/assets/common/items/food/cheese.ron index 268983cf40..d758a6f6ef 100644 --- a/assets/common/items/food/cheese.ron +++ b/assets/common/items/food/cheese.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dwarven Cheese", - description: "Made from goat milk from the finest dwarven produce. Aromatic and nutritious!", + legacy_name: "Dwarven Cheese", + legacy_description: "Made from goat milk from the finest dwarven produce. Aromatic and nutritious!", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/coconut.ron b/assets/common/items/food/coconut.ron index 794c466cdb..596047012f 100644 --- a/assets/common/items/food/coconut.ron +++ b/assets/common/items/food/coconut.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Coconut", - description: "Reliable source of water and fat. Can often be found growing on palm trees.", + legacy_name: "Coconut", + legacy_description: "Reliable source of water and fat. Can often be found growing on palm trees.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/coltsfoot.ron b/assets/common/items/food/coltsfoot.ron index 535499897a..e719ea2fab 100644 --- a/assets/common/items/food/coltsfoot.ron +++ b/assets/common/items/food/coltsfoot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Coltsfoot", - description: "A daisy-like flower often used in herbal teas.", + legacy_name: "Coltsfoot", + legacy_description: "A daisy-like flower often used in herbal teas.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/dandelion.ron b/assets/common/items/food/dandelion.ron index d6f5489bc3..4c5bf44f75 100644 --- a/assets/common/items/food/dandelion.ron +++ b/assets/common/items/food/dandelion.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dandelion", - description: "A small, yellow flower. Uses the wind to spread its seeds.", + legacy_name: "Dandelion", + legacy_description: "A small, yellow flower. Uses the wind to spread its seeds.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/garlic.ron b/assets/common/items/food/garlic.ron index 87b9a4d118..822285a28c 100644 --- a/assets/common/items/food/garlic.ron +++ b/assets/common/items/food/garlic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Garlic", - description: "Make sure to brush your teeth after eating.", + legacy_name: "Garlic", + legacy_description: "Make sure to brush your teeth after eating.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/honeycorn.ron b/assets/common/items/food/honeycorn.ron index fbd9f87191..4f71f1e1d7 100644 --- a/assets/common/items/food/honeycorn.ron +++ b/assets/common/items/food/honeycorn.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Honeycorn", - description: "Sweeet", + legacy_name: "Honeycorn", + legacy_description: "Sweeet", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/lettuce.ron b/assets/common/items/food/lettuce.ron index f60a2cc2cd..bffc014620 100644 --- a/assets/common/items/food/lettuce.ron +++ b/assets/common/items/food/lettuce.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Lettuce", - description: "A vibrant green leafy vegetable. Lettuce make some salads!", + legacy_name: "Lettuce", + legacy_description: "A vibrant green leafy vegetable. Lettuce make some salads!", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat.ron b/assets/common/items/food/meat.ron index 6fa277f5f3..d6e82cdf7b 100644 --- a/assets/common/items/food/meat.ron +++ b/assets/common/items/food/meat.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Meat", - description: "Meat. The lifeblood of mankind.", + legacy_name: "Meat", + legacy_description: "Meat. The lifeblood of mankind.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/beast_large_cooked.ron b/assets/common/items/food/meat/beast_large_cooked.ron index dc264f7f6f..acd02930d6 100644 --- a/assets/common/items/food/meat/beast_large_cooked.ron +++ b/assets/common/items/food/meat/beast_large_cooked.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cooked Meat Slab", - description: "Medium Rare.", + legacy_name: "Cooked Meat Slab", + legacy_description: "Medium Rare.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/beast_large_raw.ron b/assets/common/items/food/meat/beast_large_raw.ron index 490b755c2b..12fd0d4ded 100644 --- a/assets/common/items/food/meat/beast_large_raw.ron +++ b/assets/common/items/food/meat/beast_large_raw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Raw Meat Slab", - description: "Chunk of beastly animal meat, best after cooking.", + legacy_name: "Raw Meat Slab", + legacy_description: "Chunk of beastly animal meat, best after cooking.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/beast_small_cooked.ron b/assets/common/items/food/meat/beast_small_cooked.ron index 6b145b8bdf..c42eb6673d 100644 --- a/assets/common/items/food/meat/beast_small_cooked.ron +++ b/assets/common/items/food/meat/beast_small_cooked.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cooked Meat Sliver", - description: "Medium Rare.", + legacy_name: "Cooked Meat Sliver", + legacy_description: "Medium Rare.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/beast_small_raw.ron b/assets/common/items/food/meat/beast_small_raw.ron index 80f1891173..7a60bcb011 100644 --- a/assets/common/items/food/meat/beast_small_raw.ron +++ b/assets/common/items/food/meat/beast_small_raw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Raw Meat Sliver", - description: "Small hunk of beastly animal meat, best after cooking.", + legacy_name: "Raw Meat Sliver", + legacy_description: "Small hunk of beastly animal meat, best after cooking.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/bird_cooked.ron b/assets/common/items/food/meat/bird_cooked.ron index 0e2ae6b16d..7ccc364297 100644 --- a/assets/common/items/food/meat/bird_cooked.ron +++ b/assets/common/items/food/meat/bird_cooked.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cooked Bird Meat", - description: "Best enjoyed with one in each hand.", + legacy_name: "Cooked Bird Meat", + legacy_description: "Best enjoyed with one in each hand.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/bird_large_cooked.ron b/assets/common/items/food/meat/bird_large_cooked.ron index 701a4b157b..533dd80d48 100644 --- a/assets/common/items/food/meat/bird_large_cooked.ron +++ b/assets/common/items/food/meat/bird_large_cooked.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Huge Cooked Drumstick", - description: "Makes for a legendary meal.", + legacy_name: "Huge Cooked Drumstick", + legacy_description: "Makes for a legendary meal.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/bird_large_raw.ron b/assets/common/items/food/meat/bird_large_raw.ron index f84f1bbcc9..1966fba6dc 100644 --- a/assets/common/items/food/meat/bird_large_raw.ron +++ b/assets/common/items/food/meat/bird_large_raw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Huge Raw Drumstick", - description: "It's magnificent.", + legacy_name: "Huge Raw Drumstick", + legacy_description: "It's magnificent.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/bird_raw.ron b/assets/common/items/food/meat/bird_raw.ron index 7f808c12d0..28428a719b 100644 --- a/assets/common/items/food/meat/bird_raw.ron +++ b/assets/common/items/food/meat/bird_raw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Raw Bird Meat", - description: "A hefty drumstick.", + legacy_name: "Raw Bird Meat", + legacy_description: "A hefty drumstick.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/fish_cooked.ron b/assets/common/items/food/meat/fish_cooked.ron index 95d683ffb3..dbeb909f61 100644 --- a/assets/common/items/food/meat/fish_cooked.ron +++ b/assets/common/items/food/meat/fish_cooked.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cooked Fish", - description: "A fresh cooked seafood steak.", + legacy_name: "Cooked Fish", + legacy_description: "A fresh cooked seafood steak.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/fish_raw.ron b/assets/common/items/food/meat/fish_raw.ron index bee6f3381c..2353fe94b7 100644 --- a/assets/common/items/food/meat/fish_raw.ron +++ b/assets/common/items/food/meat/fish_raw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Raw Fish", - description: "A steak chopped from a fish, best after cooking.", + legacy_name: "Raw Fish", + legacy_description: "A steak chopped from a fish, best after cooking.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/tough_cooked.ron b/assets/common/items/food/meat/tough_cooked.ron index 138d00fb18..b301dba2d6 100644 --- a/assets/common/items/food/meat/tough_cooked.ron +++ b/assets/common/items/food/meat/tough_cooked.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cooked Tough Meat", - description: "Tastes exotic.", + legacy_name: "Cooked Tough Meat", + legacy_description: "Tastes exotic.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/meat/tough_raw.ron b/assets/common/items/food/meat/tough_raw.ron index 12b3392e81..95a5228713 100644 --- a/assets/common/items/food/meat/tough_raw.ron +++ b/assets/common/items/food/meat/tough_raw.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Raw Tough Meat", - description: "Peculiar bit of meat, best after cooking.", + legacy_name: "Raw Tough Meat", + legacy_description: "Peculiar bit of meat, best after cooking.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/mushroom.ron b/assets/common/items/food/mushroom.ron index 1d76bf5d65..7d4b99b535 100644 --- a/assets/common/items/food/mushroom.ron +++ b/assets/common/items/food/mushroom.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mushroom", - description: "Hopefully this one is not poisonous", + legacy_name: "Mushroom", + legacy_description: "Hopefully this one is not poisonous", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/mushroom_stick.ron b/assets/common/items/food/mushroom_stick.ron index b177a04da0..7ca7f40c13 100644 --- a/assets/common/items/food/mushroom_stick.ron +++ b/assets/common/items/food/mushroom_stick.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mushroom Stick", - description: "Roasted mushrooms on a stick for easy carrying", + legacy_name: "Mushroom Stick", + legacy_description: "Roasted mushrooms on a stick for easy carrying", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/onion.ron b/assets/common/items/food/onion.ron index 1309b3a7e0..70eccb22b4 100644 --- a/assets/common/items/food/onion.ron +++ b/assets/common/items/food/onion.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Onion", - description: "A vegetable that's made the toughest men cry.", + legacy_name: "Onion", + legacy_description: "A vegetable that's made the toughest men cry.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/plainsalad.ron b/assets/common/items/food/plainsalad.ron index d68678c6f1..c1b5596c31 100644 --- a/assets/common/items/food/plainsalad.ron +++ b/assets/common/items/food/plainsalad.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Plain Salad", - description: "Literally just chopped lettuce. Does this even count as a salad?", + legacy_name: "Plain Salad", + legacy_description: "Literally just chopped lettuce. Does this even count as a salad?", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/pumpkin_spice_brew.ron b/assets/common/items/food/pumpkin_spice_brew.ron index 70131ff4a6..96a0e6651d 100644 --- a/assets/common/items/food/pumpkin_spice_brew.ron +++ b/assets/common/items/food/pumpkin_spice_brew.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pumpkin Spice Brew", - description: "Brewed from moldy pumpkins.", + legacy_name: "Pumpkin Spice Brew", + legacy_description: "Brewed from moldy pumpkins.", kind: Consumable( kind: Drink, effects: One( diff --git a/assets/common/items/food/sage.ron b/assets/common/items/food/sage.ron index 0a98b9fe8d..53d8ebda46 100644 --- a/assets/common/items/food/sage.ron +++ b/assets/common/items/food/sage.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sage", - description: "A herb commonly used in tea.", + legacy_name: "Sage", + legacy_description: "A herb commonly used in tea.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/spore_corruption.ron b/assets/common/items/food/spore_corruption.ron index 41802fc31c..99b85ad946 100644 --- a/assets/common/items/food/spore_corruption.ron +++ b/assets/common/items/food/spore_corruption.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Spore of Corruption", - description: "You feel an evil force pulsating within.\n\nIt may be unwise to hold on to it for too long...", + legacy_name: "Spore of Corruption", + legacy_description: "You feel an evil force pulsating within.\n\nIt may be unwise to hold on to it for too long...", kind: Consumable( kind: ComplexFood, effects: All([ diff --git a/assets/common/items/food/sunflower_icetea.ron b/assets/common/items/food/sunflower_icetea.ron index 401462ecc8..c986bb58f6 100644 --- a/assets/common/items/food/sunflower_icetea.ron +++ b/assets/common/items/food/sunflower_icetea.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sunflower Ice Tea", - description: "Brewed from freshly shelled sunflower seeds", + legacy_name: "Sunflower Ice Tea", + legacy_description: "Brewed from freshly shelled sunflower seeds", kind: Consumable( kind: Drink, effects: One( diff --git a/assets/common/items/food/tomato.ron b/assets/common/items/food/tomato.ron index 67c608ddd5..68e3bfd3ae 100644 --- a/assets/common/items/food/tomato.ron +++ b/assets/common/items/food/tomato.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tomato", - description: "A red fruit. It's not actually a vegetable!", + legacy_name: "Tomato", + legacy_description: "A red fruit. It's not actually a vegetable!", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/food/tomatosalad.ron b/assets/common/items/food/tomatosalad.ron index c20825c763..1ba3bd0a5d 100644 --- a/assets/common/items/food/tomatosalad.ron +++ b/assets/common/items/food/tomatosalad.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tomato Salad", - description: "Leafy salad with some chopped, juicy tomatoes mixed in.", + legacy_name: "Tomato Salad", + legacy_description: "Leafy salad with some chopped, juicy tomatoes mixed in.", kind: Consumable( kind: Food, effects: One( diff --git a/assets/common/items/glider/basic_red.ron b/assets/common/items/glider/basic_red.ron index 6e96baaf5d..81e1f0315f 100644 --- a/assets/common/items/glider/basic_red.ron +++ b/assets/common/items/glider/basic_red.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Cloth Glider", - description: "A simple glider, but with a striking red color.", + legacy_name: "Red Cloth Glider", + legacy_description: "A simple glider, but with a striking red color.", kind: Glider, quality: Moderate, tags: [ diff --git a/assets/common/items/glider/basic_white.ron b/assets/common/items/glider/basic_white.ron index 4c9cc6242d..bed08df230 100644 --- a/assets/common/items/glider/basic_white.ron +++ b/assets/common/items/glider/basic_white.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Plain Cloth Glider", - description: "Simple, but classy.", + legacy_name: "Plain Cloth Glider", + legacy_description: "Simple, but classy.", kind: Glider, quality: Moderate, tags: [ diff --git a/assets/common/items/glider/blue.ron b/assets/common/items/glider/blue.ron index cf4a2e48fa..e517ab2735 100644 --- a/assets/common/items/glider/blue.ron +++ b/assets/common/items/glider/blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Falcon", - description: "Sky colored.", + legacy_name: "Blue Falcon", + legacy_description: "Sky colored.", kind: Glider, quality: High, tags: [], diff --git a/assets/common/items/glider/butterfly3.ron b/assets/common/items/glider/butterfly3.ron index add3bc101c..331a6bd0c3 100644 --- a/assets/common/items/glider/butterfly3.ron +++ b/assets/common/items/glider/butterfly3.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moonlit Love", - description: "Love is in the air.", + legacy_name: "Moonlit Love", + legacy_description: "Love is in the air.", kind: Glider, quality: Epic, tags: [ diff --git a/assets/common/items/glider/cloverleaf.ron b/assets/common/items/glider/cloverleaf.ron index a3c1dc8f1b..6247f126db 100644 --- a/assets/common/items/glider/cloverleaf.ron +++ b/assets/common/items/glider/cloverleaf.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cloverleaf", - description: "Brings luck to its owner. Light-weight and cheap to make, and also very cute!", + legacy_name: "Cloverleaf", + legacy_description: "Brings luck to its owner. Light-weight and cheap to make, and also very cute!", kind: Glider, quality: Moderate, tags: [], diff --git a/assets/common/items/glider/leaves.ron b/assets/common/items/glider/leaves.ron index 852a6560cd..6fd232c618 100644 --- a/assets/common/items/glider/leaves.ron +++ b/assets/common/items/glider/leaves.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leaves Glider", - description: "Soar among the trees", + legacy_name: "Leaves Glider", + legacy_description: "Soar among the trees", kind: Glider, quality: Moderate, tags: [ diff --git a/assets/common/items/glider/monarch.ron b/assets/common/items/glider/monarch.ron index b6bc7a57ef..b163b61e7a 100644 --- a/assets/common/items/glider/monarch.ron +++ b/assets/common/items/glider/monarch.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orange Monarch", - description: "The delicate wings flutter faintly.", + legacy_name: "Orange Monarch", + legacy_description: "The delicate wings flutter faintly.", kind: Glider, quality: High, tags: [], diff --git a/assets/common/items/glider/moonrise.ron b/assets/common/items/glider/moonrise.ron index 673b51cfd5..69282304fe 100644 --- a/assets/common/items/glider/moonrise.ron +++ b/assets/common/items/glider/moonrise.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Aquatic Night", - description: "The stars are beautiful tonight.", + legacy_name: "Aquatic Night", + legacy_description: "The stars are beautiful tonight.", kind: Glider, quality: Epic, tags: [], diff --git a/assets/common/items/glider/morpho.ron b/assets/common/items/glider/morpho.ron index 6a400deba1..684d994570 100644 --- a/assets/common/items/glider/morpho.ron +++ b/assets/common/items/glider/morpho.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Morpho", - description: "The delicate wings flutter faintly.", + legacy_name: "Blue Morpho", + legacy_description: "The delicate wings flutter faintly.", kind: Glider, quality: High, tags: [], diff --git a/assets/common/items/glider/moth.ron b/assets/common/items/glider/moth.ron index 437bcdca4f..01f245e441 100644 --- a/assets/common/items/glider/moth.ron +++ b/assets/common/items/glider/moth.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Green Luna", - description: "The delicate wings flutter faintly.", + legacy_name: "Green Luna", + legacy_description: "The delicate wings flutter faintly.", kind: Glider, quality: High, tags: [], diff --git a/assets/common/items/glider/sandraptor.ron b/assets/common/items/glider/sandraptor.ron index 87dff782b3..449c94b596 100644 --- a/assets/common/items/glider/sandraptor.ron +++ b/assets/common/items/glider/sandraptor.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sand Raptor Wings", - description: "Take flight with the wings of a thirsty predator", + legacy_name: "Sand Raptor Wings", + legacy_description: "Take flight with the wings of a thirsty predator", kind: Glider, quality: High, tags: [ diff --git a/assets/common/items/glider/skullgrin.ron b/assets/common/items/glider/skullgrin.ron index ba46cf9000..4769307ec4 100644 --- a/assets/common/items/glider/skullgrin.ron +++ b/assets/common/items/glider/skullgrin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Skullgrin", - description: "Death from above.", + legacy_name: "Skullgrin", + legacy_description: "Death from above.", kind: Glider, quality: Legendary, tags: [], diff --git a/assets/common/items/glider/snowraptor.ron b/assets/common/items/glider/snowraptor.ron index 19e0c43f0f..4a3ed2fc16 100644 --- a/assets/common/items/glider/snowraptor.ron +++ b/assets/common/items/glider/snowraptor.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Snow Raptor Wings", - description: "Take flight with the wings of a cold-blooded predator", + legacy_name: "Snow Raptor Wings", + legacy_description: "Take flight with the wings of a cold-blooded predator", kind: Glider, quality: High, tags: [], diff --git a/assets/common/items/glider/sunset.ron b/assets/common/items/glider/sunset.ron index 56a22b44a3..d77f03f746 100644 --- a/assets/common/items/glider/sunset.ron +++ b/assets/common/items/glider/sunset.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Horizon", - description: "It isn't high noon.", + legacy_name: "Horizon", + legacy_description: "It isn't high noon.", kind: Glider, quality: Epic, tags: [ diff --git a/assets/common/items/glider/winter_wings.ron b/assets/common/items/glider/winter_wings.ron index ae49f84954..8d1dab671e 100644 --- a/assets/common/items/glider/winter_wings.ron +++ b/assets/common/items/glider/winter_wings.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wings of Winter", - description: "Sparkles brilliantly and cooly even under the warm sun.", + legacy_name: "Wings of Winter", + legacy_description: "Sparkles brilliantly and cooly even under the warm sun.", kind: Glider, quality: Legendary, tags: [], diff --git a/assets/common/items/glider/woodraptor.ron b/assets/common/items/glider/woodraptor.ron index bf4476e11c..a738b348d5 100644 --- a/assets/common/items/glider/woodraptor.ron +++ b/assets/common/items/glider/woodraptor.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wood Raptor Wings", - description: "Take flight with the wings of a stealthy predator", + legacy_name: "Wood Raptor Wings", + legacy_description: "Take flight with the wings of a stealthy predator", kind: Glider, quality: High, tags: [], diff --git a/assets/common/items/grasses/long.ron b/assets/common/items/grasses/long.ron index 34640966b3..48e78ab58b 100644 --- a/assets/common/items/grasses/long.ron +++ b/assets/common/items/grasses/long.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Long Grass", - description: "Greener than an orc's snout.", + legacy_name: "Long Grass", + legacy_description: "Greener than an orc's snout.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/grasses/medium.ron b/assets/common/items/grasses/medium.ron index 61570ea5a4..1b57e5411e 100644 --- a/assets/common/items/grasses/medium.ron +++ b/assets/common/items/grasses/medium.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Medium Grass", - description: "Greener than an orc's snout.", + legacy_name: "Medium Grass", + legacy_description: "Greener than an orc's snout.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/grasses/short.ron b/assets/common/items/grasses/short.ron index bfbc3d8651..7b42e88ff1 100644 --- a/assets/common/items/grasses/short.ron +++ b/assets/common/items/grasses/short.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Short Grass", - description: "Greener than an orc's snout.", + legacy_name: "Short Grass", + legacy_description: "Greener than an orc's snout.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/keys/bone_key.ron b/assets/common/items/keys/bone_key.ron index 19f91f83a0..7b291c103d 100644 --- a/assets/common/items/keys/bone_key.ron +++ b/assets/common/items/keys/bone_key.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bone Key", - description: "Used to open bone locks. Will break after use.", + legacy_name: "Bone Key", + legacy_description: "Used to open bone locks. Will break after use.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/glass_key.ron b/assets/common/items/keys/glass_key.ron index 8f469dcd43..697ace156d 100644 --- a/assets/common/items/keys/glass_key.ron +++ b/assets/common/items/keys/glass_key.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Glass Key", - description: "Used to open Glass Barriers. Will break after use.", + legacy_name: "Glass Key", + legacy_description: "Used to open Glass Barriers. Will break after use.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/quarry_keys/ancient.ron b/assets/common/items/keys/quarry_keys/ancient.ron index e7d4f1ce51..7fdc11e473 100644 --- a/assets/common/items/keys/quarry_keys/ancient.ron +++ b/assets/common/items/keys/quarry_keys/ancient.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ancient Key", - description: "If you are lucky it works one more time before breaking.", + legacy_name: "Ancient Key", + legacy_description: "If you are lucky it works one more time before breaking.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/quarry_keys/backdoor.ron b/assets/common/items/keys/quarry_keys/backdoor.ron index d31b467563..4d6e38bfb8 100644 --- a/assets/common/items/keys/quarry_keys/backdoor.ron +++ b/assets/common/items/keys/quarry_keys/backdoor.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Backdoor Key", - description: "If you are lucky it works one more time before breaking.", + legacy_name: "Backdoor Key", + legacy_description: "If you are lucky it works one more time before breaking.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/quarry_keys/cyclops_eye.ron b/assets/common/items/keys/quarry_keys/cyclops_eye.ron index bdfcf1d159..4a4bfe80eb 100644 --- a/assets/common/items/keys/quarry_keys/cyclops_eye.ron +++ b/assets/common/items/keys/quarry_keys/cyclops_eye.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cyclops Eye", - description: "Looks like it could open an ancient mechanism.", + legacy_name: "Cyclops Eye", + legacy_description: "Looks like it could open an ancient mechanism.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/quarry_keys/flamekeeper_left.ron b/assets/common/items/keys/quarry_keys/flamekeeper_left.ron index d738a3df0d..e1942bb862 100644 --- a/assets/common/items/keys/quarry_keys/flamekeeper_left.ron +++ b/assets/common/items/keys/quarry_keys/flamekeeper_left.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Left Goggle-Glass", - description: "Looks like it could open a door...", + legacy_name: "Left Goggle-Glass", + legacy_description: "Looks like it could open a door...", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/quarry_keys/flamekeeper_right.ron b/assets/common/items/keys/quarry_keys/flamekeeper_right.ron index 1ba65e8a2a..50c0cd51ae 100644 --- a/assets/common/items/keys/quarry_keys/flamekeeper_right.ron +++ b/assets/common/items/keys/quarry_keys/flamekeeper_right.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Right Goggle-Glass", - description: "Looks like it could open a door...", + legacy_name: "Right Goggle-Glass", + legacy_description: "Looks like it could open a door...", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/quarry_keys/overseer.ron b/assets/common/items/keys/quarry_keys/overseer.ron index 3f75b468a9..38f6bfea19 100644 --- a/assets/common/items/keys/quarry_keys/overseer.ron +++ b/assets/common/items/keys/quarry_keys/overseer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Overseer Key", - description: "If you are lucky it works one more time before breaking.", + legacy_name: "Overseer Key", + legacy_description: "If you are lucky it works one more time before breaking.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/quarry_keys/smelting.ron b/assets/common/items/keys/quarry_keys/smelting.ron index e4d0543929..7f4d4d0b4c 100644 --- a/assets/common/items/keys/quarry_keys/smelting.ron +++ b/assets/common/items/keys/quarry_keys/smelting.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Smelting Room Key", - description: "If you are lucky it works one more time before breaking.", + legacy_name: "Smelting Room Key", + legacy_description: "If you are lucky it works one more time before breaking.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/keys/rusty_tower_key.ron b/assets/common/items/keys/rusty_tower_key.ron index eed77d8c32..bb6ad976c6 100644 --- a/assets/common/items/keys/rusty_tower_key.ron +++ b/assets/common/items/keys/rusty_tower_key.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rusty Tower Key", - description: "Smells like magic with a bit of... cheese?", + legacy_name: "Rusty Tower Key", + legacy_description: "Smells like magic with a bit of... cheese?", kind: Utility( kind: Key, ), diff --git a/assets/common/items/lantern/black_0.ron b/assets/common/items/lantern/black_0.ron index 19791f4eb2..a269adbbaa 100644 --- a/assets/common/items/lantern/black_0.ron +++ b/assets/common/items/lantern/black_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Black Lantern", - description: "Quite common due to popular use of budding adventurers!", + legacy_name: "Black Lantern", + legacy_description: "Quite common due to popular use of budding adventurers!", kind: Lantern( ( color: (r: 255, g: 128, b: 26), diff --git a/assets/common/items/lantern/blue_0.ron b/assets/common/items/lantern/blue_0.ron index 55ba3750d6..c25ffcd227 100644 --- a/assets/common/items/lantern/blue_0.ron +++ b/assets/common/items/lantern/blue_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cool Blue Lantern", - description: "This lantern is surprisingly cold when lit.", + legacy_name: "Cool Blue Lantern", + legacy_description: "This lantern is surprisingly cold when lit.", kind: Lantern( ( color: (r: 55, g: 100, b: 255), diff --git a/assets/common/items/lantern/geode_purp.ron b/assets/common/items/lantern/geode_purp.ron index 3d18d45c04..bd77a11ec3 100644 --- a/assets/common/items/lantern/geode_purp.ron +++ b/assets/common/items/lantern/geode_purp.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Purple Geode", - description: "Emits a calming glow, helps to calm your nerves.", + legacy_name: "Purple Geode", + legacy_description: "Emits a calming glow, helps to calm your nerves.", kind: Lantern( ( color: (r: 144, g: 88, b: 181), diff --git a/assets/common/items/lantern/green_0.ron b/assets/common/items/lantern/green_0.ron index 1fffdee208..69489f1260 100644 --- a/assets/common/items/lantern/green_0.ron +++ b/assets/common/items/lantern/green_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Lime Zest Lantern", - description: "It has an opening that could fit a ring...", + legacy_name: "Lime Zest Lantern", + legacy_description: "It has an opening that could fit a ring...", kind: Lantern( ( color: (r: 145, g: 255, b: 145), diff --git a/assets/common/items/lantern/polaris.ron b/assets/common/items/lantern/polaris.ron index 39d58ddfab..e2a5aa1364 100644 --- a/assets/common/items/lantern/polaris.ron +++ b/assets/common/items/lantern/polaris.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Polaris", - description: "Christmas Lantern.", + legacy_name: "Polaris", + legacy_description: "Christmas Lantern.", kind: Lantern( ( color: (r: 67, g: 170, b: 255), diff --git a/assets/common/items/lantern/pumpkin.ron b/assets/common/items/lantern/pumpkin.ron index c48f087619..2bb0f2dad6 100644 --- a/assets/common/items/lantern/pumpkin.ron +++ b/assets/common/items/lantern/pumpkin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Eerie Pumpkin", - description: "Did it just blink?!", + legacy_name: "Eerie Pumpkin", + legacy_description: "Did it just blink?!", kind: Lantern( ( color: (r: 31, g: 255, b: 22), diff --git a/assets/common/items/lantern/red_0.ron b/assets/common/items/lantern/red_0.ron index d9c6a6878c..14d0167669 100644 --- a/assets/common/items/lantern/red_0.ron +++ b/assets/common/items/lantern/red_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Lantern", - description: "Caution: contents hot", + legacy_name: "Red Lantern", + legacy_description: "Caution: contents hot", kind: Lantern( ( color: (r: 255, g: 70, b: 70), diff --git a/assets/common/items/log/bamboo.ron b/assets/common/items/log/bamboo.ron index 1951d1c279..b5fff499d3 100644 --- a/assets/common/items/log/bamboo.ron +++ b/assets/common/items/log/bamboo.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bamboo", - description: "A giant woody grass.\n\nThis can be used when crafting wooden weapons.", + legacy_name: "Bamboo", + legacy_description: "A giant woody grass.\n\nThis can be used when crafting wooden weapons.", kind: Ingredient( descriptor: "Bamboo", ), diff --git a/assets/common/items/log/eldwood.ron b/assets/common/items/log/eldwood.ron index d30dbde36d..d5ed1d9f8a 100644 --- a/assets/common/items/log/eldwood.ron +++ b/assets/common/items/log/eldwood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Eldwood Logs", - description: "Old logs that emanate magic.\n\nThis can be used when crafting wooden weapons.", + legacy_name: "Eldwood Logs", + legacy_description: "Old logs that emanate magic.\n\nThis can be used when crafting wooden weapons.", kind: Ingredient( descriptor: "Eldwood", ), diff --git a/assets/common/items/log/frostwood.ron b/assets/common/items/log/frostwood.ron index 86fcdad7f6..ce9534a7ea 100644 --- a/assets/common/items/log/frostwood.ron +++ b/assets/common/items/log/frostwood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frostwood Logs", - description: "Chilly wood that comes from cold biomes. Cold to the touch.\n\nThis can be used when crafting wooden weapons.", + legacy_name: "Frostwood Logs", + legacy_description: "Chilly wood that comes from cold biomes. Cold to the touch.\n\nThis can be used when crafting wooden weapons.", kind: Ingredient( descriptor: "Frostwood", ), diff --git a/assets/common/items/log/hardwood.ron b/assets/common/items/log/hardwood.ron index fc9105e71d..d23008fc0f 100644 --- a/assets/common/items/log/hardwood.ron +++ b/assets/common/items/log/hardwood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hardwood Logs", - description: "Extra thick and sturdy logs.\n\nThis can be used when crafting wooden weapons.", + legacy_name: "Hardwood Logs", + legacy_description: "Extra thick and sturdy logs.\n\nThis can be used when crafting wooden weapons.", kind: Ingredient( descriptor: "Hardwood", ), diff --git a/assets/common/items/log/ironwood.ron b/assets/common/items/log/ironwood.ron index de965c9713..2124725ce7 100644 --- a/assets/common/items/log/ironwood.ron +++ b/assets/common/items/log/ironwood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ironwood Logs", - description: "A particularly sturdy wood.\n\nThis can be used when crafting wooden weapons.", + legacy_name: "Ironwood Logs", + legacy_description: "A particularly sturdy wood.\n\nThis can be used when crafting wooden weapons.", kind: Ingredient( descriptor: "Ironwood", ), diff --git a/assets/common/items/log/wood.ron b/assets/common/items/log/wood.ron index bd8f43ddd6..dae65de5e8 100644 --- a/assets/common/items/log/wood.ron +++ b/assets/common/items/log/wood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wood Logs", - description: "Regular, sturdy wooden logs.\n\nThis can be used when crafting wooden weapons.", + legacy_name: "Wood Logs", + legacy_description: "Regular, sturdy wooden logs.\n\nThis can be used when crafting wooden weapons.", kind: Ingredient( descriptor: "Wooden", ), diff --git a/assets/common/items/mineral/gem/amethyst.ron b/assets/common/items/mineral/gem/amethyst.ron index 660f58269d..0cf449ce48 100644 --- a/assets/common/items/mineral/gem/amethyst.ron +++ b/assets/common/items/mineral/gem/amethyst.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Amethyst", - description: "A precious purple gem.", + legacy_name: "Amethyst", + legacy_description: "A precious purple gem.", kind: Ingredient( descriptor: "Amethyst", ), diff --git a/assets/common/items/mineral/gem/diamond.ron b/assets/common/items/mineral/gem/diamond.ron index 0ee510d9f9..c5dc3f9833 100644 --- a/assets/common/items/mineral/gem/diamond.ron +++ b/assets/common/items/mineral/gem/diamond.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Diamond", - description: "A sparkling silver gem.", + legacy_name: "Diamond", + legacy_description: "A sparkling silver gem.", kind: Ingredient( descriptor: "Diamond", ), diff --git a/assets/common/items/mineral/gem/emerald.ron b/assets/common/items/mineral/gem/emerald.ron index f7416a95a6..1c8ca8eead 100644 --- a/assets/common/items/mineral/gem/emerald.ron +++ b/assets/common/items/mineral/gem/emerald.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Emerald", - description: "A vibrant viridian gem.", + legacy_name: "Emerald", + legacy_description: "A vibrant viridian gem.", kind: Ingredient( descriptor: "Emerald", ), diff --git a/assets/common/items/mineral/gem/ruby.ron b/assets/common/items/mineral/gem/ruby.ron index 6420321963..51405bc553 100644 --- a/assets/common/items/mineral/gem/ruby.ron +++ b/assets/common/items/mineral/gem/ruby.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ruby", - description: "A superbly scarlet gem.", + legacy_name: "Ruby", + legacy_description: "A superbly scarlet gem.", kind: Ingredient( descriptor: "Ruby", ), diff --git a/assets/common/items/mineral/gem/sapphire.ron b/assets/common/items/mineral/gem/sapphire.ron index 442f3e4601..16272333e7 100644 --- a/assets/common/items/mineral/gem/sapphire.ron +++ b/assets/common/items/mineral/gem/sapphire.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sapphire", - description: "A colorful cobalt gem.", + legacy_name: "Sapphire", + legacy_description: "A colorful cobalt gem.", kind: Ingredient( descriptor: "Sapphire", ), diff --git a/assets/common/items/mineral/gem/topaz.ron b/assets/common/items/mineral/gem/topaz.ron index 3050042362..9c49e34435 100644 --- a/assets/common/items/mineral/gem/topaz.ron +++ b/assets/common/items/mineral/gem/topaz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Topaz", - description: "An outstanding orange gem.", + legacy_name: "Topaz", + legacy_description: "An outstanding orange gem.", kind: Ingredient( descriptor: "Topaz", ), diff --git a/assets/common/items/mineral/ingot/bloodsteel.ron b/assets/common/items/mineral/ingot/bloodsteel.ron index 7513084136..fe1144c1a3 100644 --- a/assets/common/items/mineral/ingot/bloodsteel.ron +++ b/assets/common/items/mineral/ingot/bloodsteel.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodsteel Ingot", - description: "An alloy of bloodstone and iron, with a dark red color.\n\nThis can be used when crafting metal weapons.", + legacy_name: "Bloodsteel Ingot", + legacy_description: "An alloy of bloodstone and iron, with a dark red color.\n\nThis can be used when crafting metal weapons.", kind: Ingredient( descriptor: "Bloodsteel", ), diff --git a/assets/common/items/mineral/ingot/bronze.ron b/assets/common/items/mineral/ingot/bronze.ron index d4a3d26aee..d287d2f0ac 100644 --- a/assets/common/items/mineral/ingot/bronze.ron +++ b/assets/common/items/mineral/ingot/bronze.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bronze Ingot", - description: "A sturdy alloy made from combining copper and tin.\n\nThis can be used when crafting metal weapons.", + legacy_name: "Bronze Ingot", + legacy_description: "A sturdy alloy made from combining copper and tin.\n\nThis can be used when crafting metal weapons.", kind: Ingredient( descriptor: "Bronze", ), diff --git a/assets/common/items/mineral/ingot/cobalt.ron b/assets/common/items/mineral/ingot/cobalt.ron index ca8c18936d..7e5a4ad2f0 100644 --- a/assets/common/items/mineral/ingot/cobalt.ron +++ b/assets/common/items/mineral/ingot/cobalt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Ingot", - description: "A strikingly blue ingot.\n\nThis can be used when crafting metal weapons.", + legacy_name: "Cobalt Ingot", + legacy_description: "A strikingly blue ingot.\n\nThis can be used when crafting metal weapons.", kind: Ingredient( descriptor: "Cobalt", ), diff --git a/assets/common/items/mineral/ingot/copper.ron b/assets/common/items/mineral/ingot/copper.ron index 2217a9a6ea..58193ca3d5 100644 --- a/assets/common/items/mineral/ingot/copper.ron +++ b/assets/common/items/mineral/ingot/copper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Copper Ingot", - description: "An ingot with a unique brown color.", + legacy_name: "Copper Ingot", + legacy_description: "An ingot with a unique brown color.", kind: Ingredient( descriptor: "Copper", ), diff --git a/assets/common/items/mineral/ingot/gold.ron b/assets/common/items/mineral/ingot/gold.ron index e8f4be1470..3274871433 100644 --- a/assets/common/items/mineral/ingot/gold.ron +++ b/assets/common/items/mineral/ingot/gold.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gold Ingot", - description: "An ingot made of refined metallic gold.", + legacy_name: "Gold Ingot", + legacy_description: "An ingot made of refined metallic gold.", kind: Ingredient( descriptor: "Golden", ), diff --git a/assets/common/items/mineral/ingot/iron.ron b/assets/common/items/mineral/ingot/iron.ron index 8bb190f229..280ff22e26 100644 --- a/assets/common/items/mineral/ingot/iron.ron +++ b/assets/common/items/mineral/ingot/iron.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Ingot", - description: "An incredibly commonplace metal.\n\nThis can be used when crafting metal weapons.", + legacy_name: "Iron Ingot", + legacy_description: "An incredibly commonplace metal.\n\nThis can be used when crafting metal weapons.", kind: Ingredient( descriptor: "Iron", ), diff --git a/assets/common/items/mineral/ingot/orichalcum.ron b/assets/common/items/mineral/ingot/orichalcum.ron index 26d82e1424..f6a9fb5db1 100644 --- a/assets/common/items/mineral/ingot/orichalcum.ron +++ b/assets/common/items/mineral/ingot/orichalcum.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Orichalcum Ingot", - description: "An ingot made of refined orichalcum.\n\nThis can be used when crafting metal weapons.", + legacy_name: "Orichalcum Ingot", + legacy_description: "An ingot made of refined orichalcum.\n\nThis can be used when crafting metal weapons.", kind: Ingredient( descriptor: "Orichalcum", ), diff --git a/assets/common/items/mineral/ingot/silver.ron b/assets/common/items/mineral/ingot/silver.ron index 0fc2b14c30..fb386c65f1 100644 --- a/assets/common/items/mineral/ingot/silver.ron +++ b/assets/common/items/mineral/ingot/silver.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silver Ingot", - description: "An ingot made of refined metallic silver.", + legacy_name: "Silver Ingot", + legacy_description: "An ingot made of refined metallic silver.", kind: Ingredient( descriptor: "Silver", ), diff --git a/assets/common/items/mineral/ingot/steel.ron b/assets/common/items/mineral/ingot/steel.ron index b6c3cdc34d..4e06ad02a5 100644 --- a/assets/common/items/mineral/ingot/steel.ron +++ b/assets/common/items/mineral/ingot/steel.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Ingot", - description: "An alloy of iron and coal that is much tougher than its components.\n\nThis can be used when crafting metal weapons.", + legacy_name: "Steel Ingot", + legacy_description: "An alloy of iron and coal that is much tougher than its components.\n\nThis can be used when crafting metal weapons.", kind: Ingredient( descriptor: "Steel", ), diff --git a/assets/common/items/mineral/ingot/tin.ron b/assets/common/items/mineral/ingot/tin.ron index 69c5117144..77eb53bc5e 100644 --- a/assets/common/items/mineral/ingot/tin.ron +++ b/assets/common/items/mineral/ingot/tin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tin Ingot", - description: "An ingot primarily used to make bronze.", + legacy_name: "Tin Ingot", + legacy_description: "An ingot primarily used to make bronze.", kind: Ingredient( descriptor: "Tin", ), diff --git a/assets/common/items/mineral/ore/bloodstone.ron b/assets/common/items/mineral/ore/bloodstone.ron index 4fc1ac377f..3f25379d62 100644 --- a/assets/common/items/mineral/ore/bloodstone.ron +++ b/assets/common/items/mineral/ore/bloodstone.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bloodstone Ore", - description: "A deep red ore, it reminds you of blood.", + legacy_name: "Bloodstone Ore", + legacy_description: "A deep red ore, it reminds you of blood.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/coal.ron b/assets/common/items/mineral/ore/coal.ron index 88ecdaaf33..a746d55578 100644 --- a/assets/common/items/mineral/ore/coal.ron +++ b/assets/common/items/mineral/ore/coal.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Coal", - description: "A dark, combustible energy source.", + legacy_name: "Coal", + legacy_description: "A dark, combustible energy source.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/cobalt.ron b/assets/common/items/mineral/ore/cobalt.ron index bd1ed4eade..5010847ea5 100644 --- a/assets/common/items/mineral/ore/cobalt.ron +++ b/assets/common/items/mineral/ore/cobalt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cobalt Ore", - description: "A blue, shiny ore.", + legacy_name: "Cobalt Ore", + legacy_description: "A blue, shiny ore.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/copper.ron b/assets/common/items/mineral/ore/copper.ron index 415094ef15..bfdfdd38c0 100644 --- a/assets/common/items/mineral/ore/copper.ron +++ b/assets/common/items/mineral/ore/copper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Copper Ore", - description: "A brown metal. Key part of bronze.", + legacy_name: "Copper Ore", + legacy_description: "A brown metal. Key part of bronze.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/gold.ron b/assets/common/items/mineral/ore/gold.ron index 1a95f01a77..cb11b41bb9 100644 --- a/assets/common/items/mineral/ore/gold.ron +++ b/assets/common/items/mineral/ore/gold.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gold Ore", - description: "A precious yellow metal.", + legacy_name: "Gold Ore", + legacy_description: "A precious yellow metal.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/iron.ron b/assets/common/items/mineral/ore/iron.ron index 4eb93945dc..1a5409627e 100644 --- a/assets/common/items/mineral/ore/iron.ron +++ b/assets/common/items/mineral/ore/iron.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Ore", - description: "An incredibly common but incredibly versatile metal.", + legacy_name: "Iron Ore", + legacy_description: "An incredibly common but incredibly versatile metal.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/silver.ron b/assets/common/items/mineral/ore/silver.ron index 9e1539b235..56031f3700 100644 --- a/assets/common/items/mineral/ore/silver.ron +++ b/assets/common/items/mineral/ore/silver.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Silver Ore", - description: "A precious shiny greyish-white metal.", + legacy_name: "Silver Ore", + legacy_description: "A precious shiny greyish-white metal.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/tin.ron b/assets/common/items/mineral/ore/tin.ron index c1ee473e7d..97168e42b1 100644 --- a/assets/common/items/mineral/ore/tin.ron +++ b/assets/common/items/mineral/ore/tin.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tin Ore", - description: "A silvery metal. One of the components of bronze.", + legacy_name: "Tin Ore", + legacy_description: "A silvery metal. One of the components of bronze.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/velorite.ron b/assets/common/items/mineral/ore/velorite.ron index 647ce1377c..3b4e5720c7 100644 --- a/assets/common/items/mineral/ore/velorite.ron +++ b/assets/common/items/mineral/ore/velorite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite", - description: "A bizarre, oddly shimmering ore, its origin seems to be shrouded in mystery.", + legacy_name: "Velorite", + legacy_description: "A bizarre, oddly shimmering ore, its origin seems to be shrouded in mystery.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/ore/veloritefrag.ron b/assets/common/items/mineral/ore/veloritefrag.ron index 9d3b9b35cd..060141e270 100644 --- a/assets/common/items/mineral/ore/veloritefrag.ron +++ b/assets/common/items/mineral/ore/veloritefrag.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Fragment", - description: "Small runes sparkle on its surface, though you don't know what it means.", + legacy_name: "Velorite Fragment", + legacy_description: "Small runes sparkle on its surface, though you don't know what it means.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/stone/basalt.ron b/assets/common/items/mineral/stone/basalt.ron index 1e262a8cdd..9764c6f504 100644 --- a/assets/common/items/mineral/stone/basalt.ron +++ b/assets/common/items/mineral/stone/basalt.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Basalt", - description: "A dark volcanic rock, most volcanic rock tends to be basalt..", + legacy_name: "Basalt", + legacy_description: "A dark volcanic rock, most volcanic rock tends to be basalt..", kind: Ingredient( descriptor: "Basalt", ), diff --git a/assets/common/items/mineral/stone/coal.ron b/assets/common/items/mineral/stone/coal.ron index 558e660e1f..0de67baf17 100644 --- a/assets/common/items/mineral/stone/coal.ron +++ b/assets/common/items/mineral/stone/coal.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Coal", - description: "A combustible black rock that happens to be really good at burning.", + legacy_name: "Coal", + legacy_description: "A combustible black rock that happens to be really good at burning.", kind: Ingredient( // Descriptor not needed descriptor: "", diff --git a/assets/common/items/mineral/stone/granite.ron b/assets/common/items/mineral/stone/granite.ron index 93dc8c178f..5997c25785 100644 --- a/assets/common/items/mineral/stone/granite.ron +++ b/assets/common/items/mineral/stone/granite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Granite", - description: "A light-colored igneous rock, coarse-grained and formed by intrusion.", + legacy_name: "Granite", + legacy_description: "A light-colored igneous rock, coarse-grained and formed by intrusion.", kind: Ingredient( descriptor: "Granite", ), diff --git a/assets/common/items/mineral/stone/obsidian.ron b/assets/common/items/mineral/stone/obsidian.ron index 03ea9ced19..7eb11f4c19 100644 --- a/assets/common/items/mineral/stone/obsidian.ron +++ b/assets/common/items/mineral/stone/obsidian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Obsidian", - description: "An igneous rock that comes from felsic lava, it never seems to dwindle.", + legacy_name: "Obsidian", + legacy_description: "An igneous rock that comes from felsic lava, it never seems to dwindle.", kind: Ingredient( descriptor: "Obsidian", ), diff --git a/assets/common/items/modular/weapon/primary/axe/axe.ron b/assets/common/items/modular/weapon/primary/axe/axe.ron index 01f4d07563..ad2c654260 100644 --- a/assets/common/items/modular/weapon/primary/axe/axe.ron +++ b/assets/common/items/modular/weapon/primary/axe/axe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Axe Head", - description: "", + legacy_name: "Axe Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/primary/axe/battleaxe.ron b/assets/common/items/modular/weapon/primary/axe/battleaxe.ron index 9c17ffe023..c970a82e30 100644 --- a/assets/common/items/modular/weapon/primary/axe/battleaxe.ron +++ b/assets/common/items/modular/weapon/primary/axe/battleaxe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Battleaxe Head", - description: "", + legacy_name: "Battleaxe Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/primary/axe/greataxe.ron b/assets/common/items/modular/weapon/primary/axe/greataxe.ron index b3778b17e4..3ec1edbfa6 100644 --- a/assets/common/items/modular/weapon/primary/axe/greataxe.ron +++ b/assets/common/items/modular/weapon/primary/axe/greataxe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Greataxe Head", - description: "", + legacy_name: "Greataxe Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/primary/axe/jagged.ron b/assets/common/items/modular/weapon/primary/axe/jagged.ron index badf9eaaf5..97b0f7cdd8 100644 --- a/assets/common/items/modular/weapon/primary/axe/jagged.ron +++ b/assets/common/items/modular/weapon/primary/axe/jagged.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Jagged Axe Head", - description: "", + legacy_name: "Jagged Axe Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/primary/axe/labrys.ron b/assets/common/items/modular/weapon/primary/axe/labrys.ron index 54df037d9c..dc26377570 100644 --- a/assets/common/items/modular/weapon/primary/axe/labrys.ron +++ b/assets/common/items/modular/weapon/primary/axe/labrys.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Labrys Head", - description: "", + legacy_name: "Labrys Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/primary/axe/ornate.ron b/assets/common/items/modular/weapon/primary/axe/ornate.ron index 217e3f4367..10f33de489 100644 --- a/assets/common/items/modular/weapon/primary/axe/ornate.ron +++ b/assets/common/items/modular/weapon/primary/axe/ornate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ornate Axe Head", - description: "", + legacy_name: "Ornate Axe Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/primary/axe/poleaxe.ron b/assets/common/items/modular/weapon/primary/axe/poleaxe.ron index 6304d62e91..d3807f6f66 100644 --- a/assets/common/items/modular/weapon/primary/axe/poleaxe.ron +++ b/assets/common/items/modular/weapon/primary/axe/poleaxe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Poleaxe Head", - description: "", + legacy_name: "Poleaxe Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/primary/bow/bow.ron b/assets/common/items/modular/weapon/primary/bow/bow.ron index 78812df86f..e63e3c9bb4 100644 --- a/assets/common/items/modular/weapon/primary/bow/bow.ron +++ b/assets/common/items/modular/weapon/primary/bow/bow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bow Limbs", - description: "", + legacy_name: "Bow Limbs", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/primary/bow/composite.ron b/assets/common/items/modular/weapon/primary/bow/composite.ron index 4ef1e84c0f..f3d4c92ef3 100644 --- a/assets/common/items/modular/weapon/primary/bow/composite.ron +++ b/assets/common/items/modular/weapon/primary/bow/composite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Composite Bow Limbs", - description: "", + legacy_name: "Composite Bow Limbs", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/primary/bow/greatbow.ron b/assets/common/items/modular/weapon/primary/bow/greatbow.ron index 9406679565..0145f90b60 100644 --- a/assets/common/items/modular/weapon/primary/bow/greatbow.ron +++ b/assets/common/items/modular/weapon/primary/bow/greatbow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Greatbow Limbs", - description: "", + legacy_name: "Greatbow Limbs", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/primary/bow/longbow.ron b/assets/common/items/modular/weapon/primary/bow/longbow.ron index d74b476725..16938cd0e9 100644 --- a/assets/common/items/modular/weapon/primary/bow/longbow.ron +++ b/assets/common/items/modular/weapon/primary/bow/longbow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Longbow Limbs", - description: "", + legacy_name: "Longbow Limbs", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/primary/bow/ornate.ron b/assets/common/items/modular/weapon/primary/bow/ornate.ron index 89718b7dfc..03ea5a0031 100644 --- a/assets/common/items/modular/weapon/primary/bow/ornate.ron +++ b/assets/common/items/modular/weapon/primary/bow/ornate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ornate Bow Limbs", - description: "", + legacy_name: "Ornate Bow Limbs", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/primary/bow/shortbow.ron b/assets/common/items/modular/weapon/primary/bow/shortbow.ron index 5c1ba7acdb..1dac9623c5 100644 --- a/assets/common/items/modular/weapon/primary/bow/shortbow.ron +++ b/assets/common/items/modular/weapon/primary/bow/shortbow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Shortbow Limbs", - description: "", + legacy_name: "Shortbow Limbs", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/primary/bow/warbow.ron b/assets/common/items/modular/weapon/primary/bow/warbow.ron index 5ea1d68056..339b9b721f 100644 --- a/assets/common/items/modular/weapon/primary/bow/warbow.ron +++ b/assets/common/items/modular/weapon/primary/bow/warbow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Warbow Limbs", - description: "", + legacy_name: "Warbow Limbs", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/primary/hammer/greathammer.ron b/assets/common/items/modular/weapon/primary/hammer/greathammer.ron index 287a018175..bc1c01d523 100644 --- a/assets/common/items/modular/weapon/primary/hammer/greathammer.ron +++ b/assets/common/items/modular/weapon/primary/hammer/greathammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Greathammer Head", - description: "", + legacy_name: "Greathammer Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/primary/hammer/greatmace.ron b/assets/common/items/modular/weapon/primary/hammer/greatmace.ron index 992a776e10..2d2c626337 100644 --- a/assets/common/items/modular/weapon/primary/hammer/greatmace.ron +++ b/assets/common/items/modular/weapon/primary/hammer/greatmace.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Greatmace Head", - description: "", + legacy_name: "Greatmace Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/primary/hammer/hammer.ron b/assets/common/items/modular/weapon/primary/hammer/hammer.ron index 1326dc34d3..36565a5335 100644 --- a/assets/common/items/modular/weapon/primary/hammer/hammer.ron +++ b/assets/common/items/modular/weapon/primary/hammer/hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hammer Head", - description: "", + legacy_name: "Hammer Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/primary/hammer/maul.ron b/assets/common/items/modular/weapon/primary/hammer/maul.ron index b1730407f1..ade4001ff2 100644 --- a/assets/common/items/modular/weapon/primary/hammer/maul.ron +++ b/assets/common/items/modular/weapon/primary/hammer/maul.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Maul Head", - description: "", + legacy_name: "Maul Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/primary/hammer/ornate.ron b/assets/common/items/modular/weapon/primary/hammer/ornate.ron index 55ce87d7c2..64c98e3e69 100644 --- a/assets/common/items/modular/weapon/primary/hammer/ornate.ron +++ b/assets/common/items/modular/weapon/primary/hammer/ornate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ornate Hammer Head", - description: "", + legacy_name: "Ornate Hammer Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/primary/hammer/spikedmace.ron b/assets/common/items/modular/weapon/primary/hammer/spikedmace.ron index f3d1831e5f..431968edcc 100644 --- a/assets/common/items/modular/weapon/primary/hammer/spikedmace.ron +++ b/assets/common/items/modular/weapon/primary/hammer/spikedmace.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Spiked Mace Head", - description: "", + legacy_name: "Spiked Mace Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/primary/hammer/warhammer.ron b/assets/common/items/modular/weapon/primary/hammer/warhammer.ron index 14fc03241e..7844e84f55 100644 --- a/assets/common/items/modular/weapon/primary/hammer/warhammer.ron +++ b/assets/common/items/modular/weapon/primary/hammer/warhammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Warhammer Head", - description: "", + legacy_name: "Warhammer Head", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/primary/sceptre/arbor.ron b/assets/common/items/modular/weapon/primary/sceptre/arbor.ron index 23e4aee9c3..5d7e76f43b 100644 --- a/assets/common/items/modular/weapon/primary/sceptre/arbor.ron +++ b/assets/common/items/modular/weapon/primary/sceptre/arbor.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Arbor Shaft", - description: "", + legacy_name: "Arbor Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/primary/sceptre/cane.ron b/assets/common/items/modular/weapon/primary/sceptre/cane.ron index f6a2efbd37..cbd2001002 100644 --- a/assets/common/items/modular/weapon/primary/sceptre/cane.ron +++ b/assets/common/items/modular/weapon/primary/sceptre/cane.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cane Shaft", - description: "", + legacy_name: "Cane Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/primary/sceptre/crook.ron b/assets/common/items/modular/weapon/primary/sceptre/crook.ron index e5077374f0..7e15ed35c8 100644 --- a/assets/common/items/modular/weapon/primary/sceptre/crook.ron +++ b/assets/common/items/modular/weapon/primary/sceptre/crook.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Crook Shaft", - description: "", + legacy_name: "Crook Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/primary/sceptre/crozier.ron b/assets/common/items/modular/weapon/primary/sceptre/crozier.ron index 478af3264c..37f6c7f342 100644 --- a/assets/common/items/modular/weapon/primary/sceptre/crozier.ron +++ b/assets/common/items/modular/weapon/primary/sceptre/crozier.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Crozier Shaft", - description: "", + legacy_name: "Crozier Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/primary/sceptre/grandsceptre.ron b/assets/common/items/modular/weapon/primary/sceptre/grandsceptre.ron index f22d5892a5..47f159cac6 100644 --- a/assets/common/items/modular/weapon/primary/sceptre/grandsceptre.ron +++ b/assets/common/items/modular/weapon/primary/sceptre/grandsceptre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Grandsceptre Shaft", - description: "", + legacy_name: "Grandsceptre Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/primary/sceptre/ornate.ron b/assets/common/items/modular/weapon/primary/sceptre/ornate.ron index fa13409059..17d1af8705 100644 --- a/assets/common/items/modular/weapon/primary/sceptre/ornate.ron +++ b/assets/common/items/modular/weapon/primary/sceptre/ornate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ornate Sceptre Shaft", - description: "", + legacy_name: "Ornate Sceptre Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/primary/sceptre/sceptre.ron b/assets/common/items/modular/weapon/primary/sceptre/sceptre.ron index 5e76f663ad..afa34e414e 100644 --- a/assets/common/items/modular/weapon/primary/sceptre/sceptre.ron +++ b/assets/common/items/modular/weapon/primary/sceptre/sceptre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sceptre Shaft", - description: "", + legacy_name: "Sceptre Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/primary/staff/brand.ron b/assets/common/items/modular/weapon/primary/staff/brand.ron index 501e2359ae..c25245769f 100644 --- a/assets/common/items/modular/weapon/primary/staff/brand.ron +++ b/assets/common/items/modular/weapon/primary/staff/brand.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Brand Shaft", - description: "", + legacy_name: "Brand Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/primary/staff/grandstaff.ron b/assets/common/items/modular/weapon/primary/staff/grandstaff.ron index 608f1c3556..d8079424c8 100644 --- a/assets/common/items/modular/weapon/primary/staff/grandstaff.ron +++ b/assets/common/items/modular/weapon/primary/staff/grandstaff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Grandstaff Shaft", - description: "", + legacy_name: "Grandstaff Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/primary/staff/longpole.ron b/assets/common/items/modular/weapon/primary/staff/longpole.ron index eeb27ef834..d29da84303 100644 --- a/assets/common/items/modular/weapon/primary/staff/longpole.ron +++ b/assets/common/items/modular/weapon/primary/staff/longpole.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Long Pole Shaft", - description: "", + legacy_name: "Long Pole Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/primary/staff/ornate.ron b/assets/common/items/modular/weapon/primary/staff/ornate.ron index b32e4b1d4d..0d76468a67 100644 --- a/assets/common/items/modular/weapon/primary/staff/ornate.ron +++ b/assets/common/items/modular/weapon/primary/staff/ornate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ornate Staff Shaft", - description: "", + legacy_name: "Ornate Staff Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/primary/staff/pole.ron b/assets/common/items/modular/weapon/primary/staff/pole.ron index dd56b1ba3f..45fd89e1eb 100644 --- a/assets/common/items/modular/weapon/primary/staff/pole.ron +++ b/assets/common/items/modular/weapon/primary/staff/pole.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pole Shaft", - description: "", + legacy_name: "Pole Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/primary/staff/rod.ron b/assets/common/items/modular/weapon/primary/staff/rod.ron index c124b53e62..085ec02063 100644 --- a/assets/common/items/modular/weapon/primary/staff/rod.ron +++ b/assets/common/items/modular/weapon/primary/staff/rod.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rod Shaft", - description: "", + legacy_name: "Rod Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/primary/staff/staff.ron b/assets/common/items/modular/weapon/primary/staff/staff.ron index 342223e5a6..a11cfaeb7a 100644 --- a/assets/common/items/modular/weapon/primary/staff/staff.ron +++ b/assets/common/items/modular/weapon/primary/staff/staff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Staff Shaft", - description: "", + legacy_name: "Staff Shaft", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/primary/sword/greatsword.ron b/assets/common/items/modular/weapon/primary/sword/greatsword.ron index cf8bdc9e8e..5f9144e2f1 100644 --- a/assets/common/items/modular/weapon/primary/sword/greatsword.ron +++ b/assets/common/items/modular/weapon/primary/sword/greatsword.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Greatsword Blade", - description: "", + legacy_name: "Greatsword Blade", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/primary/sword/katana.ron b/assets/common/items/modular/weapon/primary/sword/katana.ron index 7b66f26480..8ed874dab7 100644 --- a/assets/common/items/modular/weapon/primary/sword/katana.ron +++ b/assets/common/items/modular/weapon/primary/sword/katana.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Katana Blade", - description: "", + legacy_name: "Katana Blade", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/primary/sword/longsword.ron b/assets/common/items/modular/weapon/primary/sword/longsword.ron index c25457b642..e8ec39b07c 100644 --- a/assets/common/items/modular/weapon/primary/sword/longsword.ron +++ b/assets/common/items/modular/weapon/primary/sword/longsword.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Longsword Blade", - description: "", + legacy_name: "Longsword Blade", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/primary/sword/ornate.ron b/assets/common/items/modular/weapon/primary/sword/ornate.ron index 4d0fb8999f..f97feed8ce 100644 --- a/assets/common/items/modular/weapon/primary/sword/ornate.ron +++ b/assets/common/items/modular/weapon/primary/sword/ornate.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ornate Sword Blade", - description: "", + legacy_name: "Ornate Sword Blade", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/primary/sword/sabre.ron b/assets/common/items/modular/weapon/primary/sword/sabre.ron index b77835c677..19a4f38ab6 100644 --- a/assets/common/items/modular/weapon/primary/sword/sabre.ron +++ b/assets/common/items/modular/weapon/primary/sword/sabre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sabre Blade", - description: "", + legacy_name: "Sabre Blade", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/primary/sword/sawblade.ron b/assets/common/items/modular/weapon/primary/sword/sawblade.ron index df1dcfb878..0937b54237 100644 --- a/assets/common/items/modular/weapon/primary/sword/sawblade.ron +++ b/assets/common/items/modular/weapon/primary/sword/sawblade.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sawblade", - description: "", + legacy_name: "Sawblade", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/primary/sword/zweihander.ron b/assets/common/items/modular/weapon/primary/sword/zweihander.ron index df241657b4..87323a2df6 100644 --- a/assets/common/items/modular/weapon/primary/sword/zweihander.ron +++ b/assets/common/items/modular/weapon/primary/sword/zweihander.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Zweihander Blade", - description: "", + legacy_name: "Zweihander Blade", + legacy_description: "", kind: ModularComponent( ToolPrimaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/secondary/axe/long.ron b/assets/common/items/modular/weapon/secondary/axe/long.ron index 45ad406972..e3fdb6e641 100644 --- a/assets/common/items/modular/weapon/secondary/axe/long.ron +++ b/assets/common/items/modular/weapon/secondary/axe/long.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Long Axe Haft", - description: "", + legacy_name: "Long Axe Haft", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/secondary/axe/medium.ron b/assets/common/items/modular/weapon/secondary/axe/medium.ron index 7de73fcc3c..74fdd285cc 100644 --- a/assets/common/items/modular/weapon/secondary/axe/medium.ron +++ b/assets/common/items/modular/weapon/secondary/axe/medium.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Medium Axe Haft", - description: "", + legacy_name: "Medium Axe Haft", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/secondary/axe/short.ron b/assets/common/items/modular/weapon/secondary/axe/short.ron index 6b5036f6e3..68dbbb9a81 100644 --- a/assets/common/items/modular/weapon/secondary/axe/short.ron +++ b/assets/common/items/modular/weapon/secondary/axe/short.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Short Axe Haft", - description: "", + legacy_name: "Short Axe Haft", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Axe, diff --git a/assets/common/items/modular/weapon/secondary/bow/long.ron b/assets/common/items/modular/weapon/secondary/bow/long.ron index 2b937c518e..2b79a72cd3 100644 --- a/assets/common/items/modular/weapon/secondary/bow/long.ron +++ b/assets/common/items/modular/weapon/secondary/bow/long.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Long Bow Grip", - description: "", + legacy_name: "Long Bow Grip", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/secondary/bow/medium.ron b/assets/common/items/modular/weapon/secondary/bow/medium.ron index ac9e495a33..57658a038a 100644 --- a/assets/common/items/modular/weapon/secondary/bow/medium.ron +++ b/assets/common/items/modular/weapon/secondary/bow/medium.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Medium Bow Grip", - description: "", + legacy_name: "Medium Bow Grip", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/secondary/bow/short.ron b/assets/common/items/modular/weapon/secondary/bow/short.ron index 370385789d..43b0016a82 100644 --- a/assets/common/items/modular/weapon/secondary/bow/short.ron +++ b/assets/common/items/modular/weapon/secondary/bow/short.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Short Bow Grip", - description: "", + legacy_name: "Short Bow Grip", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Bow, diff --git a/assets/common/items/modular/weapon/secondary/hammer/long.ron b/assets/common/items/modular/weapon/secondary/hammer/long.ron index a00706d0d3..217f9d930a 100644 --- a/assets/common/items/modular/weapon/secondary/hammer/long.ron +++ b/assets/common/items/modular/weapon/secondary/hammer/long.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Long Hammer Haft", - description: "", + legacy_name: "Long Hammer Haft", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/secondary/hammer/medium.ron b/assets/common/items/modular/weapon/secondary/hammer/medium.ron index 445714d07b..45f6f855db 100644 --- a/assets/common/items/modular/weapon/secondary/hammer/medium.ron +++ b/assets/common/items/modular/weapon/secondary/hammer/medium.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Medium Hammer Haft", - description: "", + legacy_name: "Medium Hammer Haft", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/secondary/hammer/short.ron b/assets/common/items/modular/weapon/secondary/hammer/short.ron index 1ddb4126ba..45ed7e8fa8 100644 --- a/assets/common/items/modular/weapon/secondary/hammer/short.ron +++ b/assets/common/items/modular/weapon/secondary/hammer/short.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Short Hammer Haft", - description: "", + legacy_name: "Short Hammer Haft", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Hammer, diff --git a/assets/common/items/modular/weapon/secondary/sceptre/heavy.ron b/assets/common/items/modular/weapon/secondary/sceptre/heavy.ron index 1428e9d4b8..14f77c137d 100644 --- a/assets/common/items/modular/weapon/secondary/sceptre/heavy.ron +++ b/assets/common/items/modular/weapon/secondary/sceptre/heavy.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Heavy Biocore", - description: "", + legacy_name: "Heavy Biocore", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/secondary/sceptre/light.ron b/assets/common/items/modular/weapon/secondary/sceptre/light.ron index 78f06cdab7..b1b4f15f68 100644 --- a/assets/common/items/modular/weapon/secondary/sceptre/light.ron +++ b/assets/common/items/modular/weapon/secondary/sceptre/light.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Light Biocore", - description: "", + legacy_name: "Light Biocore", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/secondary/sceptre/medium.ron b/assets/common/items/modular/weapon/secondary/sceptre/medium.ron index c89da0484d..a51767f3a4 100644 --- a/assets/common/items/modular/weapon/secondary/sceptre/medium.ron +++ b/assets/common/items/modular/weapon/secondary/sceptre/medium.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Biocore", - description: "", + legacy_name: "Biocore", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Sceptre, diff --git a/assets/common/items/modular/weapon/secondary/staff/heavy.ron b/assets/common/items/modular/weapon/secondary/staff/heavy.ron index 43ab20c7e6..afe5f86f3a 100644 --- a/assets/common/items/modular/weapon/secondary/staff/heavy.ron +++ b/assets/common/items/modular/weapon/secondary/staff/heavy.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Heavy Pyrocore", - description: "", + legacy_name: "Heavy Pyrocore", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/secondary/staff/light.ron b/assets/common/items/modular/weapon/secondary/staff/light.ron index 11e3570153..5a7bc5eb0a 100644 --- a/assets/common/items/modular/weapon/secondary/staff/light.ron +++ b/assets/common/items/modular/weapon/secondary/staff/light.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Light Pyrocore", - description: "", + legacy_name: "Light Pyrocore", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/secondary/staff/medium.ron b/assets/common/items/modular/weapon/secondary/staff/medium.ron index 0d27d29ee1..5c6f49e20c 100644 --- a/assets/common/items/modular/weapon/secondary/staff/medium.ron +++ b/assets/common/items/modular/weapon/secondary/staff/medium.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pyrocore", - description: "", + legacy_name: "Pyrocore", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Staff, diff --git a/assets/common/items/modular/weapon/secondary/sword/long.ron b/assets/common/items/modular/weapon/secondary/sword/long.ron index 52312c925c..071baf2263 100644 --- a/assets/common/items/modular/weapon/secondary/sword/long.ron +++ b/assets/common/items/modular/weapon/secondary/sword/long.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Long Sword Hilt", - description: "", + legacy_name: "Long Sword Hilt", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/secondary/sword/medium.ron b/assets/common/items/modular/weapon/secondary/sword/medium.ron index 4ab1e30d4d..30f1d98537 100644 --- a/assets/common/items/modular/weapon/secondary/sword/medium.ron +++ b/assets/common/items/modular/weapon/secondary/sword/medium.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Medium Sword Hilt", - description: "", + legacy_name: "Medium Sword Hilt", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Sword, diff --git a/assets/common/items/modular/weapon/secondary/sword/short.ron b/assets/common/items/modular/weapon/secondary/sword/short.ron index e1d8e011da..6711a6d7af 100644 --- a/assets/common/items/modular/weapon/secondary/sword/short.ron +++ b/assets/common/items/modular/weapon/secondary/sword/short.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Short Sword Hilt", - description: "", + legacy_name: "Short Sword Hilt", + legacy_description: "", kind: ModularComponent( ToolSecondaryComponent( toolkind: Sword, diff --git a/assets/common/items/npc_armor/arthropod/generic.ron b/assets/common/items/npc_armor/arthropod/generic.ron index 17a19b66a5..e6ebe3c8e0 100644 --- a/assets/common/items/npc_armor/arthropod/generic.ron +++ b/assets/common/items/npc_armor/arthropod/generic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Arthropod Armor", - description: "Worn by arthropods.", + legacy_name: "Arthropod Armor", + legacy_description: "Worn by arthropods.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/back/backpack_blue.ron b/assets/common/items/npc_armor/back/backpack_blue.ron index fb850e4ed0..3372924875 100644 --- a/assets/common/items/npc_armor/back/backpack_blue.ron +++ b/assets/common/items/npc_armor/back/backpack_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rugged Backpack", - description: "Keeps all your stuff together.", + legacy_name: "Rugged Backpack", + legacy_description: "Keeps all your stuff together.", kind: Armor(( kind: Backpack, stats: Direct(( diff --git a/assets/common/items/npc_armor/back/leather_blue.ron b/assets/common/items/npc_armor/back/leather_blue.ron index 0ac4e302f9..f0fe2200c4 100644 --- a/assets/common/items/npc_armor/back/leather_blue.ron +++ b/assets/common/items/npc_armor/back/leather_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Traveler Coat", - description: "", + legacy_name: "Blue Traveler Coat", + legacy_description: "", kind: Armor(( kind: Back, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/cyclops.ron b/assets/common/items/npc_armor/biped_large/cyclops.ron index ac1c0d1ca5..cde845ec91 100644 --- a/assets/common/items/npc_armor/biped_large/cyclops.ron +++ b/assets/common/items/npc_armor/biped_large/cyclops.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cyclops Armor", - description: "Made of mysteries.", + legacy_name: "Cyclops Armor", + legacy_description: "Made of mysteries.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/dullahan.ron b/assets/common/items/npc_armor/biped_large/dullahan.ron index 8cbe6e432b..9243a3ff9d 100644 --- a/assets/common/items/npc_armor/biped_large/dullahan.ron +++ b/assets/common/items/npc_armor/biped_large/dullahan.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dullahan Itself Armor", - description: "Made of It ownself.", + legacy_name: "Dullahan Itself Armor", + legacy_description: "Made of It ownself.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/generic.ron b/assets/common/items/npc_armor/biped_large/generic.ron index 285fb8d4c2..5b8a5ae912 100644 --- a/assets/common/items/npc_armor/biped_large/generic.ron +++ b/assets/common/items/npc_armor/biped_large/generic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Generic Biped Large", - description: "Worn by bipeds.", + legacy_name: "Generic Biped Large", + legacy_description: "Worn by bipeds.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/gigas_frost.ron b/assets/common/items/npc_armor/biped_large/gigas_frost.ron index 15fe2b7a46..68019052bf 100644 --- a/assets/common/items/npc_armor/biped_large/gigas_frost.ron +++ b/assets/common/items/npc_armor/biped_large/gigas_frost.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frost Gigas Armor", - description: "The best defense is a good offense.", + legacy_name: "Frost Gigas Armor", + legacy_description: "The best defense is a good offense.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/harvester.ron b/assets/common/items/npc_armor/biped_large/harvester.ron index b397cc7bea..7126bfcc9b 100644 --- a/assets/common/items/npc_armor/biped_large/harvester.ron +++ b/assets/common/items/npc_armor/biped_large/harvester.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Harvester Shirt", - description: "Made of sunflowers.", + legacy_name: "Harvester Shirt", + legacy_description: "Made of sunflowers.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/mindflayer.ron b/assets/common/items/npc_armor/biped_large/mindflayer.ron index 83e5b67099..07616ff01a 100644 --- a/assets/common/items/npc_armor/biped_large/mindflayer.ron +++ b/assets/common/items/npc_armor/biped_large/mindflayer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mindflayer Armor", - description: "Worn by mindflayer.", + legacy_name: "Mindflayer Armor", + legacy_description: "Worn by mindflayer.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/minotaur.ron b/assets/common/items/npc_armor/biped_large/minotaur.ron index 2f1f3c312b..e6c63a5ee0 100644 --- a/assets/common/items/npc_armor/biped_large/minotaur.ron +++ b/assets/common/items/npc_armor/biped_large/minotaur.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Minotaur Armor", - description: "The best defense is a good offense.", + legacy_name: "Minotaur Armor", + legacy_description: "The best defense is a good offense.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/tidal_warrior.ron b/assets/common/items/npc_armor/biped_large/tidal_warrior.ron index 01997b85da..4644ded07f 100644 --- a/assets/common/items/npc_armor/biped_large/tidal_warrior.ron +++ b/assets/common/items/npc_armor/biped_large/tidal_warrior.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tidal Warrior Armor", - description: "Made of fish scales.", + legacy_name: "Tidal Warrior Armor", + legacy_description: "Made of fish scales.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/tursus.ron b/assets/common/items/npc_armor/biped_large/tursus.ron index cd061e2201..eecc6bb85f 100644 --- a/assets/common/items/npc_armor/biped_large/tursus.ron +++ b/assets/common/items/npc_armor/biped_large/tursus.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tursus Skin", - description: "Born with it", + legacy_name: "Tursus Skin", + legacy_description: "Born with it", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/warlock.ron b/assets/common/items/npc_armor/biped_large/warlock.ron index eeb39ba4ce..e91811fcd0 100644 --- a/assets/common/items/npc_armor/biped_large/warlock.ron +++ b/assets/common/items/npc_armor/biped_large/warlock.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Giant Warlock Chest", - description: "Made of darkest silk.", + legacy_name: "Giant Warlock Chest", + legacy_description: "Made of darkest silk.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/warlord.ron b/assets/common/items/npc_armor/biped_large/warlord.ron index 0b14907d0d..d1331d05fb 100644 --- a/assets/common/items/npc_armor/biped_large/warlord.ron +++ b/assets/common/items/npc_armor/biped_large/warlord.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Giant Warlord Chest", - description: "Made of darkest steel.", + legacy_name: "Giant Warlord Chest", + legacy_description: "Made of darkest steel.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_large/yeti.ron b/assets/common/items/npc_armor/biped_large/yeti.ron index c7699d210d..3c2a203a7b 100644 --- a/assets/common/items/npc_armor/biped_large/yeti.ron +++ b/assets/common/items/npc_armor/biped_large/yeti.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Yeti Hide", - description: "Strong as Yeti itself.", + legacy_name: "Yeti Hide", + legacy_description: "Strong as Yeti itself.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/chest/hunter.ron b/assets/common/items/npc_armor/biped_small/adlet/chest/hunter.ron index e7e2340a50..ea39dad0e5 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/chest/hunter.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/chest/hunter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Hunter", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Hunter", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/chest/icepicker.ron b/assets/common/items/npc_armor/biped_small/adlet/chest/icepicker.ron index a1da835ab1..4f170c23df 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/chest/icepicker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/chest/icepicker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Icepicker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Icepicker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/chest/tracker.ron b/assets/common/items/npc_armor/biped_small/adlet/chest/tracker.ron index 440e95423a..869f7b411d 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/chest/tracker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/chest/tracker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Tracker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Tracker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/foot/hunter.ron b/assets/common/items/npc_armor/biped_small/adlet/foot/hunter.ron index 95b0a08988..a911dfcf14 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/foot/hunter.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/foot/hunter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Hunter", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Hunter", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/foot/icepicker.ron b/assets/common/items/npc_armor/biped_small/adlet/foot/icepicker.ron index 2fd0a99f79..91bc734859 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/foot/icepicker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/foot/icepicker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Icepicker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Icepicker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/foot/tracker.ron b/assets/common/items/npc_armor/biped_small/adlet/foot/tracker.ron index d24a6f2e46..074bdb69cc 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/foot/tracker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/foot/tracker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Tracker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Tracker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/hand/hunter.ron b/assets/common/items/npc_armor/biped_small/adlet/hand/hunter.ron index 6cc59329e8..e17aa3ae74 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/hand/hunter.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/hand/hunter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Hunter", - description: "Ceremonial attire used by members..", + legacy_name: "Adlet Hunter", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/hand/icepicker.ron b/assets/common/items/npc_armor/biped_small/adlet/hand/icepicker.ron index 58a4b7b54d..c758dd0b37 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/hand/icepicker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/hand/icepicker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Icepicker", - description: "Ceremonial attire used by members..", + legacy_name: "Adlet Icepicker", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/hand/tracker.ron b/assets/common/items/npc_armor/biped_small/adlet/hand/tracker.ron index 1f58f2e596..2106baf143 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/hand/tracker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/hand/tracker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Tracker", - description: "Ceremonial attire used by members..", + legacy_name: "Adlet Tracker", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/head/hunter.ron b/assets/common/items/npc_armor/biped_small/adlet/head/hunter.ron index 8f97de0768..64fdcbf1e0 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/head/hunter.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/head/hunter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Hunter", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Hunter", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/head/icepicker.ron b/assets/common/items/npc_armor/biped_small/adlet/head/icepicker.ron index 71c2c000ae..418aabd599 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/head/icepicker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/head/icepicker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Icepicker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Icepicker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/head/tracker.ron b/assets/common/items/npc_armor/biped_small/adlet/head/tracker.ron index c71858758b..ca35e640c6 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/head/tracker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/head/tracker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Tracker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Tracker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/pants/hunter.ron b/assets/common/items/npc_armor/biped_small/adlet/pants/hunter.ron index 3d826839d0..2d4d0e2652 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/pants/hunter.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/pants/hunter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Hunter", - description: "Ceremonial attire used by members..", + legacy_name: "Adlet Hunter", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/pants/icepicker.ron b/assets/common/items/npc_armor/biped_small/adlet/pants/icepicker.ron index 179f98f658..8a5ed8f64f 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/pants/icepicker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/pants/icepicker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Icepicker", - description: "Ceremonial attire used by members..", + legacy_name: "Adlet Icepicker", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/pants/tracker.ron b/assets/common/items/npc_armor/biped_small/adlet/pants/tracker.ron index 8e376c0896..c76a65da4e 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/pants/tracker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/pants/tracker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Tracker", - description: "Ceremonial attire used by members..", + legacy_name: "Adlet Tracker", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/tail/hunter.ron b/assets/common/items/npc_armor/biped_small/adlet/tail/hunter.ron index 85a6843cdd..cef82202ee 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/tail/hunter.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/tail/hunter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Hunter", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Hunter", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/tail/icepicker.ron b/assets/common/items/npc_armor/biped_small/adlet/tail/icepicker.ron index 36c2e9fd06..4d0627eccc 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/tail/icepicker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/tail/icepicker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Icepicker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Icepicker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/adlet/tail/tracker.ron b/assets/common/items/npc_armor/biped_small/adlet/tail/tracker.ron index fb37283cef..e468ea9054 100644 --- a/assets/common/items/npc_armor/biped_small/adlet/tail/tracker.ron +++ b/assets/common/items/npc_armor/biped_small/adlet/tail/tracker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Tracker", - description: "Ceremonial attire used by members.", + legacy_name: "Adlet Tracker", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/boreal/chest/warrior.ron b/assets/common/items/npc_armor/biped_small/boreal/chest/warrior.ron index e8a498506f..44ee3d06a9 100644 --- a/assets/common/items/npc_armor/biped_small/boreal/chest/warrior.ron +++ b/assets/common/items/npc_armor/biped_small/boreal/chest/warrior.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Chestplate", - description: "So frigid that you can feel it in your heart.", + legacy_name: "Boreal Chestplate", + legacy_description: "So frigid that you can feel it in your heart.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/boreal/foot/warrior.ron b/assets/common/items/npc_armor/biped_small/boreal/foot/warrior.ron index a01f14aa74..8e2d81c5f1 100644 --- a/assets/common/items/npc_armor/biped_small/boreal/foot/warrior.ron +++ b/assets/common/items/npc_armor/biped_small/boreal/foot/warrior.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Wrappings", - description: "The blistering cold makes it hard to move.", + legacy_name: "Boreal Wrappings", + legacy_description: "The blistering cold makes it hard to move.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/boreal/hand/warrior.ron b/assets/common/items/npc_armor/biped_small/boreal/hand/warrior.ron index 31846a6486..df42572784 100644 --- a/assets/common/items/npc_armor/biped_small/boreal/hand/warrior.ron +++ b/assets/common/items/npc_armor/biped_small/boreal/hand/warrior.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Gauntlets", - description: "Colder than the touch of death.", + legacy_name: "Boreal Gauntlets", + legacy_description: "Colder than the touch of death.", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/boreal/head/warrior.ron b/assets/common/items/npc_armor/biped_small/boreal/head/warrior.ron index 657175f312..6fda16547b 100644 --- a/assets/common/items/npc_armor/biped_small/boreal/head/warrior.ron +++ b/assets/common/items/npc_armor/biped_small/boreal/head/warrior.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Helmet", - description: "Did somebody say...BRAINFREEZE?!", + legacy_name: "Boreal Helmet", + legacy_description: "Did somebody say...BRAINFREEZE?!", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/boreal/pants/warrior.ron b/assets/common/items/npc_armor/biped_small/boreal/pants/warrior.ron index 3410209e6b..0d125d6aca 100644 --- a/assets/common/items/npc_armor/biped_small/boreal/pants/warrior.ron +++ b/assets/common/items/npc_armor/biped_small/boreal/pants/warrior.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Tunic", - description: "Colder than the climate it protects you from.", + legacy_name: "Boreal Tunic", + legacy_description: "Colder than the climate it protects you from.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/bushly/chest/bushly.ron b/assets/common/items/npc_armor/biped_small/bushly/chest/bushly.ron index fae053f1a7..bc5a0d1aed 100644 --- a/assets/common/items/npc_armor/biped_small/bushly/chest/bushly.ron +++ b/assets/common/items/npc_armor/biped_small/bushly/chest/bushly.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bushly", - description: "Plant Creature", + legacy_name: "Bushly", + legacy_description: "Plant Creature", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/bushly/foot/bushly.ron b/assets/common/items/npc_armor/biped_small/bushly/foot/bushly.ron index 771a737c7d..c95ae681d3 100644 --- a/assets/common/items/npc_armor/biped_small/bushly/foot/bushly.ron +++ b/assets/common/items/npc_armor/biped_small/bushly/foot/bushly.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bushly", - description: "Plant Creature", + legacy_name: "Bushly", + legacy_description: "Plant Creature", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/bushly/hand/bushly.ron b/assets/common/items/npc_armor/biped_small/bushly/hand/bushly.ron index 57e22255ab..038df483fe 100644 --- a/assets/common/items/npc_armor/biped_small/bushly/hand/bushly.ron +++ b/assets/common/items/npc_armor/biped_small/bushly/hand/bushly.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mandragora", - description: "Ceremonial attire used by members.", + legacy_name: "Mandragora", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/bushly/pants/bushly.ron b/assets/common/items/npc_armor/biped_small/bushly/pants/bushly.ron index d531f9aea4..8596e862dc 100644 --- a/assets/common/items/npc_armor/biped_small/bushly/pants/bushly.ron +++ b/assets/common/items/npc_armor/biped_small/bushly/pants/bushly.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bushly", - description: "Plant Creature", + legacy_name: "Bushly", + legacy_description: "Plant Creature", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/clockwork/chest/clockwork.ron b/assets/common/items/npc_armor/biped_small/clockwork/chest/clockwork.ron index e07befe0c5..b54f269c52 100644 --- a/assets/common/items/npc_armor/biped_small/clockwork/chest/clockwork.ron +++ b/assets/common/items/npc_armor/biped_small/clockwork/chest/clockwork.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clockwork Chest", - description: "Clockwork Chest", + legacy_name: "Clockwork Chest", + legacy_description: "Clockwork Chest", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/clockwork/foot/clockwork.ron b/assets/common/items/npc_armor/biped_small/clockwork/foot/clockwork.ron index 91f4446965..d2819c3504 100644 --- a/assets/common/items/npc_armor/biped_small/clockwork/foot/clockwork.ron +++ b/assets/common/items/npc_armor/biped_small/clockwork/foot/clockwork.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clockwork Foot", - description: "Clockwork Foot.", + legacy_name: "Clockwork Foot", + legacy_description: "Clockwork Foot.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/clockwork/hand/clockwork.ron b/assets/common/items/npc_armor/biped_small/clockwork/hand/clockwork.ron index c93923c878..73ca7200a1 100644 --- a/assets/common/items/npc_armor/biped_small/clockwork/hand/clockwork.ron +++ b/assets/common/items/npc_armor/biped_small/clockwork/hand/clockwork.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clockwork Hand", - description: "Clockwork Hand", + legacy_name: "Clockwork Hand", + legacy_description: "Clockwork Hand", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/clockwork/head/clockwork.ron b/assets/common/items/npc_armor/biped_small/clockwork/head/clockwork.ron index 0e54cbde86..0b43e2eeb0 100644 --- a/assets/common/items/npc_armor/biped_small/clockwork/head/clockwork.ron +++ b/assets/common/items/npc_armor/biped_small/clockwork/head/clockwork.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clockwork Head", - description: "Clockwork Head", + legacy_name: "Clockwork Head", + legacy_description: "Clockwork Head", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/clockwork/pants/clockwork.ron b/assets/common/items/npc_armor/biped_small/clockwork/pants/clockwork.ron index faf42eaf0c..eaeef0c154 100644 --- a/assets/common/items/npc_armor/biped_small/clockwork/pants/clockwork.ron +++ b/assets/common/items/npc_armor/biped_small/clockwork/pants/clockwork.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clockwork Pants", - description: "Clockwork Pants", + legacy_name: "Clockwork Pants", + legacy_description: "Clockwork Pants", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/flamekeeper/chest/flamekeeper.ron b/assets/common/items/npc_armor/biped_small/flamekeeper/chest/flamekeeper.ron index d19c70d428..f72d6611d5 100644 --- a/assets/common/items/npc_armor/biped_small/flamekeeper/chest/flamekeeper.ron +++ b/assets/common/items/npc_armor/biped_small/flamekeeper/chest/flamekeeper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamekeeper Chest", - description: "Flamekeeper Chest", + legacy_name: "Flamekeeper Chest", + legacy_description: "Flamekeeper Chest", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/flamekeeper/foot/flamekeeper.ron b/assets/common/items/npc_armor/biped_small/flamekeeper/foot/flamekeeper.ron index e30a09a984..0b21c3155c 100644 --- a/assets/common/items/npc_armor/biped_small/flamekeeper/foot/flamekeeper.ron +++ b/assets/common/items/npc_armor/biped_small/flamekeeper/foot/flamekeeper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamekeeper Foot", - description: "Flamekeeper Foot.", + legacy_name: "Flamekeeper Foot", + legacy_description: "Flamekeeper Foot.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/flamekeeper/hand/flamekeeper.ron b/assets/common/items/npc_armor/biped_small/flamekeeper/hand/flamekeeper.ron index 87ab332f33..6eb8b43ac7 100644 --- a/assets/common/items/npc_armor/biped_small/flamekeeper/hand/flamekeeper.ron +++ b/assets/common/items/npc_armor/biped_small/flamekeeper/hand/flamekeeper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamekeeper Hand", - description: "Flamekeeper Hand", + legacy_name: "Flamekeeper Hand", + legacy_description: "Flamekeeper Hand", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/flamekeeper/head/flamekeeper.ron b/assets/common/items/npc_armor/biped_small/flamekeeper/head/flamekeeper.ron index 1620bb1295..dc2b352a9d 100644 --- a/assets/common/items/npc_armor/biped_small/flamekeeper/head/flamekeeper.ron +++ b/assets/common/items/npc_armor/biped_small/flamekeeper/head/flamekeeper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamekeeper Head", - description: "Flamekeeper Head", + legacy_name: "Flamekeeper Head", + legacy_description: "Flamekeeper Head", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/flamekeeper/pants/flamekeeper.ron b/assets/common/items/npc_armor/biped_small/flamekeeper/pants/flamekeeper.ron index 7002671569..19138b1bd6 100644 --- a/assets/common/items/npc_armor/biped_small/flamekeeper/pants/flamekeeper.ron +++ b/assets/common/items/npc_armor/biped_small/flamekeeper/pants/flamekeeper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamekeeper Pants", - description: "Flamekeeper Pants", + legacy_name: "Flamekeeper Pants", + legacy_description: "Flamekeeper Pants", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/chest/chieftain.ron b/assets/common/items/npc_armor/biped_small/gnarling/chest/chieftain.ron index a987de47f1..b778b502bb 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/chest/chieftain.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/chest/chieftain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Chieftain", - description: "Only worn by the most spiritual of Gnarlings.", + legacy_name: "Gnarling Chieftain", + legacy_description: "Only worn by the most spiritual of Gnarlings.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/chest/logger.ron b/assets/common/items/npc_armor/biped_small/gnarling/chest/logger.ron index 3e08df3845..c4d973aa7e 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/chest/logger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/chest/logger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/chest/mugger.ron b/assets/common/items/npc_armor/biped_small/gnarling/chest/mugger.ron index 3e08df3845..c4d973aa7e 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/chest/mugger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/chest/mugger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/chest/stalker.ron b/assets/common/items/npc_armor/biped_small/gnarling/chest/stalker.ron index 3e08df3845..c4d973aa7e 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/chest/stalker.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/chest/stalker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/foot/chieftain.ron b/assets/common/items/npc_armor/biped_small/gnarling/foot/chieftain.ron index a5c2d8600e..cdeab3dc1c 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/foot/chieftain.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/foot/chieftain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Chieftain", - description: "Only worn by the most spiritual of Gnarlings.", + legacy_name: "Gnarling Chieftain", + legacy_description: "Only worn by the most spiritual of Gnarlings.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/foot/logger.ron b/assets/common/items/npc_armor/biped_small/gnarling/foot/logger.ron index 2a9dbbbc17..5af7c4b748 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/foot/logger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/foot/logger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/foot/mugger.ron b/assets/common/items/npc_armor/biped_small/gnarling/foot/mugger.ron index 2a9dbbbc17..5af7c4b748 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/foot/mugger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/foot/mugger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/foot/stalker.ron b/assets/common/items/npc_armor/biped_small/gnarling/foot/stalker.ron index 2a9dbbbc17..5af7c4b748 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/foot/stalker.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/foot/stalker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/hand/chieftain.ron b/assets/common/items/npc_armor/biped_small/gnarling/hand/chieftain.ron index 95f20bb37e..501f29b383 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/hand/chieftain.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/hand/chieftain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Chieftain", - description: "Only worn by the most spiritual of Gnarlings.", + legacy_name: "Gnarling Chieftain", + legacy_description: "Only worn by the most spiritual of Gnarlings.", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/hand/logger.ron b/assets/common/items/npc_armor/biped_small/gnarling/hand/logger.ron index 97b07b020d..d0add40070 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/hand/logger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/hand/logger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members..", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/hand/mugger.ron b/assets/common/items/npc_armor/biped_small/gnarling/hand/mugger.ron index 97b07b020d..d0add40070 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/hand/mugger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/hand/mugger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members..", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/hand/stalker.ron b/assets/common/items/npc_armor/biped_small/gnarling/hand/stalker.ron index 97b07b020d..d0add40070 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/hand/stalker.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/hand/stalker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members..", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/head/chieftain.ron b/assets/common/items/npc_armor/biped_small/gnarling/head/chieftain.ron index a4e8aaf138..e817985af3 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/head/chieftain.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/head/chieftain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Chieftain", - description: "Only worn by the most spiritual of Gnarlings.", + legacy_name: "Gnarling Chieftain", + legacy_description: "Only worn by the most spiritual of Gnarlings.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/head/logger.ron b/assets/common/items/npc_armor/biped_small/gnarling/head/logger.ron index 0684c3a4e4..58cbcefae4 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/head/logger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/head/logger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/head/mugger.ron b/assets/common/items/npc_armor/biped_small/gnarling/head/mugger.ron index 0684c3a4e4..58cbcefae4 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/head/mugger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/head/mugger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/head/stalker.ron b/assets/common/items/npc_armor/biped_small/gnarling/head/stalker.ron index 0684c3a4e4..58cbcefae4 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/head/stalker.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/head/stalker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/pants/chieftain.ron b/assets/common/items/npc_armor/biped_small/gnarling/pants/chieftain.ron index 99275de76d..fd4d075932 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/pants/chieftain.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/pants/chieftain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Chieftain", - description: "Only worn by the most spiritual of Gnarlings.", + legacy_name: "Gnarling Chieftain", + legacy_description: "Only worn by the most spiritual of Gnarlings.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/pants/logger.ron b/assets/common/items/npc_armor/biped_small/gnarling/pants/logger.ron index 869409e084..16514f357b 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/pants/logger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/pants/logger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members..", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/pants/mugger.ron b/assets/common/items/npc_armor/biped_small/gnarling/pants/mugger.ron index 869409e084..16514f357b 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/pants/mugger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/pants/mugger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members..", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/pants/stalker.ron b/assets/common/items/npc_armor/biped_small/gnarling/pants/stalker.ron index 869409e084..16514f357b 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/pants/stalker.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/pants/stalker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members..", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/tail/chieftain.ron b/assets/common/items/npc_armor/biped_small/gnarling/tail/chieftain.ron index 900a90b2d4..d273995d7c 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/tail/chieftain.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/tail/chieftain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Chieftain", - description: "Only worn by the most spiritual of Gnarlings.", + legacy_name: "Gnarling Chieftain", + legacy_description: "Only worn by the most spiritual of Gnarlings.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/tail/logger.ron b/assets/common/items/npc_armor/biped_small/gnarling/tail/logger.ron index 45d6fa2fe6..ce54acebfa 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/tail/logger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/tail/logger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/tail/mugger.ron b/assets/common/items/npc_armor/biped_small/gnarling/tail/mugger.ron index 45d6fa2fe6..ce54acebfa 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/tail/mugger.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/tail/mugger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnarling/tail/stalker.ron b/assets/common/items/npc_armor/biped_small/gnarling/tail/stalker.ron index 45d6fa2fe6..ce54acebfa 100644 --- a/assets/common/items/npc_armor/biped_small/gnarling/tail/stalker.ron +++ b/assets/common/items/npc_armor/biped_small/gnarling/tail/stalker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling", - description: "Ceremonial attire used by members.", + legacy_name: "Gnarling", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/chest/rogue.ron b/assets/common/items/npc_armor/biped_small/gnoll/chest/rogue.ron index 8a11831a72..cb6d761446 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/chest/rogue.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/chest/rogue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Rogue", - description: "Ceremonial attire used by members.", + legacy_name: "Gnoll Rogue", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/chest/shaman.ron b/assets/common/items/npc_armor/biped_small/gnoll/chest/shaman.ron index c521a976b0..15747c97b4 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/chest/shaman.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/chest/shaman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Shaman", - description: "Ceremonial attire used by members.", + legacy_name: "Gnoll Shaman", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/chest/trapper.ron b/assets/common/items/npc_armor/biped_small/gnoll/chest/trapper.ron index 6810bb0e1a..08baaad3e0 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/chest/trapper.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/chest/trapper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Trapper", - description: "Ceremonial attire used by members.", + legacy_name: "Gnoll Trapper", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/foot/rogue.ron b/assets/common/items/npc_armor/biped_small/gnoll/foot/rogue.ron index 501befcb7e..fe3c3aa698 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/foot/rogue.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/foot/rogue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Rogue", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Rogue", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/foot/shaman.ron b/assets/common/items/npc_armor/biped_small/gnoll/foot/shaman.ron index af42475054..3f50539fca 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/foot/shaman.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/foot/shaman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Shaman", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Shaman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/foot/trapper.ron b/assets/common/items/npc_armor/biped_small/gnoll/foot/trapper.ron index 4248bbc1d2..a88ab98264 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/foot/trapper.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/foot/trapper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Trapper", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Trapper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/hand/rogue.ron b/assets/common/items/npc_armor/biped_small/gnoll/hand/rogue.ron index 98fbbf2b9a..d9afbb558f 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/hand/rogue.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/hand/rogue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Rogue", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Rogue", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/hand/shaman.ron b/assets/common/items/npc_armor/biped_small/gnoll/hand/shaman.ron index 30e20ded9a..f58e9b1360 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/hand/shaman.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/hand/shaman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Shaman", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Shaman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/hand/trapper.ron b/assets/common/items/npc_armor/biped_small/gnoll/hand/trapper.ron index 8db42ced52..d9c0401ce9 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/hand/trapper.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/hand/trapper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Trapper", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Trapper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/head/rogue.ron b/assets/common/items/npc_armor/biped_small/gnoll/head/rogue.ron index 9029eb9a67..fe5d29a398 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/head/rogue.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/head/rogue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Rogue", - description: "Ceremonial attire used by members.", + legacy_name: "Gnoll Rogue", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/head/shaman.ron b/assets/common/items/npc_armor/biped_small/gnoll/head/shaman.ron index 40e40eb2d5..09646f6376 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/head/shaman.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/head/shaman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Shaman", - description: "Ceremonial attire used by members.", + legacy_name: "Gnoll Shaman", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/head/trapper.ron b/assets/common/items/npc_armor/biped_small/gnoll/head/trapper.ron index 1ddd02642a..73eefc7569 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/head/trapper.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/head/trapper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Trapper", - description: "Ceremonial attire used by members.", + legacy_name: "Gnoll Trapper", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/pants/rogue.ron b/assets/common/items/npc_armor/biped_small/gnoll/pants/rogue.ron index ed9274f80e..f5ceb628f1 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/pants/rogue.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/pants/rogue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Rogue", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Rogue", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/pants/shaman.ron b/assets/common/items/npc_armor/biped_small/gnoll/pants/shaman.ron index 9b8216d49c..56f54824fd 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/pants/shaman.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/pants/shaman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Shaman", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Shaman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/pants/trapper.ron b/assets/common/items/npc_armor/biped_small/gnoll/pants/trapper.ron index 07bc23ce1c..3831567c09 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/pants/trapper.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/pants/trapper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Trapper", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Trapper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/tail/rogue.ron b/assets/common/items/npc_armor/biped_small/gnoll/tail/rogue.ron index def85f736b..23f33e39e7 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/tail/rogue.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/tail/rogue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Rogue", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Rogue", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/tail/shaman.ron b/assets/common/items/npc_armor/biped_small/gnoll/tail/shaman.ron index 9d5b77babb..61bca8bd64 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/tail/shaman.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/tail/shaman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Shaman", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Shaman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnoll/tail/trapper.ron b/assets/common/items/npc_armor/biped_small/gnoll/tail/trapper.ron index e8957ba8d2..eb98a2b676 100644 --- a/assets/common/items/npc_armor/biped_small/gnoll/tail/trapper.ron +++ b/assets/common/items/npc_armor/biped_small/gnoll/tail/trapper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnoll Trapper", - description: "Ceremonial attire used by members..", + legacy_name: "Gnoll Trapper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnome/chest/gnome.ron b/assets/common/items/npc_armor/biped_small/gnome/chest/gnome.ron index 86e2c65357..16469a912b 100644 --- a/assets/common/items/npc_armor/biped_small/gnome/chest/gnome.ron +++ b/assets/common/items/npc_armor/biped_small/gnome/chest/gnome.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnome", - description: "Ceremonial attire used by members.", + legacy_name: "Gnome", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnome/foot/gnome.ron b/assets/common/items/npc_armor/biped_small/gnome/foot/gnome.ron index 4d81ebe48e..812256d51e 100644 --- a/assets/common/items/npc_armor/biped_small/gnome/foot/gnome.ron +++ b/assets/common/items/npc_armor/biped_small/gnome/foot/gnome.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnome", - description: "Ceremonial attire used by members.", + legacy_name: "Gnome", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnome/hand/gnome.ron b/assets/common/items/npc_armor/biped_small/gnome/hand/gnome.ron index 3f5f8c901c..b9a64d92b3 100644 --- a/assets/common/items/npc_armor/biped_small/gnome/hand/gnome.ron +++ b/assets/common/items/npc_armor/biped_small/gnome/hand/gnome.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnome", - description: "Ceremonial attire used by members..", + legacy_name: "Gnome", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnome/head/gnome.ron b/assets/common/items/npc_armor/biped_small/gnome/head/gnome.ron index b5c5235af8..fb8677873e 100644 --- a/assets/common/items/npc_armor/biped_small/gnome/head/gnome.ron +++ b/assets/common/items/npc_armor/biped_small/gnome/head/gnome.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnome", - description: "Ceremonial attire used by members.", + legacy_name: "Gnome", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/gnome/pants/gnome.ron b/assets/common/items/npc_armor/biped_small/gnome/pants/gnome.ron index ee779dace3..765331cab4 100644 --- a/assets/common/items/npc_armor/biped_small/gnome/pants/gnome.ron +++ b/assets/common/items/npc_armor/biped_small/gnome/pants/gnome.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnome", - description: "Ceremonial attire used by members..", + legacy_name: "Gnome", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/chest/archer.ron b/assets/common/items/npc_armor/biped_small/haniwa/chest/archer.ron index 50cb81968a..6caf0fa639 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/chest/archer.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/chest/archer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Archer", - description: "Ceremonial attire used by members.", + legacy_name: "Haniwa Archer", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/chest/guard.ron b/assets/common/items/npc_armor/biped_small/haniwa/chest/guard.ron index 912b9e75cd..be6cd98671 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/chest/guard.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/chest/guard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Guard", - description: "Ceremonial attire used by members.", + legacy_name: "Haniwa Guard", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/chest/soldier.ron b/assets/common/items/npc_armor/biped_small/haniwa/chest/soldier.ron index d63e9dfe66..c2a6cb5230 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/chest/soldier.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/chest/soldier.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Soldier", - description: "Ceremonial attire used by members.", + legacy_name: "Haniwa Soldier", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/foot/archer.ron b/assets/common/items/npc_armor/biped_small/haniwa/foot/archer.ron index 16b6e402a7..60b8b1781a 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/foot/archer.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/foot/archer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Archer", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Archer", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/foot/guard.ron b/assets/common/items/npc_armor/biped_small/haniwa/foot/guard.ron index 5f2bfc7f63..f8ef5bed3b 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/foot/guard.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/foot/guard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Guard", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Guard", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/foot/soldier.ron b/assets/common/items/npc_armor/biped_small/haniwa/foot/soldier.ron index 0bcdbd13b5..403498c5d7 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/foot/soldier.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/foot/soldier.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Soldier", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Soldier", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/hand/archer.ron b/assets/common/items/npc_armor/biped_small/haniwa/hand/archer.ron index c38eccafef..675eafe6e0 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/hand/archer.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/hand/archer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Archer", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Archer", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/hand/guard.ron b/assets/common/items/npc_armor/biped_small/haniwa/hand/guard.ron index 7eec4e260b..a4c44361e7 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/hand/guard.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/hand/guard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Guard", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Guard", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/hand/soldier.ron b/assets/common/items/npc_armor/biped_small/haniwa/hand/soldier.ron index 06228a15e7..8de53b53b5 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/hand/soldier.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/hand/soldier.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Soldier", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Soldier", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/head/archer.ron b/assets/common/items/npc_armor/biped_small/haniwa/head/archer.ron index 1589fab193..fd1db1fcb3 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/head/archer.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/head/archer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Archer", - description: "Ceremonial attire used by members.", + legacy_name: "Haniwa Archer", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/head/guard.ron b/assets/common/items/npc_armor/biped_small/haniwa/head/guard.ron index 3e05c2912a..e682dbe529 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/head/guard.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/head/guard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Guard", - description: "Ceremonial attire used by members.", + legacy_name: "Haniwa Guard", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/head/soldier.ron b/assets/common/items/npc_armor/biped_small/haniwa/head/soldier.ron index 26a65b8a2c..4c019e40a3 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/head/soldier.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/head/soldier.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Soldier", - description: "Ceremonial attire used by members.", + legacy_name: "Haniwa Soldier", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/pants/archer.ron b/assets/common/items/npc_armor/biped_small/haniwa/pants/archer.ron index f61debc701..44d88b314e 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/pants/archer.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/pants/archer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Archer", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Archer", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/pants/guard.ron b/assets/common/items/npc_armor/biped_small/haniwa/pants/guard.ron index 0f4ae486d4..66b9badc81 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/pants/guard.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/pants/guard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Guard", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Guard", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/haniwa/pants/soldier.ron b/assets/common/items/npc_armor/biped_small/haniwa/pants/soldier.ron index 2b27f70ceb..23027b1477 100644 --- a/assets/common/items/npc_armor/biped_small/haniwa/pants/soldier.ron +++ b/assets/common/items/npc_armor/biped_small/haniwa/pants/soldier.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Soldier", - description: "Ceremonial attire used by members..", + legacy_name: "Haniwa Soldier", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/husk/chest/husk.ron b/assets/common/items/npc_armor/biped_small/husk/chest/husk.ron index f52914bfaf..a9c81b9571 100644 --- a/assets/common/items/npc_armor/biped_small/husk/chest/husk.ron +++ b/assets/common/items/npc_armor/biped_small/husk/chest/husk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk", - description: "Ceremonial attire used by members.", + legacy_name: "Husk", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/husk/foot/husk.ron b/assets/common/items/npc_armor/biped_small/husk/foot/husk.ron index de0fe5934f..19080d9685 100644 --- a/assets/common/items/npc_armor/biped_small/husk/foot/husk.ron +++ b/assets/common/items/npc_armor/biped_small/husk/foot/husk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk", - description: "Ceremonial attire used by members..", + legacy_name: "Husk", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/husk/hand/husk.ron b/assets/common/items/npc_armor/biped_small/husk/hand/husk.ron index abb1b27dab..725f212522 100644 --- a/assets/common/items/npc_armor/biped_small/husk/hand/husk.ron +++ b/assets/common/items/npc_armor/biped_small/husk/hand/husk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk", - description: "Ceremonial attire used by members..", + legacy_name: "Husk", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/husk/head/husk.ron b/assets/common/items/npc_armor/biped_small/husk/head/husk.ron index ea8ee37073..ba17265f2c 100644 --- a/assets/common/items/npc_armor/biped_small/husk/head/husk.ron +++ b/assets/common/items/npc_armor/biped_small/husk/head/husk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk", - description: "Ceremonial attire used by members.", + legacy_name: "Husk", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/husk/pants/husk.ron b/assets/common/items/npc_armor/biped_small/husk/pants/husk.ron index e03fcb09e3..7609aa4d0d 100644 --- a/assets/common/items/npc_armor/biped_small/husk/pants/husk.ron +++ b/assets/common/items/npc_armor/biped_small/husk/pants/husk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk", - description: "Ceremonial attire used by members..", + legacy_name: "Husk", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/husk/tail/husk.ron b/assets/common/items/npc_armor/biped_small/husk/tail/husk.ron index ce032c59f7..4776cc9523 100644 --- a/assets/common/items/npc_armor/biped_small/husk/tail/husk.ron +++ b/assets/common/items/npc_armor/biped_small/husk/tail/husk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk", - description: "Ceremonial attire used by members..", + legacy_name: "Husk", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/irrwurz/chest/irrwurz.ron b/assets/common/items/npc_armor/biped_small/irrwurz/chest/irrwurz.ron index a483ed1ce4..b91e870edf 100644 --- a/assets/common/items/npc_armor/biped_small/irrwurz/chest/irrwurz.ron +++ b/assets/common/items/npc_armor/biped_small/irrwurz/chest/irrwurz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Irrwurz", - description: "Plant Creature", + legacy_name: "Irrwurz", + legacy_description: "Plant Creature", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/irrwurz/foot/irrwurz.ron b/assets/common/items/npc_armor/biped_small/irrwurz/foot/irrwurz.ron index 106a5ef41b..b3bfa60363 100644 --- a/assets/common/items/npc_armor/biped_small/irrwurz/foot/irrwurz.ron +++ b/assets/common/items/npc_armor/biped_small/irrwurz/foot/irrwurz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Irrwurz", - description: "Plant Creature", + legacy_name: "Irrwurz", + legacy_description: "Plant Creature", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/irrwurz/hand/irrwurz.ron b/assets/common/items/npc_armor/biped_small/irrwurz/hand/irrwurz.ron index a27a0ff3e1..c9008586f8 100644 --- a/assets/common/items/npc_armor/biped_small/irrwurz/hand/irrwurz.ron +++ b/assets/common/items/npc_armor/biped_small/irrwurz/hand/irrwurz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Irrwurz", - description: "Ceremonial attire used by members.", + legacy_name: "Irrwurz", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/irrwurz/pants/irrwurz.ron b/assets/common/items/npc_armor/biped_small/irrwurz/pants/irrwurz.ron index a7619f9b88..8bc60cb400 100644 --- a/assets/common/items/npc_armor/biped_small/irrwurz/pants/irrwurz.ron +++ b/assets/common/items/npc_armor/biped_small/irrwurz/pants/irrwurz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Irrwurz", - description: "Plant Creature", + legacy_name: "Irrwurz", + legacy_description: "Plant Creature", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/kappa/chest/kappa.ron b/assets/common/items/npc_armor/biped_small/kappa/chest/kappa.ron index 0b0227e5a4..d090a2c6cf 100644 --- a/assets/common/items/npc_armor/biped_small/kappa/chest/kappa.ron +++ b/assets/common/items/npc_armor/biped_small/kappa/chest/kappa.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Kappa", - description: "Ceremonial attire used by members.", + legacy_name: "Kappa", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/kappa/foot/kappa.ron b/assets/common/items/npc_armor/biped_small/kappa/foot/kappa.ron index 90e6f0e337..8b30bb2224 100644 --- a/assets/common/items/npc_armor/biped_small/kappa/foot/kappa.ron +++ b/assets/common/items/npc_armor/biped_small/kappa/foot/kappa.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Kappa", - description: "Ceremonial attire used by members.", + legacy_name: "Kappa", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/kappa/hand/kappa.ron b/assets/common/items/npc_armor/biped_small/kappa/hand/kappa.ron index 072a9c96a7..27dbedc0cd 100644 --- a/assets/common/items/npc_armor/biped_small/kappa/hand/kappa.ron +++ b/assets/common/items/npc_armor/biped_small/kappa/hand/kappa.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Kappa", - description: "Ceremonial attire used by members..", + legacy_name: "Kappa", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/kappa/head/kappa.ron b/assets/common/items/npc_armor/biped_small/kappa/head/kappa.ron index e0f7904e8a..f6b26c8216 100644 --- a/assets/common/items/npc_armor/biped_small/kappa/head/kappa.ron +++ b/assets/common/items/npc_armor/biped_small/kappa/head/kappa.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Kappa", - description: "Ceremonial attire used by members.", + legacy_name: "Kappa", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/kappa/pants/kappa.ron b/assets/common/items/npc_armor/biped_small/kappa/pants/kappa.ron index ac44b9a334..60cdc93911 100644 --- a/assets/common/items/npc_armor/biped_small/kappa/pants/kappa.ron +++ b/assets/common/items/npc_armor/biped_small/kappa/pants/kappa.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Kappa", - description: "Ceremonial attire used by members..", + legacy_name: "Kappa", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/kappa/tail/kappa.ron b/assets/common/items/npc_armor/biped_small/kappa/tail/kappa.ron index 92f60447f1..7a758b72f5 100644 --- a/assets/common/items/npc_armor/biped_small/kappa/tail/kappa.ron +++ b/assets/common/items/npc_armor/biped_small/kappa/tail/kappa.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Kappa", - description: "Ceremonial attire used by members.", + legacy_name: "Kappa", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/mandragora/chest/mandragora.ron b/assets/common/items/npc_armor/biped_small/mandragora/chest/mandragora.ron index 34f17b1e3d..d55da212df 100644 --- a/assets/common/items/npc_armor/biped_small/mandragora/chest/mandragora.ron +++ b/assets/common/items/npc_armor/biped_small/mandragora/chest/mandragora.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mandragora", - description: "Ceremonial attire used by members.", + legacy_name: "Mandragora", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/mandragora/foot/mandragora.ron b/assets/common/items/npc_armor/biped_small/mandragora/foot/mandragora.ron index 6d8771757d..ca91f51431 100644 --- a/assets/common/items/npc_armor/biped_small/mandragora/foot/mandragora.ron +++ b/assets/common/items/npc_armor/biped_small/mandragora/foot/mandragora.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mandragora", - description: "Ceremonial attire used by members.", + legacy_name: "Mandragora", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/mandragora/hand/mandragora.ron b/assets/common/items/npc_armor/biped_small/mandragora/hand/mandragora.ron index 82449f27f3..2db97c36af 100644 --- a/assets/common/items/npc_armor/biped_small/mandragora/hand/mandragora.ron +++ b/assets/common/items/npc_armor/biped_small/mandragora/hand/mandragora.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mandragora", - description: "Ceremonial attire used by members.", + legacy_name: "Mandragora", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/mandragora/pants/mandragora.ron b/assets/common/items/npc_armor/biped_small/mandragora/pants/mandragora.ron index 758bac420b..b8a2d34d42 100644 --- a/assets/common/items/npc_armor/biped_small/mandragora/pants/mandragora.ron +++ b/assets/common/items/npc_armor/biped_small/mandragora/pants/mandragora.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mandragora", - description: "Ceremonial attire used by members.", + legacy_name: "Mandragora", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/mandragora/tail/mandragora.ron b/assets/common/items/npc_armor/biped_small/mandragora/tail/mandragora.ron index 25709a7a5f..c72a25ddd7 100644 --- a/assets/common/items/npc_armor/biped_small/mandragora/tail/mandragora.ron +++ b/assets/common/items/npc_armor/biped_small/mandragora/tail/mandragora.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mandragora", - description: "Ceremonial attire used by members.", + legacy_name: "Mandragora", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/chest/hoplite.ron b/assets/common/items/npc_armor/biped_small/myrmidon/chest/hoplite.ron index f40af2675b..977bd9a3dc 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/chest/hoplite.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/chest/hoplite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Hoplite", - description: "Ceremonial attire used by members.", + legacy_name: "Myrmidon Hoplite", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/chest/marksman.ron b/assets/common/items/npc_armor/biped_small/myrmidon/chest/marksman.ron index b8c2fdf158..775823a409 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/chest/marksman.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/chest/marksman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Marksman", - description: "Ceremonial attire used by members.", + legacy_name: "Myrmidon Marksman", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/chest/strategian.ron b/assets/common/items/npc_armor/biped_small/myrmidon/chest/strategian.ron index fcadc33568..9b15f98d78 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/chest/strategian.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/chest/strategian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Strategian", - description: "Ceremonial attire used by members.", + legacy_name: "Myrmidon Strategian", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/foot/hoplite.ron b/assets/common/items/npc_armor/biped_small/myrmidon/foot/hoplite.ron index b07c86692b..ecda55e373 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/foot/hoplite.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/foot/hoplite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Hoplite", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Hoplite", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/foot/marksman.ron b/assets/common/items/npc_armor/biped_small/myrmidon/foot/marksman.ron index ee13d824ac..f491f08bc1 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/foot/marksman.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/foot/marksman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Marksman", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Marksman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/foot/strategian.ron b/assets/common/items/npc_armor/biped_small/myrmidon/foot/strategian.ron index 5f38b950ab..6e028d08bd 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/foot/strategian.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/foot/strategian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Strategian", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Strategian", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/hand/hoplite.ron b/assets/common/items/npc_armor/biped_small/myrmidon/hand/hoplite.ron index b6215422c1..17b863400d 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/hand/hoplite.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/hand/hoplite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Hoplite", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Hoplite", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/hand/marksman.ron b/assets/common/items/npc_armor/biped_small/myrmidon/hand/marksman.ron index 39fa56db30..5724fe36db 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/hand/marksman.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/hand/marksman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Marksman", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Marksman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/hand/strategian.ron b/assets/common/items/npc_armor/biped_small/myrmidon/hand/strategian.ron index cd07aeb9d8..a482d8ee7a 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/hand/strategian.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/hand/strategian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Strategian", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Strategian", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/head/hoplite.ron b/assets/common/items/npc_armor/biped_small/myrmidon/head/hoplite.ron index e511fc88f5..4486168893 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/head/hoplite.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/head/hoplite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Hoplite", - description: "Ceremonial attire used by members.", + legacy_name: "Myrmidon Hoplite", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/head/marksman.ron b/assets/common/items/npc_armor/biped_small/myrmidon/head/marksman.ron index 93b9f4485b..9ed13f9115 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/head/marksman.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/head/marksman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Marksman", - description: "Ceremonial attire used by members.", + legacy_name: "Myrmidon Marksman", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/head/strategian.ron b/assets/common/items/npc_armor/biped_small/myrmidon/head/strategian.ron index 623509b055..32adcdaf46 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/head/strategian.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/head/strategian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Strategian", - description: "Ceremonial attire used by members.", + legacy_name: "Myrmidon Strategian", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/pants/hoplite.ron b/assets/common/items/npc_armor/biped_small/myrmidon/pants/hoplite.ron index a6e5f305bd..902ca68fd7 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/pants/hoplite.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/pants/hoplite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Hoplite", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Hoplite", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/pants/marksman.ron b/assets/common/items/npc_armor/biped_small/myrmidon/pants/marksman.ron index d32e8d6c4f..168963b3cf 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/pants/marksman.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/pants/marksman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Marksman", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Marksman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/pants/strategian.ron b/assets/common/items/npc_armor/biped_small/myrmidon/pants/strategian.ron index aa9f8d5630..e8bb3905ac 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/pants/strategian.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/pants/strategian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Strategian", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Strategian", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/tail/hoplite.ron b/assets/common/items/npc_armor/biped_small/myrmidon/tail/hoplite.ron index 80a1ee58a0..ba27aa2c73 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/tail/hoplite.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/tail/hoplite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Hoplite", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Hoplite", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/tail/marksman.ron b/assets/common/items/npc_armor/biped_small/myrmidon/tail/marksman.ron index dbfdbcd2d3..36226ca65e 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/tail/marksman.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/tail/marksman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Marksman", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Marksman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/myrmidon/tail/strategian.ron b/assets/common/items/npc_armor/biped_small/myrmidon/tail/strategian.ron index ad64a97857..2b15136976 100644 --- a/assets/common/items/npc_armor/biped_small/myrmidon/tail/strategian.ron +++ b/assets/common/items/npc_armor/biped_small/myrmidon/tail/strategian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Myrmidon Strategian", - description: "Ceremonial attire used by members..", + legacy_name: "Myrmidon Strategian", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/chest/sniper.ron b/assets/common/items/npc_armor/biped_small/sahagin/chest/sniper.ron index 926a1e3672..78e0a029f5 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/chest/sniper.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/chest/sniper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sniper", - description: "Ceremonial attire used by members.", + legacy_name: "Sahagin Sniper", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/chest/sorcerer.ron b/assets/common/items/npc_armor/biped_small/sahagin/chest/sorcerer.ron index a7e75e6d9e..d15254d08f 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/chest/sorcerer.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/chest/sorcerer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sorcerer", - description: "Ceremonial attire used by members.", + legacy_name: "Sahagin Sorcerer", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/chest/spearman.ron b/assets/common/items/npc_armor/biped_small/sahagin/chest/spearman.ron index cf7b27d5fc..d90cede6e0 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/chest/spearman.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/chest/spearman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Spearman", - description: "Ceremonial attire used by members.", + legacy_name: "Sahagin Spearman", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/foot/sniper.ron b/assets/common/items/npc_armor/biped_small/sahagin/foot/sniper.ron index 121ed2ee89..d2c2eb1d10 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/foot/sniper.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/foot/sniper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sniper", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sniper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/foot/sorcerer.ron b/assets/common/items/npc_armor/biped_small/sahagin/foot/sorcerer.ron index 5c43d3062a..c9eccc2cc8 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/foot/sorcerer.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/foot/sorcerer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sorcerer", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sorcerer", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/foot/spearman.ron b/assets/common/items/npc_armor/biped_small/sahagin/foot/spearman.ron index d7be59660e..5365d86dd7 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/foot/spearman.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/foot/spearman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Spearman", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Spearman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Foot, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/hand/sniper.ron b/assets/common/items/npc_armor/biped_small/sahagin/hand/sniper.ron index 880645b5d0..d3b8b8d257 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/hand/sniper.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/hand/sniper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sniper", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sniper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/hand/sorcerer.ron b/assets/common/items/npc_armor/biped_small/sahagin/hand/sorcerer.ron index b389d4fcc9..ec08e647de 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/hand/sorcerer.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/hand/sorcerer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sorcerer", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sorcerer", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/hand/spearman.ron b/assets/common/items/npc_armor/biped_small/sahagin/hand/spearman.ron index 7f157a4400..de55e9dc29 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/hand/spearman.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/hand/spearman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Spearman", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Spearman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Hand, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/head/sniper.ron b/assets/common/items/npc_armor/biped_small/sahagin/head/sniper.ron index 400cecdb3b..ac5ee3cd27 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/head/sniper.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/head/sniper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sniper", - description: "Ceremonial attire used by members.", + legacy_name: "Sahagin Sniper", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/head/sorcerer.ron b/assets/common/items/npc_armor/biped_small/sahagin/head/sorcerer.ron index 008d44c60b..b45d859aca 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/head/sorcerer.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/head/sorcerer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sorcerer", - description: "Ceremonial attire used by members.", + legacy_name: "Sahagin Sorcerer", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/head/spearman.ron b/assets/common/items/npc_armor/biped_small/sahagin/head/spearman.ron index 635b5a3e5b..267fd83280 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/head/spearman.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/head/spearman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Spearman", - description: "Ceremonial attire used by members.", + legacy_name: "Sahagin Spearman", + legacy_description: "Ceremonial attire used by members.", kind: Armor(( kind: Head, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/pants/sniper.ron b/assets/common/items/npc_armor/biped_small/sahagin/pants/sniper.ron index 42836184a1..a68351d7f3 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/pants/sniper.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/pants/sniper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sniper", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sniper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/pants/sorcerer.ron b/assets/common/items/npc_armor/biped_small/sahagin/pants/sorcerer.ron index cead09c58f..e952826e1b 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/pants/sorcerer.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/pants/sorcerer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sorcerer", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sorcerer", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/pants/spearman.ron b/assets/common/items/npc_armor/biped_small/sahagin/pants/spearman.ron index 2289df0718..c6cf23041f 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/pants/spearman.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/pants/spearman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Spearman", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Spearman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/tail/sniper.ron b/assets/common/items/npc_armor/biped_small/sahagin/tail/sniper.ron index 374c106bc5..daefbe859b 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/tail/sniper.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/tail/sniper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sniper", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sniper", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/tail/sorcerer.ron b/assets/common/items/npc_armor/biped_small/sahagin/tail/sorcerer.ron index 36c8c8177f..04f5a6688e 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/tail/sorcerer.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/tail/sorcerer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Sorcerer", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Sorcerer", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/biped_small/sahagin/tail/spearman.ron b/assets/common/items/npc_armor/biped_small/sahagin/tail/spearman.ron index f198f413fa..80c29c2a97 100644 --- a/assets/common/items/npc_armor/biped_small/sahagin/tail/spearman.ron +++ b/assets/common/items/npc_armor/biped_small/sahagin/tail/spearman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sahagin Spearman", - description: "Ceremonial attire used by members..", + legacy_name: "Sahagin Spearman", + legacy_description: "Ceremonial attire used by members..", kind: Armor(( kind: Belt, stats: Direct(( diff --git a/assets/common/items/npc_armor/bird_large/phoenix.ron b/assets/common/items/npc_armor/bird_large/phoenix.ron index 07a61788c0..ae67d5ac5d 100644 --- a/assets/common/items/npc_armor/bird_large/phoenix.ron +++ b/assets/common/items/npc_armor/bird_large/phoenix.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Phoenix Armor", - description: "The thickest feather you have ever seen!", + legacy_name: "Phoenix Armor", + legacy_description: "The thickest feather you have ever seen!", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/bird_large/wyvern.ron b/assets/common/items/npc_armor/bird_large/wyvern.ron index 5f92d41967..45b5adb96a 100644 --- a/assets/common/items/npc_armor/bird_large/wyvern.ron +++ b/assets/common/items/npc_armor/bird_large/wyvern.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wyvern Armor", - description: "Generic Protection.", + legacy_name: "Wyvern Armor", + legacy_description: "Generic Protection.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/chest/leather_blue.ron b/assets/common/items/npc_armor/chest/leather_blue.ron index bd0db587b2..a441b23628 100644 --- a/assets/common/items/npc_armor/chest/leather_blue.ron +++ b/assets/common/items/npc_armor/chest/leather_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Leather Cuirass", - description: "", + legacy_name: "Blue Leather Cuirass", + legacy_description: "", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/chest/plate_red.ron b/assets/common/items/npc_armor/chest/plate_red.ron index b7fcd733c3..4da2c6f21a 100644 --- a/assets/common/items/npc_armor/chest/plate_red.ron +++ b/assets/common/items/npc_armor/chest/plate_red.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Chestplate", - description: "A chestplate forged from iron.", + legacy_name: "Iron Chestplate", + legacy_description: "A chestplate forged from iron.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/golem/claygolem.ron b/assets/common/items/npc_armor/golem/claygolem.ron index a51924d924..0e5176c9c0 100644 --- a/assets/common/items/npc_armor/golem/claygolem.ron +++ b/assets/common/items/npc_armor/golem/claygolem.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clay Golem Armor", - description: "Worn by clay golem.", + legacy_name: "Clay Golem Armor", + legacy_description: "Worn by clay golem.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/golem/woodgolem.ron b/assets/common/items/npc_armor/golem/woodgolem.ron index 8d0651a47c..21362d3378 100644 --- a/assets/common/items/npc_armor/golem/woodgolem.ron +++ b/assets/common/items/npc_armor/golem/woodgolem.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wood Golem Armor", - description: "Yeet", + legacy_name: "Wood Golem Armor", + legacy_description: "Yeet", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/pants/leather_blue.ron b/assets/common/items/npc_armor/pants/leather_blue.ron index ada5546ab4..c060a05a59 100644 --- a/assets/common/items/npc_armor/pants/leather_blue.ron +++ b/assets/common/items/npc_armor/pants/leather_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Leather Guards", - description: "", + legacy_name: "Blue Leather Guards", + legacy_description: "", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/pants/plate_red.ron b/assets/common/items/npc_armor/pants/plate_red.ron index 3dc374ada8..784f02fd1a 100644 --- a/assets/common/items/npc_armor/pants/plate_red.ron +++ b/assets/common/items/npc_armor/pants/plate_red.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Iron Legguards", - description: "Greaves forged from iron.", + legacy_name: "Iron Legguards", + legacy_description: "Greaves forged from iron.", kind: Armor(( kind: Pants, stats: Direct(( diff --git a/assets/common/items/npc_armor/quadruped_low/dagon.ron b/assets/common/items/npc_armor/quadruped_low/dagon.ron index 1c1ebc521d..1d2a266903 100644 --- a/assets/common/items/npc_armor/quadruped_low/dagon.ron +++ b/assets/common/items/npc_armor/quadruped_low/dagon.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dagon's Scales", - description: "Rigid enough to withstand the pressure of the deep ocean.", + legacy_name: "Dagon's Scales", + legacy_description: "Rigid enough to withstand the pressure of the deep ocean.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/quadruped_low/generic.ron b/assets/common/items/npc_armor/quadruped_low/generic.ron index ffa37c43cc..9fe0e0988f 100644 --- a/assets/common/items/npc_armor/quadruped_low/generic.ron +++ b/assets/common/items/npc_armor/quadruped_low/generic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Low Generic", - description: "Scaly.", + legacy_name: "Quad Low Generic", + legacy_description: "Scaly.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/quadruped_low/shell.ron b/assets/common/items/npc_armor/quadruped_low/shell.ron index cdc0b39756..c7d7bbef1b 100644 --- a/assets/common/items/npc_armor/quadruped_low/shell.ron +++ b/assets/common/items/npc_armor/quadruped_low/shell.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Low Shell", - description: "Shell.", + legacy_name: "Quad Low Shell", + legacy_description: "Shell.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/quadruped_medium/frostfang.ron b/assets/common/items/npc_armor/quadruped_medium/frostfang.ron index 53f52283f2..7abcff0de7 100644 --- a/assets/common/items/npc_armor/quadruped_medium/frostfang.ron +++ b/assets/common/items/npc_armor/quadruped_medium/frostfang.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frostfang's Thick Skin", - description: "testing123", + legacy_name: "Frostfang's Thick Skin", + legacy_description: "testing123", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/quadruped_medium/roshwalr.ron b/assets/common/items/npc_armor/quadruped_medium/roshwalr.ron index 45b253b657..033e5a0695 100644 --- a/assets/common/items/npc_armor/quadruped_medium/roshwalr.ron +++ b/assets/common/items/npc_armor/quadruped_medium/roshwalr.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Roshwalr's Thick Skin", - description: "testing123", + legacy_name: "Roshwalr's Thick Skin", + legacy_description: "testing123", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_armor/theropod/rugged.ron b/assets/common/items/npc_armor/theropod/rugged.ron index 003741fe7f..77ef94a932 100644 --- a/assets/common/items/npc_armor/theropod/rugged.ron +++ b/assets/common/items/npc_armor/theropod/rugged.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Theropod Rugged", - description: "stronk.", + legacy_name: "Theropod Rugged", + legacy_description: "stronk.", kind: Armor(( kind: Chest, stats: Direct(( diff --git a/assets/common/items/npc_weapons/axe/gigas_frost_axe.ron b/assets/common/items/npc_weapons/axe/gigas_frost_axe.ron index 998b7fade9..06479f69de 100644 --- a/assets/common/items/npc_weapons/axe/gigas_frost_axe.ron +++ b/assets/common/items/npc_weapons/axe/gigas_frost_axe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frost Gigas Axe", - description: "Placeholder", + legacy_name: "Frost Gigas Axe", + legacy_description: "Placeholder", kind: Tool(( kind: Axe, hands: Two, diff --git a/assets/common/items/npc_weapons/axe/minotaur_axe.ron b/assets/common/items/npc_weapons/axe/minotaur_axe.ron index d899336546..252048fa43 100644 --- a/assets/common/items/npc_weapons/axe/minotaur_axe.ron +++ b/assets/common/items/npc_weapons/axe/minotaur_axe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Minotaur Axe", - description: "Placeholder", + legacy_name: "Minotaur Axe", + legacy_description: "Placeholder", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/axe/oni_blue_axe.ron b/assets/common/items/npc_weapons/axe/oni_blue_axe.ron index 9c0aff1290..25972c3adc 100644 --- a/assets/common/items/npc_weapons/axe/oni_blue_axe.ron +++ b/assets/common/items/npc_weapons/axe/oni_blue_axe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Blue Oni Axe", - description: "Placeholder", + legacy_name: "Blue Oni Axe", + legacy_description: "Placeholder", kind: Tool(( kind: Axe, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/adlet/hunter.ron b/assets/common/items/npc_weapons/biped_small/adlet/hunter.ron index 0e2c95b7c0..f22a5c732f 100644 --- a/assets/common/items/npc_weapons/biped_small/adlet/hunter.ron +++ b/assets/common/items/npc_weapons/biped_small/adlet/hunter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hunter Spear", - description: "", + legacy_name: "Hunter Spear", + legacy_description: "", kind: Tool(( kind: Spear, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/adlet/icepicker.ron b/assets/common/items/npc_weapons/biped_small/adlet/icepicker.ron index 1a1180c542..3d6b697c74 100644 --- a/assets/common/items/npc_weapons/biped_small/adlet/icepicker.ron +++ b/assets/common/items/npc_weapons/biped_small/adlet/icepicker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Icepicker Pick", - description: "", + legacy_name: "Icepicker Pick", + legacy_description: "", kind: Tool(( kind: Pick, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/adlet/tracker.ron b/assets/common/items/npc_weapons/biped_small/adlet/tracker.ron index 8a2365a014..6cc065d475 100644 --- a/assets/common/items/npc_weapons/biped_small/adlet/tracker.ron +++ b/assets/common/items/npc_weapons/biped_small/adlet/tracker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tracker Bow", - description: "", + legacy_name: "Tracker Bow", + legacy_description: "", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/boreal/bow.ron b/assets/common/items/npc_weapons/biped_small/boreal/bow.ron index 58d2c845fa..b0972a4a45 100644 --- a/assets/common/items/npc_weapons/biped_small/boreal/bow.ron +++ b/assets/common/items/npc_weapons/biped_small/boreal/bow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Bow", - description: "", + legacy_name: "Boreal Bow", + legacy_description: "", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/boreal/hammer.ron b/assets/common/items/npc_weapons/biped_small/boreal/hammer.ron index ea9bc97a52..f276cb6090 100644 --- a/assets/common/items/npc_weapons/biped_small/boreal/hammer.ron +++ b/assets/common/items/npc_weapons/biped_small/boreal/hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Boreal Hammer", - description: "", + legacy_name: "Boreal Hammer", + legacy_description: "", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/gnarling/chieftain.ron b/assets/common/items/npc_weapons/biped_small/gnarling/chieftain.ron index 22ee5855dd..5d3e931f67 100644 --- a/assets/common/items/npc_weapons/biped_small/gnarling/chieftain.ron +++ b/assets/common/items/npc_weapons/biped_small/gnarling/chieftain.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Chieftain Staff", - description: "", + legacy_name: "Chieftain Staff", + legacy_description: "", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/gnarling/greentotem.ron b/assets/common/items/npc_weapons/biped_small/gnarling/greentotem.ron index 374719de4f..a7f45afa12 100644 --- a/assets/common/items/npc_weapons/biped_small/gnarling/greentotem.ron +++ b/assets/common/items/npc_weapons/biped_small/gnarling/greentotem.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Green Totem", - description: "Yeet", + legacy_name: "Gnarling Green Totem", + legacy_description: "Yeet", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/gnarling/logger.ron b/assets/common/items/npc_weapons/biped_small/gnarling/logger.ron index 637395e17a..80df7d474a 100644 --- a/assets/common/items/npc_weapons/biped_small/gnarling/logger.ron +++ b/assets/common/items/npc_weapons/biped_small/gnarling/logger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Logger Axe", - description: "", + legacy_name: "Logger Axe", + legacy_description: "", kind: Tool(( kind: Axe, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/gnarling/mugger.ron b/assets/common/items/npc_weapons/biped_small/gnarling/mugger.ron index d28b4cc28b..0b83e2d846 100644 --- a/assets/common/items/npc_weapons/biped_small/gnarling/mugger.ron +++ b/assets/common/items/npc_weapons/biped_small/gnarling/mugger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mugger Dagger", - description: "", + legacy_name: "Mugger Dagger", + legacy_description: "", kind: Tool(( kind: Dagger, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/gnarling/redtotem.ron b/assets/common/items/npc_weapons/biped_small/gnarling/redtotem.ron index 9e1b08499d..cdfe703bf0 100644 --- a/assets/common/items/npc_weapons/biped_small/gnarling/redtotem.ron +++ b/assets/common/items/npc_weapons/biped_small/gnarling/redtotem.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling Red Totem", - description: "Yeet", + legacy_name: "Gnarling Red Totem", + legacy_description: "Yeet", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/gnarling/stalker.ron b/assets/common/items/npc_weapons/biped_small/gnarling/stalker.ron index 50bf05f0c9..87962c4b77 100644 --- a/assets/common/items/npc_weapons/biped_small/gnarling/stalker.ron +++ b/assets/common/items/npc_weapons/biped_small/gnarling/stalker.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Stalker Blowgun", - description: "", + legacy_name: "Stalker Blowgun", + legacy_description: "", kind: Tool(( kind: Blowgun, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/gnarling/whitetotem.ron b/assets/common/items/npc_weapons/biped_small/gnarling/whitetotem.ron index 9ccf350383..e05ef5d599 100644 --- a/assets/common/items/npc_weapons/biped_small/gnarling/whitetotem.ron +++ b/assets/common/items/npc_weapons/biped_small/gnarling/whitetotem.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarling White Totem", - description: "Yeet", + legacy_name: "Gnarling White Totem", + legacy_description: "Yeet", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/haniwa/archer.ron b/assets/common/items/npc_weapons/biped_small/haniwa/archer.ron index 5dfda27d4c..4c437cab84 100644 --- a/assets/common/items/npc_weapons/biped_small/haniwa/archer.ron +++ b/assets/common/items/npc_weapons/biped_small/haniwa/archer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Archer Bow", - description: "", + legacy_name: "Archer Bow", + legacy_description: "", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/haniwa/guard.ron b/assets/common/items/npc_weapons/biped_small/haniwa/guard.ron index 7889656c53..b86d43fc81 100644 --- a/assets/common/items/npc_weapons/biped_small/haniwa/guard.ron +++ b/assets/common/items/npc_weapons/biped_small/haniwa/guard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Guard Spear", - description: "", + legacy_name: "Guard Spear", + legacy_description: "", kind: Tool(( kind: Spear, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/haniwa/soldier.ron b/assets/common/items/npc_weapons/biped_small/haniwa/soldier.ron index 4f1f22f088..5a166f152c 100644 --- a/assets/common/items/npc_weapons/biped_small/haniwa/soldier.ron +++ b/assets/common/items/npc_weapons/biped_small/haniwa/soldier.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Soldier Sword", - description: "", + legacy_name: "Soldier Sword", + legacy_description: "", kind: Tool(( kind: Dagger, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/mandragora.ron b/assets/common/items/npc_weapons/biped_small/mandragora.ron index 642fea9e10..3221aa12e7 100644 --- a/assets/common/items/npc_weapons/biped_small/mandragora.ron +++ b/assets/common/items/npc_weapons/biped_small/mandragora.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mandragora", - description: "Testing", + legacy_name: "Mandragora", + legacy_description: "Testing", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/myrmidon/hoplite.ron b/assets/common/items/npc_weapons/biped_small/myrmidon/hoplite.ron index 86a30ba049..f97f48fc8a 100644 --- a/assets/common/items/npc_weapons/biped_small/myrmidon/hoplite.ron +++ b/assets/common/items/npc_weapons/biped_small/myrmidon/hoplite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hoplite Spear", - description: "", + legacy_name: "Hoplite Spear", + legacy_description: "", kind: Tool(( kind: Spear, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/myrmidon/marksman.ron b/assets/common/items/npc_weapons/biped_small/myrmidon/marksman.ron index 021eb8e6a9..e383ece9ff 100644 --- a/assets/common/items/npc_weapons/biped_small/myrmidon/marksman.ron +++ b/assets/common/items/npc_weapons/biped_small/myrmidon/marksman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Marksman Bow", - description: "", + legacy_name: "Marksman Bow", + legacy_description: "", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/myrmidon/strategian.ron b/assets/common/items/npc_weapons/biped_small/myrmidon/strategian.ron index 469837d423..ada61fae67 100644 --- a/assets/common/items/npc_weapons/biped_small/myrmidon/strategian.ron +++ b/assets/common/items/npc_weapons/biped_small/myrmidon/strategian.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Strategian Axe", - description: "", + legacy_name: "Strategian Axe", + legacy_description: "", kind: Tool(( kind: Axe, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/sahagin/sniper.ron b/assets/common/items/npc_weapons/biped_small/sahagin/sniper.ron index 3ca7e66ae0..22850de9b1 100644 --- a/assets/common/items/npc_weapons/biped_small/sahagin/sniper.ron +++ b/assets/common/items/npc_weapons/biped_small/sahagin/sniper.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sniper Bow", - description: "", + legacy_name: "Sniper Bow", + legacy_description: "", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/sahagin/sorcerer.ron b/assets/common/items/npc_weapons/biped_small/sahagin/sorcerer.ron index 868d844faa..aa8ba23754 100644 --- a/assets/common/items/npc_weapons/biped_small/sahagin/sorcerer.ron +++ b/assets/common/items/npc_weapons/biped_small/sahagin/sorcerer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sorcerer Staff", - description: "", + legacy_name: "Sorcerer Staff", + legacy_description: "", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/npc_weapons/biped_small/sahagin/spearman.ron b/assets/common/items/npc_weapons/biped_small/sahagin/spearman.ron index e97fc78e73..eccfa36326 100644 --- a/assets/common/items/npc_weapons/biped_small/sahagin/spearman.ron +++ b/assets/common/items/npc_weapons/biped_small/sahagin/spearman.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Spearman Spear", - description: "", + legacy_name: "Spearman Spear", + legacy_description: "", kind: Tool(( kind: Spear, hands: Two, diff --git a/assets/common/items/npc_weapons/bow/bipedlarge-velorite.ron b/assets/common/items/npc_weapons/bow/bipedlarge-velorite.ron index 4887d23adc..428a2dd7d6 100644 --- a/assets/common/items/npc_weapons/bow/bipedlarge-velorite.ron +++ b/assets/common/items/npc_weapons/bow/bipedlarge-velorite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Giant Velorite Bow", - description: "Infused with Velorite power.", + legacy_name: "Giant Velorite Bow", + legacy_description: "Infused with Velorite power.", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/npc_weapons/bow/saurok_bow.ron b/assets/common/items/npc_weapons/bow/saurok_bow.ron index ec871e33e3..c0dec88fee 100644 --- a/assets/common/items/npc_weapons/bow/saurok_bow.ron +++ b/assets/common/items/npc_weapons/bow/saurok_bow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Saurok bow", - description: "Placeholder", + legacy_name: "Saurok bow", + legacy_description: "Placeholder", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/bipedlarge-cultist.ron b/assets/common/items/npc_weapons/hammer/bipedlarge-cultist.ron index d5165d0cf7..68145757f8 100644 --- a/assets/common/items/npc_weapons/hammer/bipedlarge-cultist.ron +++ b/assets/common/items/npc_weapons/hammer/bipedlarge-cultist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Giant Cultist Warhammer", - description: "This belonged to an evil Cult Leader.", + legacy_name: "Giant Cultist Warhammer", + legacy_description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron b/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron index 225c804031..3db8cdc22d 100644 --- a/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cyclops Hammer", - description: "Placeholder", + legacy_name: "Cyclops Hammer", + legacy_description: "Placeholder", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/harvester_scythe.ron b/assets/common/items/npc_weapons/hammer/harvester_scythe.ron index fe0f943dd4..bc6ad15763 100644 --- a/assets/common/items/npc_weapons/hammer/harvester_scythe.ron +++ b/assets/common/items/npc_weapons/hammer/harvester_scythe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Harvester Sythe", - description: "Placeholder", + legacy_name: "Harvester Sythe", + legacy_description: "Placeholder", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/ogre_hammer.ron b/assets/common/items/npc_weapons/hammer/ogre_hammer.ron index 10a6ebef76..4c3da32f55 100644 --- a/assets/common/items/npc_weapons/hammer/ogre_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/ogre_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ogre Hammer", - description: "Placeholder", + legacy_name: "Ogre Hammer", + legacy_description: "Placeholder", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/oni_red_hammer.ron b/assets/common/items/npc_weapons/hammer/oni_red_hammer.ron index e70d51185a..3281a8733e 100644 --- a/assets/common/items/npc_weapons/hammer/oni_red_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/oni_red_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Red Oni Hammer", - description: "Placeholder", + legacy_name: "Red Oni Hammer", + legacy_description: "Placeholder", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/troll_hammer.ron b/assets/common/items/npc_weapons/hammer/troll_hammer.ron index 0e9b322a64..f4acc68f9b 100644 --- a/assets/common/items/npc_weapons/hammer/troll_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/troll_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Troll Hammer", - description: "Placeholder", + legacy_name: "Troll Hammer", + legacy_description: "Placeholder", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron b/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron index ef8cf4759d..6663a32f6e 100644 --- a/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wendigo Hammer", - description: "Placeholder", + legacy_name: "Wendigo Hammer", + legacy_description: "Placeholder", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/npc_weapons/hammer/yeti_hammer.ron b/assets/common/items/npc_weapons/hammer/yeti_hammer.ron index f7df89fbf7..4538a60927 100644 --- a/assets/common/items/npc_weapons/hammer/yeti_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/yeti_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Yeti Hammer", - description: "Placeholder", + legacy_name: "Yeti Hammer", + legacy_description: "Placeholder", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/staff/bipedlarge-cultist.ron b/assets/common/items/npc_weapons/staff/bipedlarge-cultist.ron index 8420f007c6..1f8d6aefff 100644 --- a/assets/common/items/npc_weapons/staff/bipedlarge-cultist.ron +++ b/assets/common/items/npc_weapons/staff/bipedlarge-cultist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Giant Cultist Staff", - description: "The fire gives off no heat.", + legacy_name: "Giant Cultist Staff", + legacy_description: "The fire gives off no heat.", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/npc_weapons/staff/mindflayer_staff.ron b/assets/common/items/npc_weapons/staff/mindflayer_staff.ron index 677a3b2d0e..d01f54172c 100644 --- a/assets/common/items/npc_weapons/staff/mindflayer_staff.ron +++ b/assets/common/items/npc_weapons/staff/mindflayer_staff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mindflayer Staff", - description: "Placeholder", + legacy_name: "Mindflayer Staff", + legacy_description: "Placeholder", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/npc_weapons/staff/ogre_staff.ron b/assets/common/items/npc_weapons/staff/ogre_staff.ron index 1c569d8f75..5049d03eeb 100644 --- a/assets/common/items/npc_weapons/staff/ogre_staff.ron +++ b/assets/common/items/npc_weapons/staff/ogre_staff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ogre Staff", - description: "Placeholder", + legacy_name: "Ogre Staff", + legacy_description: "Placeholder", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/npc_weapons/staff/saurok_staff.ron b/assets/common/items/npc_weapons/staff/saurok_staff.ron index 9210b2190d..b3e82a8480 100644 --- a/assets/common/items/npc_weapons/staff/saurok_staff.ron +++ b/assets/common/items/npc_weapons/staff/saurok_staff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Saurok Staff", - description: "Placeholder", + legacy_name: "Saurok Staff", + legacy_description: "Placeholder", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/npc_weapons/sword/adlet_elder_sword.ron b/assets/common/items/npc_weapons/sword/adlet_elder_sword.ron index 799bcca960..fc24a48650 100644 --- a/assets/common/items/npc_weapons/sword/adlet_elder_sword.ron +++ b/assets/common/items/npc_weapons/sword/adlet_elder_sword.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Adlet Elder Sword", - description: "Placeholder", + legacy_name: "Adlet Elder Sword", + legacy_description: "Placeholder", kind: Tool(( kind: Sword, hands: One, diff --git a/assets/common/items/npc_weapons/sword/bipedlarge-cultist.ron b/assets/common/items/npc_weapons/sword/bipedlarge-cultist.ron index 2031618e27..87e1183979 100644 --- a/assets/common/items/npc_weapons/sword/bipedlarge-cultist.ron +++ b/assets/common/items/npc_weapons/sword/bipedlarge-cultist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Giant Cultist Greatsword", - description: "This belonged to an evil Cult Leader.", + legacy_name: "Giant Cultist Greatsword", + legacy_description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/npc_weapons/sword/dullahan_sword.ron b/assets/common/items/npc_weapons/sword/dullahan_sword.ron index 6aa0350119..c2e84d28f0 100644 --- a/assets/common/items/npc_weapons/sword/dullahan_sword.ron +++ b/assets/common/items/npc_weapons/sword/dullahan_sword.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dullahan Sword", - description: "Placeholder", + legacy_name: "Dullahan Sword", + legacy_description: "Placeholder", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/npc_weapons/sword/pickaxe_velorite_sword.ron b/assets/common/items/npc_weapons/sword/pickaxe_velorite_sword.ron index 45463d5d82..8b18130bfc 100644 --- a/assets/common/items/npc_weapons/sword/pickaxe_velorite_sword.ron +++ b/assets/common/items/npc_weapons/sword/pickaxe_velorite_sword.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Pickaxe", - description: "", + legacy_name: "Velorite Pickaxe", + legacy_description: "", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/npc_weapons/sword/saurok_sword.ron b/assets/common/items/npc_weapons/sword/saurok_sword.ron index 14b426fccf..0137729b8d 100644 --- a/assets/common/items/npc_weapons/sword/saurok_sword.ron +++ b/assets/common/items/npc_weapons/sword/saurok_sword.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Saurok Sword", - description: "Placeholder", + legacy_name: "Saurok Sword", + legacy_description: "Placeholder", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/akhlut.ron b/assets/common/items/npc_weapons/unique/akhlut.ron index 852729098a..497a15edf0 100644 --- a/assets/common/items/npc_weapons/unique/akhlut.ron +++ b/assets/common/items/npc_weapons/unique/akhlut.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Med Basic", - description: "testing123", + legacy_name: "Quad Med Basic", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/antlion.ron b/assets/common/items/npc_weapons/unique/arthropods/antlion.ron index d0045a9852..9eab36d8f5 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/antlion.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/antlion.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Antlion", - description: "testing123", + legacy_name: "Antlion", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/blackwidow.ron b/assets/common/items/npc_weapons/unique/arthropods/blackwidow.ron index ae97ca4183..657e23949e 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/blackwidow.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/blackwidow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Black Widow", - description: "testing123", + legacy_name: "Black Widow", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/cavespider.ron b/assets/common/items/npc_weapons/unique/arthropods/cavespider.ron index 46daae9959..503ea0c27d 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/cavespider.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/cavespider.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cave Spider", - description: "testing123", + legacy_name: "Cave Spider", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/dagonite.ron b/assets/common/items/npc_weapons/unique/arthropods/dagonite.ron index 730f35b2e6..1d8bfe04b6 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/dagonite.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/dagonite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dagonite", - description: "testing123", + legacy_name: "Dagonite", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/hornbeetle.ron b/assets/common/items/npc_weapons/unique/arthropods/hornbeetle.ron index e89bd53ca4..a40c89dcd1 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/hornbeetle.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/hornbeetle.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Horn Beetle", - description: "testing123", + legacy_name: "Horn Beetle", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/leafbeetle.ron b/assets/common/items/npc_weapons/unique/arthropods/leafbeetle.ron index d5406414ab..06e881ac41 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/leafbeetle.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/leafbeetle.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Leaf Beetle", - description: "testing123", + legacy_name: "Leaf Beetle", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/mosscrawler.ron b/assets/common/items/npc_weapons/unique/arthropods/mosscrawler.ron index 0aa064be81..56f0b289fc 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/mosscrawler.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/mosscrawler.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Moss Crawler", - description: "testing123", + legacy_name: "Moss Crawler", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/tarantula.ron b/assets/common/items/npc_weapons/unique/arthropods/tarantula.ron index c01c86b3fa..ca5fade24d 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/tarantula.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/tarantula.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tarantula", - description: "testing123", + legacy_name: "Tarantula", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/arthropods/weevil.ron b/assets/common/items/npc_weapons/unique/arthropods/weevil.ron index 50d64e6c36..fca272b27c 100644 --- a/assets/common/items/npc_weapons/unique/arthropods/weevil.ron +++ b/assets/common/items/npc_weapons/unique/arthropods/weevil.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Weevil", - description: "testing123", + legacy_name: "Weevil", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/asp.ron b/assets/common/items/npc_weapons/unique/asp.ron index e95f170f64..d681e7d93f 100644 --- a/assets/common/items/npc_weapons/unique/asp.ron +++ b/assets/common/items/npc_weapons/unique/asp.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Asp", - description: "testing123", + legacy_name: "Asp", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/basilisk.ron b/assets/common/items/npc_weapons/unique/basilisk.ron index aa61b5b3e5..6c3e3af031 100644 --- a/assets/common/items/npc_weapons/unique/basilisk.ron +++ b/assets/common/items/npc_weapons/unique/basilisk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Basilisk", - description: "testing123", + legacy_name: "Basilisk", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/beast_claws.ron b/assets/common/items/npc_weapons/unique/beast_claws.ron index 719f66fe92..fd0a6f646f 100644 --- a/assets/common/items/npc_weapons/unique/beast_claws.ron +++ b/assets/common/items/npc_weapons/unique/beast_claws.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Beast Claws", - description: "Was attached to a beast.", + legacy_name: "Beast Claws", + legacy_description: "Was attached to a beast.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/birdlargebasic.ron b/assets/common/items/npc_weapons/unique/birdlargebasic.ron index 4544108723..e94d48df75 100644 --- a/assets/common/items/npc_weapons/unique/birdlargebasic.ron +++ b/assets/common/items/npc_weapons/unique/birdlargebasic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bird Large Basic", - description: "testing123", + legacy_name: "Bird Large Basic", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/birdlargebreathe.ron b/assets/common/items/npc_weapons/unique/birdlargebreathe.ron index 2e9090f65d..8a5fabe2de 100644 --- a/assets/common/items/npc_weapons/unique/birdlargebreathe.ron +++ b/assets/common/items/npc_weapons/unique/birdlargebreathe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bird Large Breathe", - description: "testing123", + legacy_name: "Bird Large Breathe", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/birdlargefire.ron b/assets/common/items/npc_weapons/unique/birdlargefire.ron index 79e4732dcd..db3ee75dd4 100644 --- a/assets/common/items/npc_weapons/unique/birdlargefire.ron +++ b/assets/common/items/npc_weapons/unique/birdlargefire.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bird Large Fire", - description: "Fiery touch of a mighty aerial beast", + legacy_name: "Bird Large Fire", + legacy_description: "Fiery touch of a mighty aerial beast", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/birdmediumbasic.ron b/assets/common/items/npc_weapons/unique/birdmediumbasic.ron index 042f09df36..b5b487bf4c 100644 --- a/assets/common/items/npc_weapons/unique/birdmediumbasic.ron +++ b/assets/common/items/npc_weapons/unique/birdmediumbasic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bird Medium Basic", - description: "BiteBiteBite!!! FightFightFight!!!", + legacy_name: "Bird Medium Basic", + legacy_description: "BiteBiteBite!!! FightFightFight!!!", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/bushly.ron b/assets/common/items/npc_weapons/unique/bushly.ron index c1e3be7a52..ed847558b1 100644 --- a/assets/common/items/npc_weapons/unique/bushly.ron +++ b/assets/common/items/npc_weapons/unique/bushly.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Starter Grace", - description: "Fret not, newbies shant cry.", + legacy_name: "Starter Grace", + legacy_description: "Fret not, newbies shant cry.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/cardinal.ron b/assets/common/items/npc_weapons/unique/cardinal.ron index 1f11252f8d..2c0dfa6e45 100644 --- a/assets/common/items/npc_weapons/unique/cardinal.ron +++ b/assets/common/items/npc_weapons/unique/cardinal.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Caduceus", - description: "The snakes seem to be alive", + legacy_name: "Caduceus", + legacy_description: "The snakes seem to be alive", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/clay_golem_fist.ron b/assets/common/items/npc_weapons/unique/clay_golem_fist.ron index 3afe9d4898..2497ccdc36 100644 --- a/assets/common/items/npc_weapons/unique/clay_golem_fist.ron +++ b/assets/common/items/npc_weapons/unique/clay_golem_fist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clay Golem Fists", - description: "Yeet.", + legacy_name: "Clay Golem Fists", + legacy_description: "Yeet.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/clockwork.ron b/assets/common/items/npc_weapons/unique/clockwork.ron index bd8eb227d1..a8c18ef05f 100644 --- a/assets/common/items/npc_weapons/unique/clockwork.ron +++ b/assets/common/items/npc_weapons/unique/clockwork.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Clockwork", - description: "testing123", + legacy_name: "Clockwork", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/cloudwyvern.ron b/assets/common/items/npc_weapons/unique/cloudwyvern.ron index 44e9712421..04c0c72f23 100644 --- a/assets/common/items/npc_weapons/unique/cloudwyvern.ron +++ b/assets/common/items/npc_weapons/unique/cloudwyvern.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cloud Wyvern", - description: "testing123", + legacy_name: "Cloud Wyvern", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/coral_golem_fist.ron b/assets/common/items/npc_weapons/unique/coral_golem_fist.ron index e35e86395b..d457ab0de1 100644 --- a/assets/common/items/npc_weapons/unique/coral_golem_fist.ron +++ b/assets/common/items/npc_weapons/unique/coral_golem_fist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Coral Golem Fists", - description: "Yeet", + legacy_name: "Coral Golem Fists", + legacy_description: "Yeet", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/crab_pincer.ron b/assets/common/items/npc_weapons/unique/crab_pincer.ron index 83b24cc10f..160b75ef83 100644 --- a/assets/common/items/npc_weapons/unique/crab_pincer.ron +++ b/assets/common/items/npc_weapons/unique/crab_pincer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Crab Pincer", - description: "testing123", + legacy_name: "Crab Pincer", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/dagon.ron b/assets/common/items/npc_weapons/unique/dagon.ron index 232a24d81e..8c53c43697 100644 --- a/assets/common/items/npc_weapons/unique/dagon.ron +++ b/assets/common/items/npc_weapons/unique/dagon.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dagon Kit", - description: "Ocean Power!", + legacy_name: "Dagon Kit", + legacy_description: "Ocean Power!", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/deadwood.ron b/assets/common/items/npc_weapons/unique/deadwood.ron index 38682b24db..b7cbbca7aa 100644 --- a/assets/common/items/npc_weapons/unique/deadwood.ron +++ b/assets/common/items/npc_weapons/unique/deadwood.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Deadwood", - description: "testing123", + legacy_name: "Deadwood", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/driggle.ron b/assets/common/items/npc_weapons/unique/driggle.ron index 6602684414..9d07bc34f1 100644 --- a/assets/common/items/npc_weapons/unique/driggle.ron +++ b/assets/common/items/npc_weapons/unique/driggle.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Starter Grace", - description: "Fret not, newbies shant cry.", + legacy_name: "Starter Grace", + legacy_description: "Fret not, newbies shant cry.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/emberfly.ron b/assets/common/items/npc_weapons/unique/emberfly.ron index 1bbcf9ccd2..6547384de4 100644 --- a/assets/common/items/npc_weapons/unique/emberfly.ron +++ b/assets/common/items/npc_weapons/unique/emberfly.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Starter Grace", - description: "Fret not, newbies shant cry.", + legacy_name: "Starter Grace", + legacy_description: "Fret not, newbies shant cry.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/fiery_tornado.ron b/assets/common/items/npc_weapons/unique/fiery_tornado.ron index 5e769c0247..15fc3fc4e7 100644 --- a/assets/common/items/npc_weapons/unique/fiery_tornado.ron +++ b/assets/common/items/npc_weapons/unique/fiery_tornado.ron @@ -1,6 +1,6 @@ ItemDef( - name: "FieryTornado", - description: "Fiery Tornado weapon", + legacy_name: "FieryTornado", + legacy_description: "Fiery Tornado weapon", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/flamekeeper_staff.ron b/assets/common/items/npc_weapons/unique/flamekeeper_staff.ron index 666fe99673..1108077005 100644 --- a/assets/common/items/npc_weapons/unique/flamekeeper_staff.ron +++ b/assets/common/items/npc_weapons/unique/flamekeeper_staff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamekeeper Staff", - description: "Flamekeeper Staff", + legacy_name: "Flamekeeper Staff", + legacy_description: "Flamekeeper Staff", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/flamethrower.ron b/assets/common/items/npc_weapons/unique/flamethrower.ron index a6a0daca1f..e38b6f9ca6 100644 --- a/assets/common/items/npc_weapons/unique/flamethrower.ron +++ b/assets/common/items/npc_weapons/unique/flamethrower.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flamethrower", - description: "Throwing Flames", + legacy_name: "Flamethrower", + legacy_description: "Throwing Flames", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/flamewyvern.ron b/assets/common/items/npc_weapons/unique/flamewyvern.ron index a7484c425d..121805e4a4 100644 --- a/assets/common/items/npc_weapons/unique/flamewyvern.ron +++ b/assets/common/items/npc_weapons/unique/flamewyvern.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flame Wyvern", - description: "testing123", + legacy_name: "Flame Wyvern", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/frostfang.ron b/assets/common/items/npc_weapons/unique/frostfang.ron index 5cdb52e006..fab3c9bc89 100644 --- a/assets/common/items/npc_weapons/unique/frostfang.ron +++ b/assets/common/items/npc_weapons/unique/frostfang.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frostfang", - description: "testing123", + legacy_name: "Frostfang", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/frostwyvern.ron b/assets/common/items/npc_weapons/unique/frostwyvern.ron index 803bd66998..fb6ddc3d2f 100644 --- a/assets/common/items/npc_weapons/unique/frostwyvern.ron +++ b/assets/common/items/npc_weapons/unique/frostwyvern.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frost Wyvern", - description: "testing123", + legacy_name: "Frost Wyvern", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/haniwa_sentry.ron b/assets/common/items/npc_weapons/unique/haniwa_sentry.ron index 36c72bf0ec..69955ec568 100644 --- a/assets/common/items/npc_weapons/unique/haniwa_sentry.ron +++ b/assets/common/items/npc_weapons/unique/haniwa_sentry.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Haniwa Sentry", - description: "Rotating turret weapon", + legacy_name: "Haniwa Sentry", + legacy_description: "Rotating turret weapon", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/hermit_alligator.ron b/assets/common/items/npc_weapons/unique/hermit_alligator.ron index 911c49fed6..584d5f9085 100644 --- a/assets/common/items/npc_weapons/unique/hermit_alligator.ron +++ b/assets/common/items/npc_weapons/unique/hermit_alligator.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hermit Alligator Teeth", - description: "Grrr!", + legacy_name: "Hermit Alligator Teeth", + legacy_description: "Grrr!", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/husk.ron b/assets/common/items/npc_weapons/unique/husk.ron index 25d71565d4..8de3d046f4 100644 --- a/assets/common/items/npc_weapons/unique/husk.ron +++ b/assets/common/items/npc_weapons/unique/husk.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk", - description: "testing123", + legacy_name: "Husk", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/husk_brute.ron b/assets/common/items/npc_weapons/unique/husk_brute.ron index 79065777c3..7ed05973b8 100644 --- a/assets/common/items/npc_weapons/unique/husk_brute.ron +++ b/assets/common/items/npc_weapons/unique/husk_brute.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Husk Brute", - description: "testing123", + legacy_name: "Husk Brute", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/icedrake.ron b/assets/common/items/npc_weapons/unique/icedrake.ron index b42af159fa..c1d1de0e7f 100644 --- a/assets/common/items/npc_weapons/unique/icedrake.ron +++ b/assets/common/items/npc_weapons/unique/icedrake.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Ice Drake", - description: "testing123", + legacy_name: "Ice Drake", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/irrwurz.ron b/assets/common/items/npc_weapons/unique/irrwurz.ron index 71cae78fd3..147b965660 100644 --- a/assets/common/items/npc_weapons/unique/irrwurz.ron +++ b/assets/common/items/npc_weapons/unique/irrwurz.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Starter Grace", - description: "Fret not, newbies shant cry.", + legacy_name: "Starter Grace", + legacy_description: "Fret not, newbies shant cry.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/maneater.ron b/assets/common/items/npc_weapons/unique/maneater.ron index 78a318ea69..d19f3cc2d6 100644 --- a/assets/common/items/npc_weapons/unique/maneater.ron +++ b/assets/common/items/npc_weapons/unique/maneater.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Maneater", - description: "testing123", + legacy_name: "Maneater", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/mossysnail.ron b/assets/common/items/npc_weapons/unique/mossysnail.ron index 15e83d65b6..6980dad168 100644 --- a/assets/common/items/npc_weapons/unique/mossysnail.ron +++ b/assets/common/items/npc_weapons/unique/mossysnail.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Starter Grace", - description: "Fret not, newbies shant cry.", + legacy_name: "Starter Grace", + legacy_description: "Fret not, newbies shant cry.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/organ.ron b/assets/common/items/npc_weapons/unique/organ.ron index 457d5f6b5d..62526c081d 100644 --- a/assets/common/items/npc_weapons/unique/organ.ron +++ b/assets/common/items/npc_weapons/unique/organ.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Organ Aura", - description: "Motivational Tune", + legacy_name: "Organ Aura", + legacy_description: "Motivational Tune", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadlowbasic.ron b/assets/common/items/npc_weapons/unique/quadlowbasic.ron index 08c3565d9d..881ddea4c9 100644 --- a/assets/common/items/npc_weapons/unique/quadlowbasic.ron +++ b/assets/common/items/npc_weapons/unique/quadlowbasic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Low Basic", - description: "testing123", + legacy_name: "Quad Low Basic", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadlowbeam.ron b/assets/common/items/npc_weapons/unique/quadlowbeam.ron index 4cbd700a87..7de891448f 100644 --- a/assets/common/items/npc_weapons/unique/quadlowbeam.ron +++ b/assets/common/items/npc_weapons/unique/quadlowbeam.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Small Beam", - description: "testing123", + legacy_name: "Quad Small Beam", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadlowbreathe.ron b/assets/common/items/npc_weapons/unique/quadlowbreathe.ron index d0e2e3b46a..cddeaebc90 100644 --- a/assets/common/items/npc_weapons/unique/quadlowbreathe.ron +++ b/assets/common/items/npc_weapons/unique/quadlowbreathe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Low Breathe", - description: "testing123", + legacy_name: "Quad Low Breathe", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadlowquick.ron b/assets/common/items/npc_weapons/unique/quadlowquick.ron index 778904d8b8..58a3c95752 100644 --- a/assets/common/items/npc_weapons/unique/quadlowquick.ron +++ b/assets/common/items/npc_weapons/unique/quadlowquick.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Low Quick", - description: "testing123", + legacy_name: "Quad Low Quick", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadlowtail.ron b/assets/common/items/npc_weapons/unique/quadlowtail.ron index 2058ea0db5..bbe2642eea 100644 --- a/assets/common/items/npc_weapons/unique/quadlowtail.ron +++ b/assets/common/items/npc_weapons/unique/quadlowtail.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Low Tail", - description: "testing123", + legacy_name: "Quad Low Tail", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadmedbasic.ron b/assets/common/items/npc_weapons/unique/quadmedbasic.ron index 1fd771db46..56f3cf3c8a 100644 --- a/assets/common/items/npc_weapons/unique/quadmedbasic.ron +++ b/assets/common/items/npc_weapons/unique/quadmedbasic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Med Basic", - description: "testing123", + legacy_name: "Quad Med Basic", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadmedbasicgentle.ron b/assets/common/items/npc_weapons/unique/quadmedbasicgentle.ron index caea8d0e56..fa889c4b51 100644 --- a/assets/common/items/npc_weapons/unique/quadmedbasicgentle.ron +++ b/assets/common/items/npc_weapons/unique/quadmedbasicgentle.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Med Basic", - description: "testing123", + legacy_name: "Quad Med Basic", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadmedcharge.ron b/assets/common/items/npc_weapons/unique/quadmedcharge.ron index 5136da4e74..108125ec39 100644 --- a/assets/common/items/npc_weapons/unique/quadmedcharge.ron +++ b/assets/common/items/npc_weapons/unique/quadmedcharge.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Med Charge", - description: "testing123", + legacy_name: "Quad Med Charge", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadmedhoof.ron b/assets/common/items/npc_weapons/unique/quadmedhoof.ron index 90155be699..5d6a41183e 100644 --- a/assets/common/items/npc_weapons/unique/quadmedhoof.ron +++ b/assets/common/items/npc_weapons/unique/quadmedhoof.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Med Hoof", - description: "testing123", + legacy_name: "Quad Med Hoof", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadmedjump.ron b/assets/common/items/npc_weapons/unique/quadmedjump.ron index df90e38b28..8d44003988 100644 --- a/assets/common/items/npc_weapons/unique/quadmedjump.ron +++ b/assets/common/items/npc_weapons/unique/quadmedjump.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Med Jump", - description: "testing123", + legacy_name: "Quad Med Jump", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadmedquick.ron b/assets/common/items/npc_weapons/unique/quadmedquick.ron index 0c06f30c7c..37e25021f8 100644 --- a/assets/common/items/npc_weapons/unique/quadmedquick.ron +++ b/assets/common/items/npc_weapons/unique/quadmedquick.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Med Quick", - description: "testing123", + legacy_name: "Quad Med Quick", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/quadsmallbasic.ron b/assets/common/items/npc_weapons/unique/quadsmallbasic.ron index a6250a0273..f0e66ae730 100644 --- a/assets/common/items/npc_weapons/unique/quadsmallbasic.ron +++ b/assets/common/items/npc_weapons/unique/quadsmallbasic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Quad Small Basic", - description: "testing123", + legacy_name: "Quad Small Basic", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/roshwalr.ron b/assets/common/items/npc_weapons/unique/roshwalr.ron index b92a636498..e1e57309e3 100644 --- a/assets/common/items/npc_weapons/unique/roshwalr.ron +++ b/assets/common/items/npc_weapons/unique/roshwalr.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Roshwalr", - description: "testing123", + legacy_name: "Roshwalr", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/sea_bishop_sceptre.ron b/assets/common/items/npc_weapons/unique/sea_bishop_sceptre.ron index 70b0fc93e5..0cd96a85a5 100644 --- a/assets/common/items/npc_weapons/unique/sea_bishop_sceptre.ron +++ b/assets/common/items/npc_weapons/unique/sea_bishop_sceptre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sea Bishop Sceptre", - description: "Hits like a wave.", + legacy_name: "Sea Bishop Sceptre", + legacy_description: "Hits like a wave.", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/seawyvern.ron b/assets/common/items/npc_weapons/unique/seawyvern.ron index 19f01547b3..ac87d9227f 100644 --- a/assets/common/items/npc_weapons/unique/seawyvern.ron +++ b/assets/common/items/npc_weapons/unique/seawyvern.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sea Wyvern", - description: "testing123", + legacy_name: "Sea Wyvern", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/simpleflyingbasic.ron b/assets/common/items/npc_weapons/unique/simpleflyingbasic.ron index 0504795ceb..ddf9042336 100644 --- a/assets/common/items/npc_weapons/unique/simpleflyingbasic.ron +++ b/assets/common/items/npc_weapons/unique/simpleflyingbasic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Simple Flying Melee", - description: "I believe I can fly!!!!!", + legacy_name: "Simple Flying Melee", + legacy_description: "I believe I can fly!!!!!", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/stone_golems_fist.ron b/assets/common/items/npc_weapons/unique/stone_golems_fist.ron index 2583c19866..1834a3b4d5 100644 --- a/assets/common/items/npc_weapons/unique/stone_golems_fist.ron +++ b/assets/common/items/npc_weapons/unique/stone_golems_fist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Stone Golem's Fist", - description: "Was attached to a mighty stone golem.", + legacy_name: "Stone Golem's Fist", + legacy_description: "Was attached to a mighty stone golem.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/theropodbasic.ron b/assets/common/items/npc_weapons/unique/theropodbasic.ron index dcb354cc77..7061742e10 100644 --- a/assets/common/items/npc_weapons/unique/theropodbasic.ron +++ b/assets/common/items/npc_weapons/unique/theropodbasic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Theropod Basic", - description: "testing123", + legacy_name: "Theropod Basic", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/theropodbird.ron b/assets/common/items/npc_weapons/unique/theropodbird.ron index 84f51ad72d..82ffcd4abc 100644 --- a/assets/common/items/npc_weapons/unique/theropodbird.ron +++ b/assets/common/items/npc_weapons/unique/theropodbird.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Theropod Bird", - description: "testing123", + legacy_name: "Theropod Bird", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/theropodcharge.ron b/assets/common/items/npc_weapons/unique/theropodcharge.ron index 0f7eaf348c..dd53e92c0e 100644 --- a/assets/common/items/npc_weapons/unique/theropodcharge.ron +++ b/assets/common/items/npc_weapons/unique/theropodcharge.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Theropod Charge", - description: "testing123", + legacy_name: "Theropod Charge", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/theropodsmall.ron b/assets/common/items/npc_weapons/unique/theropodsmall.ron index 7fd355bec9..ee7cad2faf 100644 --- a/assets/common/items/npc_weapons/unique/theropodsmall.ron +++ b/assets/common/items/npc_weapons/unique/theropodsmall.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Theropod Small", - description: "testing123", + legacy_name: "Theropod Small", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/tidal_claws.ron b/assets/common/items/npc_weapons/unique/tidal_claws.ron index 9ca5e5ec18..ecba1a2ec0 100644 --- a/assets/common/items/npc_weapons/unique/tidal_claws.ron +++ b/assets/common/items/npc_weapons/unique/tidal_claws.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tidal Claws", - description: "Snip snap", + legacy_name: "Tidal Claws", + legacy_description: "Snip snap", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/tidal_totem.ron b/assets/common/items/npc_weapons/unique/tidal_totem.ron index 796c6fb52d..032b829c7b 100644 --- a/assets/common/items/npc_weapons/unique/tidal_totem.ron +++ b/assets/common/items/npc_weapons/unique/tidal_totem.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tidal Totem", - description: "Yeet", + legacy_name: "Tidal Totem", + legacy_description: "Yeet", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/tornado.ron b/assets/common/items/npc_weapons/unique/tornado.ron index 711780fdaf..1d3c97eafe 100644 --- a/assets/common/items/npc_weapons/unique/tornado.ron +++ b/assets/common/items/npc_weapons/unique/tornado.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tornado", - description: "Tornado weapon", + legacy_name: "Tornado", + legacy_description: "Tornado weapon", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/treantsapling.ron b/assets/common/items/npc_weapons/unique/treantsapling.ron index 7f2cfa9482..9accfd6096 100644 --- a/assets/common/items/npc_weapons/unique/treantsapling.ron +++ b/assets/common/items/npc_weapons/unique/treantsapling.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Starter Grace", - description: "Fret not, newbies shant cry.", + legacy_name: "Starter Grace", + legacy_description: "Fret not, newbies shant cry.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/turret.ron b/assets/common/items/npc_weapons/unique/turret.ron index ba14895e67..02abe1edb5 100644 --- a/assets/common/items/npc_weapons/unique/turret.ron +++ b/assets/common/items/npc_weapons/unique/turret.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Turret", - description: "Turret weapon", + legacy_name: "Turret", + legacy_description: "Turret weapon", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/tursus_claws.ron b/assets/common/items/npc_weapons/unique/tursus_claws.ron index d77443a3b0..c5798669f4 100644 --- a/assets/common/items/npc_weapons/unique/tursus_claws.ron +++ b/assets/common/items/npc_weapons/unique/tursus_claws.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Tursus Claws", - description: "Was attached to a beast.", + legacy_name: "Tursus Claws", + legacy_description: "Was attached to a beast.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/wealdwyvern.ron b/assets/common/items/npc_weapons/unique/wealdwyvern.ron index b8a63cb345..c95badbce4 100644 --- a/assets/common/items/npc_weapons/unique/wealdwyvern.ron +++ b/assets/common/items/npc_weapons/unique/wealdwyvern.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Weald Wyvern", - description: "testing123", + legacy_name: "Weald Wyvern", + legacy_description: "testing123", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/wendigo_magic.ron b/assets/common/items/npc_weapons/unique/wendigo_magic.ron index 9ad5427922..753242d4e0 100644 --- a/assets/common/items/npc_weapons/unique/wendigo_magic.ron +++ b/assets/common/items/npc_weapons/unique/wendigo_magic.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wendigo Magic", - description: "spook.", + legacy_name: "Wendigo Magic", + legacy_description: "spook.", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/npc_weapons/unique/wood_golem_fist.ron b/assets/common/items/npc_weapons/unique/wood_golem_fist.ron index 111766d4ab..198143e5cf 100644 --- a/assets/common/items/npc_weapons/unique/wood_golem_fist.ron +++ b/assets/common/items/npc_weapons/unique/wood_golem_fist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wood Golem Fists", - description: "Yeet", + legacy_name: "Wood Golem Fists", + legacy_description: "Yeet", kind: Tool(( kind: Natural, hands: Two, diff --git a/assets/common/items/tag_examples/cultist.ron b/assets/common/items/tag_examples/cultist.ron index a2d33d9fa4..2f3424b7c8 100644 --- a/assets/common/items/tag_examples/cultist.ron +++ b/assets/common/items/tag_examples/cultist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Anything related to cultists", - description: "These items are a little creepy.", + legacy_name: "Anything related to cultists", + legacy_description: "These items are a little creepy.", kind: TagExamples( item_ids: [ "common.items.armor.cultist.belt", diff --git a/assets/common/items/tag_examples/gnarling.ron b/assets/common/items/tag_examples/gnarling.ron index 3089df840c..a112befa77 100644 --- a/assets/common/items/tag_examples/gnarling.ron +++ b/assets/common/items/tag_examples/gnarling.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Attire of the Gnarling tribes", - description: "Worn by Gnarlings and their Chieftains.", + legacy_name: "Attire of the Gnarling tribes", + legacy_description: "Worn by Gnarlings and their Chieftains.", kind: TagExamples( item_ids: [ "common.items.armor.misc.head.gnarling_mask", diff --git a/assets/common/items/testing/test_bag_18_slot.ron b/assets/common/items/testing/test_bag_18_slot.ron index 3bf0e174cd..927d158f7e 100644 --- a/assets/common/items/testing/test_bag_18_slot.ron +++ b/assets/common/items/testing/test_bag_18_slot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Test 18 slot bag", - description: "Used for unit tests do not delete", + legacy_name: "Test 18 slot bag", + legacy_description: "Used for unit tests do not delete", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/testing/test_bag_9_slot.ron b/assets/common/items/testing/test_bag_9_slot.ron index de1a6f9e66..7170c12c65 100644 --- a/assets/common/items/testing/test_bag_9_slot.ron +++ b/assets/common/items/testing/test_bag_9_slot.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Test 9 slot bag", - description: "Used for unit tests do not delete", + legacy_name: "Test 9 slot bag", + legacy_description: "Used for unit tests do not delete", kind: Armor(( kind: Bag, stats: Direct(()), diff --git a/assets/common/items/testing/test_boots.ron b/assets/common/items/testing/test_boots.ron index 04d67fa4b9..de0b397ff1 100644 --- a/assets/common/items/testing/test_boots.ron +++ b/assets/common/items/testing/test_boots.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Testing Boots", - description: "Hopefully this test doesn't break!", + legacy_name: "Testing Boots", + legacy_description: "Hopefully this test doesn't break!", kind: Armor(( kind: Foot, stats: Direct(()), diff --git a/assets/common/items/tool/craftsman_hammer.ron b/assets/common/items/tool/craftsman_hammer.ron index 9d6ff1c9bd..609eeb9434 100644 --- a/assets/common/items/tool/craftsman_hammer.ron +++ b/assets/common/items/tool/craftsman_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Craftsman Hammer", - description: "Used to craft various items.", + legacy_name: "Craftsman Hammer", + legacy_description: "Used to craft various items.", kind: Tool(( kind: Hammer, hands: One, diff --git a/assets/common/items/tool/instruments/double_bass.ron b/assets/common/items/tool/instruments/double_bass.ron index b758ae49e5..dad0a27100 100644 --- a/assets/common/items/tool/instruments/double_bass.ron +++ b/assets/common/items/tool/instruments/double_bass.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Double Bass", - description: "Wooden Bass.", + legacy_name: "Double Bass", + legacy_description: "Wooden Bass.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/flute.ron b/assets/common/items/tool/instruments/flute.ron index 63ce004b50..8bc58532f1 100644 --- a/assets/common/items/tool/instruments/flute.ron +++ b/assets/common/items/tool/instruments/flute.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flute", - description: "Wooden Flute.", + legacy_name: "Flute", + legacy_description: "Wooden Flute.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/glass_flute.ron b/assets/common/items/tool/instruments/glass_flute.ron index e7f805ccc2..9eaefed1c8 100644 --- a/assets/common/items/tool/instruments/glass_flute.ron +++ b/assets/common/items/tool/instruments/glass_flute.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Glass Flute", - description: "What's the Cardinal doing with it?", + legacy_name: "Glass Flute", + legacy_description: "What's the Cardinal doing with it?", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/guitar.ron b/assets/common/items/tool/instruments/guitar.ron index de0ea6a228..a51eecaf6a 100644 --- a/assets/common/items/tool/instruments/guitar.ron +++ b/assets/common/items/tool/instruments/guitar.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Guitar", - description: "Wooden Guitar.", + legacy_name: "Guitar", + legacy_description: "Wooden Guitar.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/guitar_dark.ron b/assets/common/items/tool/instruments/guitar_dark.ron index 2d17889bcd..e0a35a2f47 100644 --- a/assets/common/items/tool/instruments/guitar_dark.ron +++ b/assets/common/items/tool/instruments/guitar_dark.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Dark Guitar", - description: "Sounds edgy.", + legacy_name: "Dark Guitar", + legacy_description: "Sounds edgy.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/icy_talharpa.ron b/assets/common/items/tool/instruments/icy_talharpa.ron index 3d76b880f6..ba6c01a092 100644 --- a/assets/common/items/tool/instruments/icy_talharpa.ron +++ b/assets/common/items/tool/instruments/icy_talharpa.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Icy Talharpa", - description: "Icy Talharpa.", + legacy_name: "Icy Talharpa", + legacy_description: "Icy Talharpa.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/kalimba.ron b/assets/common/items/tool/instruments/kalimba.ron index 6a45dd77d2..29f66061bf 100644 --- a/assets/common/items/tool/instruments/kalimba.ron +++ b/assets/common/items/tool/instruments/kalimba.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Kalimba", - description: "Wooden Kalimba.", + legacy_name: "Kalimba", + legacy_description: "Wooden Kalimba.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/lute.ron b/assets/common/items/tool/instruments/lute.ron index f5564228b9..9de216cbbc 100644 --- a/assets/common/items/tool/instruments/lute.ron +++ b/assets/common/items/tool/instruments/lute.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Lute", - description: "Wooden Lute.", + legacy_name: "Lute", + legacy_description: "Wooden Lute.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/lyre.ron b/assets/common/items/tool/instruments/lyre.ron index 1da28fd894..c9cc7a14f7 100644 --- a/assets/common/items/tool/instruments/lyre.ron +++ b/assets/common/items/tool/instruments/lyre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Lyre", - description: "Wooden Lyre.", + legacy_name: "Lyre", + legacy_description: "Wooden Lyre.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/melodica.ron b/assets/common/items/tool/instruments/melodica.ron index 94fbbdbda3..84cf081475 100644 --- a/assets/common/items/tool/instruments/melodica.ron +++ b/assets/common/items/tool/instruments/melodica.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Melodica", - description: "Wooden Melodica.", + legacy_name: "Melodica", + legacy_description: "Wooden Melodica.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/sitar.ron b/assets/common/items/tool/instruments/sitar.ron index 28f4bdccf7..338a6c7889 100644 --- a/assets/common/items/tool/instruments/sitar.ron +++ b/assets/common/items/tool/instruments/sitar.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sitar", - description: "Wooden Sitar.", + legacy_name: "Sitar", + legacy_description: "Wooden Sitar.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/washboard.ron b/assets/common/items/tool/instruments/washboard.ron index cbb14d8cec..1607cdc7e8 100644 --- a/assets/common/items/tool/instruments/washboard.ron +++ b/assets/common/items/tool/instruments/washboard.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Washboard", - description: "Washboard.", + legacy_name: "Washboard", + legacy_description: "Washboard.", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/instruments/wildskin_drum.ron b/assets/common/items/tool/instruments/wildskin_drum.ron index b897288577..5418b5c9a8 100644 --- a/assets/common/items/tool/instruments/wildskin_drum.ron +++ b/assets/common/items/tool/instruments/wildskin_drum.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Wildskin Drum", - description: "one, two, you know what to do!", + legacy_name: "Wildskin Drum", + legacy_description: "one, two, you know what to do!", kind: Tool(( kind: Instrument, hands: Two, diff --git a/assets/common/items/tool/pickaxe_steel.ron b/assets/common/items/tool/pickaxe_steel.ron index 1009f643ee..ce027ff25f 100644 --- a/assets/common/items/tool/pickaxe_steel.ron +++ b/assets/common/items/tool/pickaxe_steel.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Steel Pickaxe", - description: "Allows for swift excavation of any ore in sight.", + legacy_name: "Steel Pickaxe", + legacy_description: "Allows for swift excavation of any ore in sight.", kind: Tool(( kind: Pick, hands: Two, diff --git a/assets/common/items/tool/pickaxe_stone.ron b/assets/common/items/tool/pickaxe_stone.ron index ae27c3cffc..f80d70a039 100644 --- a/assets/common/items/tool/pickaxe_stone.ron +++ b/assets/common/items/tool/pickaxe_stone.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Stone Pickaxe", - description: "Strike the earth!", + legacy_name: "Stone Pickaxe", + legacy_description: "Strike the earth!", kind: Tool(( kind: Pick, hands: Two, diff --git a/assets/common/items/tool/pickaxe_velorite.ron b/assets/common/items/tool/pickaxe_velorite.ron index 6ab7ce9bf7..303f2d2fca 100644 --- a/assets/common/items/tool/pickaxe_velorite.ron +++ b/assets/common/items/tool/pickaxe_velorite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Pickaxe", - description: "Allows for swift excavation of any ore in sight.", + legacy_name: "Velorite Pickaxe", + legacy_description: "Allows for swift excavation of any ore in sight.", kind: Tool(( kind: Pick, hands: Two, diff --git a/assets/common/items/utility/bomb.ron b/assets/common/items/utility/bomb.ron index 0fc5690ba0..a33ef76be0 100644 --- a/assets/common/items/utility/bomb.ron +++ b/assets/common/items/utility/bomb.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Bomb", - description: "A highly explosive device, demolitionists adore them!", + legacy_name: "Bomb", + legacy_description: "A highly explosive device, demolitionists adore them!", kind: Throwable( kind: Bomb, ), diff --git a/assets/common/items/utility/coins.ron b/assets/common/items/utility/coins.ron index fa4dbc14d0..61cb50ab87 100644 --- a/assets/common/items/utility/coins.ron +++ b/assets/common/items/utility/coins.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Coins", - description: "Precious coins, can be exchanged for goods and services.", + legacy_name: "Coins", + legacy_description: "Precious coins, can be exchanged for goods and services.", kind: Utility( kind: Coins, ), diff --git a/assets/common/items/utility/collar.ron b/assets/common/items/utility/collar.ron index 51d34c8c93..365b2c10ec 100644 --- a/assets/common/items/utility/collar.ron +++ b/assets/common/items/utility/collar.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Collar", - description: "Tames neutral wild animals within 5 blocks", + legacy_name: "Collar", + legacy_description: "Tames neutral wild animals within 5 blocks", kind: Utility( kind: Collar, ), diff --git a/assets/common/items/utility/firework_blue.ron b/assets/common/items/utility/firework_blue.ron index 36153323a2..49f5503a65 100644 --- a/assets/common/items/utility/firework_blue.ron +++ b/assets/common/items/utility/firework_blue.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Firework Blue", - description: "Recommended clearance: 42 chonks", + legacy_name: "Firework Blue", + legacy_description: "Recommended clearance: 42 chonks", kind: Throwable( kind: Firework(Blue), ), diff --git a/assets/common/items/utility/firework_green.ron b/assets/common/items/utility/firework_green.ron index a30592e845..51b0653570 100644 --- a/assets/common/items/utility/firework_green.ron +++ b/assets/common/items/utility/firework_green.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Firework Green", - description: "Watch out for trees.", + legacy_name: "Firework Green", + legacy_description: "Watch out for trees.", kind: Throwable( kind: Firework(Green), ), diff --git a/assets/common/items/utility/firework_purple.ron b/assets/common/items/utility/firework_purple.ron index 662739b961..9c5764a305 100644 --- a/assets/common/items/utility/firework_purple.ron +++ b/assets/common/items/utility/firework_purple.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Firework Purple", - description: "Cult favourite.", + legacy_name: "Firework Purple", + legacy_description: "Cult favourite.", kind: Throwable( kind: Firework(Purple), ), diff --git a/assets/common/items/utility/firework_red.ron b/assets/common/items/utility/firework_red.ron index a86b71f0fc..1bd0d32092 100644 --- a/assets/common/items/utility/firework_red.ron +++ b/assets/common/items/utility/firework_red.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Firework Red", - description: "Humans sometimes use these\nas a flare in a pinch.", + legacy_name: "Firework Red", + legacy_description: "Humans sometimes use these\nas a flare in a pinch.", kind: Throwable( kind: Firework(Red), ), diff --git a/assets/common/items/utility/firework_white.ron b/assets/common/items/utility/firework_white.ron index 9b53c6a35f..1dae2f40f4 100644 --- a/assets/common/items/utility/firework_white.ron +++ b/assets/common/items/utility/firework_white.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Firework White", - description: "Twinkles like the stars", + legacy_name: "Firework White", + legacy_description: "Twinkles like the stars", kind: Throwable( kind: Firework(White), ), diff --git a/assets/common/items/utility/firework_yellow.ron b/assets/common/items/utility/firework_yellow.ron index 96e43dcb0b..18f6d5baf9 100644 --- a/assets/common/items/utility/firework_yellow.ron +++ b/assets/common/items/utility/firework_yellow.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Firework Yellow", - description: "The Great Doctor passed away after\ntesting this contraption indoors.", + legacy_name: "Firework Yellow", + legacy_description: "The Great Doctor passed away after\ntesting this contraption indoors.", kind: Throwable( kind: Firework(Yellow), ), diff --git a/assets/common/items/utility/lockpick_0.ron b/assets/common/items/utility/lockpick_0.ron index 3a6294113f..51bd2e3da6 100644 --- a/assets/common/items/utility/lockpick_0.ron +++ b/assets/common/items/utility/lockpick_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Common Lockpick", - description: "Used to open common locks. Will break after use.", + legacy_name: "Common Lockpick", + legacy_description: "Used to open common locks. Will break after use.", kind: Utility( kind: Key, ), diff --git a/assets/common/items/utility/training_dummy.ron b/assets/common/items/utility/training_dummy.ron index a3522b268e..2bedace374 100644 --- a/assets/common/items/utility/training_dummy.ron +++ b/assets/common/items/utility/training_dummy.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Training Dummy", - description: "His name is William. Fire at will.", + legacy_name: "Training Dummy", + legacy_description: "His name is William. Fire at will.", kind: Throwable( kind: TrainingDummy, ), diff --git a/assets/common/items/weapons/axe/malachite_axe-0.ron b/assets/common/items/weapons/axe/malachite_axe-0.ron index 33a24c0e2a..c6817414ba 100644 --- a/assets/common/items/weapons/axe/malachite_axe-0.ron +++ b/assets/common/items/weapons/axe/malachite_axe-0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Malachite Axe", - description: "Etched axe head decorated with malachite on the blades to provide magical properties.", + legacy_name: "Malachite Axe", + legacy_description: "Etched axe head decorated with malachite on the blades to provide magical properties.", kind: Tool(( kind: Axe, hands: Two, diff --git a/assets/common/items/weapons/axe/parashu.ron b/assets/common/items/weapons/axe/parashu.ron index f9b792a225..d7a72fddfd 100644 --- a/assets/common/items/weapons/axe/parashu.ron +++ b/assets/common/items/weapons/axe/parashu.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Parashu", - description: "Said to be able to cleave the heavens.", + legacy_name: "Parashu", + legacy_description: "Said to be able to cleave the heavens.", kind: Tool(( kind: Axe, hands: Two, diff --git a/assets/common/items/weapons/axe/starter_axe.ron b/assets/common/items/weapons/axe/starter_axe.ron index af5a537418..7bb1665639 100644 --- a/assets/common/items/weapons/axe/starter_axe.ron +++ b/assets/common/items/weapons/axe/starter_axe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Notched Axe", - description: "Every dent tells the story of a chopped tree.", + legacy_name: "Notched Axe", + legacy_description: "Every dent tells the story of a chopped tree.", kind: Tool(( kind: Axe, hands: Two, diff --git a/assets/common/items/weapons/bow/sagitta.ron b/assets/common/items/weapons/bow/sagitta.ron index 8cda674730..9f82f8588f 100644 --- a/assets/common/items/weapons/bow/sagitta.ron +++ b/assets/common/items/weapons/bow/sagitta.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sagitta", - description: "Said to have slain a dragon with a single arrow", + legacy_name: "Sagitta", + legacy_description: "Said to have slain a dragon with a single arrow", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/weapons/bow/starter.ron b/assets/common/items/weapons/bow/starter.ron index a9d33d0cad..1f8d3dee6a 100644 --- a/assets/common/items/weapons/bow/starter.ron +++ b/assets/common/items/weapons/bow/starter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Uneven Bow", - description: "Someone carved their initials into it.", + legacy_name: "Uneven Bow", + legacy_description: "Someone carved their initials into it.", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/weapons/bow/velorite.ron b/assets/common/items/weapons/bow/velorite.ron index cf689b954e..1f244104fa 100644 --- a/assets/common/items/weapons/bow/velorite.ron +++ b/assets/common/items/weapons/bow/velorite.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Bow", - description: "Infused with Velorite power.", + legacy_name: "Velorite Bow", + legacy_description: "Infused with Velorite power.", kind: Tool(( kind: Bow, hands: Two, diff --git a/assets/common/items/weapons/dagger/basic_0.ron b/assets/common/items/weapons/dagger/basic_0.ron index 71ebc25539..2a5b0f7cb3 100644 --- a/assets/common/items/weapons/dagger/basic_0.ron +++ b/assets/common/items/weapons/dagger/basic_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Suspicious Paper Knife", - description: "Opens letters quickly.", + legacy_name: "Suspicious Paper Knife", + legacy_description: "Opens letters quickly.", kind: Tool(( kind: Dagger, hands: One, diff --git a/assets/common/items/weapons/dagger/cultist_0.ron b/assets/common/items/weapons/dagger/cultist_0.ron index 9b9eefbcd1..3cf353373b 100644 --- a/assets/common/items/weapons/dagger/cultist_0.ron +++ b/assets/common/items/weapons/dagger/cultist_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Magical Cultist Dagger", - description: "This belonged to an evil Cult Leader.", + legacy_name: "Magical Cultist Dagger", + legacy_description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Dagger, hands: One, diff --git a/assets/common/items/weapons/dagger/starter_dagger.ron b/assets/common/items/weapons/dagger/starter_dagger.ron index a7a451b19f..031bf7b1a0 100644 --- a/assets/common/items/weapons/dagger/starter_dagger.ron +++ b/assets/common/items/weapons/dagger/starter_dagger.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rusty Dagger", - description: "Easily concealed.", + legacy_name: "Rusty Dagger", + legacy_description: "Easily concealed.", kind: Tool(( kind: Dagger, hands: One, diff --git a/assets/common/items/weapons/empty/empty.ron b/assets/common/items/weapons/empty/empty.ron index 3732232a55..104aadc3cb 100644 --- a/assets/common/items/weapons/empty/empty.ron +++ b/assets/common/items/weapons/empty/empty.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Empty Item", - description: "This item may grant abilities, but is invisible", + legacy_name: "Empty Item", + legacy_description: "This item may grant abilities, but is invisible", kind: Tool(( kind: Empty, hands: One, diff --git a/assets/common/items/weapons/hammer/burnt_drumstick.ron b/assets/common/items/weapons/hammer/burnt_drumstick.ron index a093659d7e..cd58f31881 100644 --- a/assets/common/items/weapons/hammer/burnt_drumstick.ron +++ b/assets/common/items/weapons/hammer/burnt_drumstick.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Burnt Drumstick", - description: "Might need more practice...", + legacy_name: "Burnt Drumstick", + legacy_description: "Might need more practice...", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron b/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron index c846a25df0..8676ced138 100644 --- a/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron +++ b/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Magical Cultist Warhammer", - description: "This belonged to an evil Cult Leader.", + legacy_name: "Magical Cultist Warhammer", + legacy_description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/weapons/hammer/flimsy_hammer.ron b/assets/common/items/weapons/hammer/flimsy_hammer.ron index f93b3e527d..f074fa3ba9 100644 --- a/assets/common/items/weapons/hammer/flimsy_hammer.ron +++ b/assets/common/items/weapons/hammer/flimsy_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Flimsy Hammer", - description: "The head is barely secured.", + legacy_name: "Flimsy Hammer", + legacy_description: "The head is barely secured.", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/weapons/hammer/hammer_1.ron b/assets/common/items/weapons/hammer/hammer_1.ron index 3cf77969a0..dbf8e866a3 100644 --- a/assets/common/items/weapons/hammer/hammer_1.ron +++ b/assets/common/items/weapons/hammer/hammer_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Crude Mallet", - description: "Breaks bones like sticks and stones.", + legacy_name: "Crude Mallet", + legacy_description: "Breaks bones like sticks and stones.", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/weapons/hammer/mjolnir.ron b/assets/common/items/weapons/hammer/mjolnir.ron index 5d661d7a10..32dfac09aa 100644 --- a/assets/common/items/weapons/hammer/mjolnir.ron +++ b/assets/common/items/weapons/hammer/mjolnir.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Mjolnir", - description: "It's crackling with lightning.", + legacy_name: "Mjolnir", + legacy_description: "It's crackling with lightning.", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/weapons/hammer/starter_hammer.ron b/assets/common/items/weapons/hammer/starter_hammer.ron index 3c465223a4..55e89008ed 100644 --- a/assets/common/items/weapons/hammer/starter_hammer.ron +++ b/assets/common/items/weapons/hammer/starter_hammer.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Sturdy Old Hammer", - description: "'Property of...' The rest is missing.", + legacy_name: "Sturdy Old Hammer", + legacy_description: "'Property of...' The rest is missing.", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/weapons/sceptre/amethyst.ron b/assets/common/items/weapons/sceptre/amethyst.ron index 0bd5dc0287..c3132e5d81 100644 --- a/assets/common/items/weapons/sceptre/amethyst.ron +++ b/assets/common/items/weapons/sceptre/amethyst.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Amethyst Staff", - description: "Its stone is the closest thing from perfection", + legacy_name: "Amethyst Staff", + legacy_description: "Its stone is the closest thing from perfection", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/weapons/sceptre/belzeshrub.ron b/assets/common/items/weapons/sceptre/belzeshrub.ron index a5a9f19ddf..44c19f5191 100644 --- a/assets/common/items/weapons/sceptre/belzeshrub.ron +++ b/assets/common/items/weapons/sceptre/belzeshrub.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Belzeshrub the Broom God", - description: "'Is it... alive?'", + legacy_name: "Belzeshrub the Broom God", + legacy_description: "'Is it... alive?'", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/weapons/sceptre/caduceus.ron b/assets/common/items/weapons/sceptre/caduceus.ron index 291ed2c603..17c6a767e3 100644 --- a/assets/common/items/weapons/sceptre/caduceus.ron +++ b/assets/common/items/weapons/sceptre/caduceus.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Caduceus", - description: "The snakes seem to be alive", + legacy_name: "Caduceus", + legacy_description: "The snakes seem to be alive", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/weapons/sceptre/root_evil.ron b/assets/common/items/weapons/sceptre/root_evil.ron index 7e331870da..9e8d651b7f 100644 --- a/assets/common/items/weapons/sceptre/root_evil.ron +++ b/assets/common/items/weapons/sceptre/root_evil.ron @@ -1,6 +1,6 @@ ItemDef( - name: "The Root of Evil", - description: "'Everything comes at a price...'", + legacy_name: "The Root of Evil", + legacy_description: "'Everything comes at a price...'", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron b/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron index 7f5a69481e..b3ae7ff9cf 100644 --- a/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron +++ b/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Velorite Sceptre", - description: "Heals your allies with the mystical Velorite aura.", + legacy_name: "Velorite Sceptre", + legacy_description: "Heals your allies with the mystical Velorite aura.", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/weapons/sceptre/starter_sceptre.ron b/assets/common/items/weapons/sceptre/starter_sceptre.ron index 1ce8b85252..f8d9f3a4ba 100644 --- a/assets/common/items/weapons/sceptre/starter_sceptre.ron +++ b/assets/common/items/weapons/sceptre/starter_sceptre.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Naturalist Walking Stick", - description: "Heals your allies with the power of nature.", + legacy_name: "Naturalist Walking Stick", + legacy_description: "Heals your allies with the power of nature.", kind: Tool(( kind: Sceptre, hands: Two, diff --git a/assets/common/items/weapons/shield/shield_1.ron b/assets/common/items/weapons/shield/shield_1.ron index de2aece989..414ce995cc 100644 --- a/assets/common/items/weapons/shield/shield_1.ron +++ b/assets/common/items/weapons/shield/shield_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "A Tattered Targe", - description: "Should withstand a few more hits, hopefully...", + legacy_name: "A Tattered Targe", + legacy_description: "Should withstand a few more hits, hopefully...", kind: Tool(( kind: Shield, hands: One, diff --git a/assets/common/items/weapons/staff/cultist_staff.ron b/assets/common/items/weapons/staff/cultist_staff.ron index a8a302720d..ca70a427c1 100644 --- a/assets/common/items/weapons/staff/cultist_staff.ron +++ b/assets/common/items/weapons/staff/cultist_staff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Cultist Staff", - description: "The fire gives off no heat.", + legacy_name: "Cultist Staff", + legacy_description: "The fire gives off no heat.", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/weapons/staff/laevateinn.ron b/assets/common/items/weapons/staff/laevateinn.ron index 0c4e2621d9..a7fdb45803 100644 --- a/assets/common/items/weapons/staff/laevateinn.ron +++ b/assets/common/items/weapons/staff/laevateinn.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Laevateinn", - description: "Can shatter the gate of death", + legacy_name: "Laevateinn", + legacy_description: "Can shatter the gate of death", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/weapons/staff/staff_1.ron b/assets/common/items/weapons/staff/staff_1.ron index c3ff542043..7ef8188d6f 100644 --- a/assets/common/items/weapons/staff/staff_1.ron +++ b/assets/common/items/weapons/staff/staff_1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Humble Stick", - description: "Walking stick with a sharpened end.", + legacy_name: "Humble Stick", + legacy_description: "Walking stick with a sharpened end.", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/weapons/staff/starter_staff.ron b/assets/common/items/weapons/staff/starter_staff.ron index 1ad6a20019..32782cbec4 100644 --- a/assets/common/items/weapons/staff/starter_staff.ron +++ b/assets/common/items/weapons/staff/starter_staff.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Gnarled Rod", - description: "Smells like resin and magic.", + legacy_name: "Gnarled Rod", + legacy_description: "Smells like resin and magic.", kind: Tool(( kind: Staff, hands: Two, diff --git a/assets/common/items/weapons/sword/caladbolg.ron b/assets/common/items/weapons/sword/caladbolg.ron index 0e5d3234a9..3f2c0f2e4f 100644 --- a/assets/common/items/weapons/sword/caladbolg.ron +++ b/assets/common/items/weapons/sword/caladbolg.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Caladbolg", - description: "You sense an eldritch presence watching you.", + legacy_name: "Caladbolg", + legacy_description: "You sense an eldritch presence watching you.", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/weapons/sword/cultist.ron b/assets/common/items/weapons/sword/cultist.ron index 8d01a5191f..6d872b4466 100644 --- a/assets/common/items/weapons/sword/cultist.ron +++ b/assets/common/items/weapons/sword/cultist.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Magical Cultist Greatsword", - description: "This belonged to an evil Cult Leader.", + legacy_name: "Magical Cultist Greatsword", + legacy_description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/weapons/sword/frost-0.ron b/assets/common/items/weapons/sword/frost-0.ron index 9df7a73475..b63bcb0416 100644 --- a/assets/common/items/weapons/sword/frost-0.ron +++ b/assets/common/items/weapons/sword/frost-0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frost Cleaver", - description: "Radiates a freezing aura.", + legacy_name: "Frost Cleaver", + legacy_description: "Radiates a freezing aura.", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/weapons/sword/frost-1.ron b/assets/common/items/weapons/sword/frost-1.ron index 26f853364b..4a5e0bfe8c 100644 --- a/assets/common/items/weapons/sword/frost-1.ron +++ b/assets/common/items/weapons/sword/frost-1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Frost Saw", - description: "Forged from a single piece of eternal ice.", + legacy_name: "Frost Saw", + legacy_description: "Forged from a single piece of eternal ice.", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/weapons/sword/starter.ron b/assets/common/items/weapons/sword/starter.ron index 84ac1ee867..23bda7b705 100644 --- a/assets/common/items/weapons/sword/starter.ron +++ b/assets/common/items/weapons/sword/starter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Damaged Greatsword", - description: "The blade could snap at any moment, but you hope it will endure future fights.", + legacy_name: "Damaged Greatsword", + legacy_description: "The blade could snap at any moment, but you hope it will endure future fights.", kind: Tool(( kind: Sword, hands: Two, diff --git a/assets/common/items/weapons/sword_1h/starter.ron b/assets/common/items/weapons/sword_1h/starter.ron index 515c70467e..0970886c6d 100644 --- a/assets/common/items/weapons/sword_1h/starter.ron +++ b/assets/common/items/weapons/sword_1h/starter.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Damaged Gladius", - description: "This blade has seen better days, but surely it will last.", + legacy_name: "Damaged Gladius", + legacy_description: "This blade has seen better days, but surely it will last.", kind: Tool(( kind: Sword, hands: One, diff --git a/assets/common/items/weapons/tool/broom.ron b/assets/common/items/weapons/tool/broom.ron index 46e5a67631..d8ed48f70f 100644 --- a/assets/common/items/weapons/tool/broom.ron +++ b/assets/common/items/weapons/tool/broom.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Broom", - description: "It's beginning to fall apart.", + legacy_name: "Broom", + legacy_description: "It's beginning to fall apart.", kind: Tool(( kind: Farming, hands: Two, diff --git a/assets/common/items/weapons/tool/fishing_rod.ron b/assets/common/items/weapons/tool/fishing_rod.ron index 03512a5e47..b3fc0f7175 100644 --- a/assets/common/items/weapons/tool/fishing_rod.ron +++ b/assets/common/items/weapons/tool/fishing_rod.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Fishing Rod", - description: "Smells of fish.", + legacy_name: "Fishing Rod", + legacy_description: "Smells of fish.", kind: Tool(( kind: Farming, hands: Two, diff --git a/assets/common/items/weapons/tool/golf_club.ron b/assets/common/items/weapons/tool/golf_club.ron index e88f6df934..59a0ae0c1e 100644 --- a/assets/common/items/weapons/tool/golf_club.ron +++ b/assets/common/items/weapons/tool/golf_club.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Golf Club", - description: "Peasant swatter. Fiercely anti-urbanist. Climate crisis? What climate crisis?", + legacy_name: "Golf Club", + legacy_description: "Peasant swatter. Fiercely anti-urbanist. Climate crisis? What climate crisis?", kind: Tool(( kind: Hammer, hands: Two, diff --git a/assets/common/items/weapons/tool/hoe.ron b/assets/common/items/weapons/tool/hoe.ron index 0721c022e8..c70fcdf0d7 100644 --- a/assets/common/items/weapons/tool/hoe.ron +++ b/assets/common/items/weapons/tool/hoe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Hoe", - description: "It's stained with dirt.", + legacy_name: "Hoe", + legacy_description: "It's stained with dirt.", kind: Tool(( kind: Farming, hands: Two, diff --git a/assets/common/items/weapons/tool/pickaxe.ron b/assets/common/items/weapons/tool/pickaxe.ron index d75a01a658..4756a5a3a9 100644 --- a/assets/common/items/weapons/tool/pickaxe.ron +++ b/assets/common/items/weapons/tool/pickaxe.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pickaxe", - description: "It has a chipped edge.", + legacy_name: "Pickaxe", + legacy_description: "It has a chipped edge.", kind: Tool(( kind: Farming, hands: Two, diff --git a/assets/common/items/weapons/tool/pitchfork.ron b/assets/common/items/weapons/tool/pitchfork.ron index 1a54e97f17..08629a7d11 100644 --- a/assets/common/items/weapons/tool/pitchfork.ron +++ b/assets/common/items/weapons/tool/pitchfork.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Pitchfork", - description: "One of the prongs is broken.", + legacy_name: "Pitchfork", + legacy_description: "One of the prongs is broken.", kind: Tool(( kind: Farming, hands: Two, diff --git a/assets/common/items/weapons/tool/rake.ron b/assets/common/items/weapons/tool/rake.ron index 4d12815f4f..4f9e23d777 100644 --- a/assets/common/items/weapons/tool/rake.ron +++ b/assets/common/items/weapons/tool/rake.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Rake", - description: "Held together with twine.", + legacy_name: "Rake", + legacy_description: "Held together with twine.", kind: Tool(( kind: Farming, hands: Two, diff --git a/assets/common/items/weapons/tool/shovel-0.ron b/assets/common/items/weapons/tool/shovel-0.ron index 5ea84be019..19cb7556dc 100644 --- a/assets/common/items/weapons/tool/shovel-0.ron +++ b/assets/common/items/weapons/tool/shovel-0.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Shovel", - description: "It's covered in manure.", + legacy_name: "Shovel", + legacy_description: "It's covered in manure.", kind: Tool(( kind: Shovel, hands: Two, diff --git a/assets/common/items/weapons/tool/shovel-1.ron b/assets/common/items/weapons/tool/shovel-1.ron index 838486c59a..efeaaf0201 100644 --- a/assets/common/items/weapons/tool/shovel-1.ron +++ b/assets/common/items/weapons/tool/shovel-1.ron @@ -1,6 +1,6 @@ ItemDef( - name: "Shovel", - description: "It's been recently cleaned.", + legacy_name: "Shovel", + legacy_description: "It's been recently cleaned.", kind: Tool(( kind: Shovel, hands: Two, From db569513f38a9977e221cc9985d3767608758603 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Tue, 16 Jan 2024 13:07:53 +0200 Subject: [PATCH 12/13] review --- voxygen/src/hud/crafting.rs | 16 ++++++++-------- voxygen/src/hud/util.rs | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/voxygen/src/hud/crafting.rs b/voxygen/src/hud/crafting.rs index 338b100146..db74ca7941 100644 --- a/voxygen/src/hud/crafting.rs +++ b/voxygen/src/hud/crafting.rs @@ -737,18 +737,17 @@ impl<'a> Widget for Crafting<'a> { .press_image(self.imgs.selection_press) .image_color(color::rgba(1.0, 0.82, 0.27, 1.0)); - let borrow_check; + let title; let recipe_name = if let Some((_recipe, pseudo_name, _filter_tab)) = pseudo_entries.get(name) { *pseudo_name } else { - let (title, _) = util::item_text( + (title, _) = util::item_text( recipe.output.0.as_ref(), self.localized_strings, self.item_l10n, ); - borrow_check = title; - &borrow_check + &title }; let text = Text::new(recipe_name) @@ -865,20 +864,21 @@ impl<'a> Widget for Crafting<'a> { None => None, } { let recipe_name = String::from(recipe_name); - let borrow_check; + + let title; let title = if let Some((_recipe, pseudo_name, _filter_tab)) = pseudo_entries.get(&recipe_name) { *pseudo_name } else { - let (title, _) = util::item_text( + (title, _) = util::item_text( recipe.output.0.as_ref(), self.localized_strings, self.item_l10n, ); - borrow_check = title; - &borrow_check + &title }; + // Title Text::new(title) .mid_top_with_margin_on(state.ids.align_ing, -22.0) diff --git a/voxygen/src/hud/util.rs b/voxygen/src/hud/util.rs index bcaf1198f3..ed4dd034ea 100644 --- a/voxygen/src/hud/util.rs +++ b/voxygen/src/hud/util.rs @@ -15,7 +15,7 @@ use common::{ }; use conrod_core::image; use i18n::{fluent_args, Localization}; -use std::{borrow::Cow, fmt::Write, num::NonZeroU32}; +use std::{borrow::Cow, fmt::Write}; pub fn price_desc<'a>( prices: &Option, @@ -79,7 +79,7 @@ pub fn describe<'a, I: ItemDesc + ?Sized>( let (title, _) = item_text(item, i18n, l10n_spec); let amount = item.amount(); - if amount > NonZeroU32::new(1).unwrap() { + if amount.get() > 1 { format!("{amount} x {title}") } else { title From d3fcade8571e38020f4912456b2942fd89931d16 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Tue, 16 Jan 2024 18:40:12 +0200 Subject: [PATCH 13/13] Rename ItemL10n to ItemI18n --- .../{item_l10n.ron => item_i18n_manifest.ron} | 0 common/src/comp/inventory/item/mod.rs | 22 ++++++++++------- voxygen/src/hud/bag.rs | 22 ++++++++--------- voxygen/src/hud/crafting.rs | 22 ++++++++--------- voxygen/src/hud/loot_scroller.rs | 12 +++++----- voxygen/src/hud/mod.rs | 24 +++++++++---------- voxygen/src/hud/skillbar.rs | 12 +++++----- voxygen/src/hud/trade.rs | 14 +++++------ voxygen/src/hud/util.rs | 10 ++++---- voxygen/src/ui/widgets/item_tooltip.rs | 14 +++++------ 10 files changed, 78 insertions(+), 74 deletions(-) rename assets/common/{item_l10n.ron => item_i18n_manifest.ron} (100%) diff --git a/assets/common/item_l10n.ron b/assets/common/item_i18n_manifest.ron similarity index 100% rename from assets/common/item_l10n.ron rename to assets/common/item_i18n_manifest.ron diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index 5175246a4d..88108cbd53 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -489,7 +489,7 @@ type I18nId = String; // TODO: probably make a Resource if used outside of voxygen // TODO: add hot-reloading similar to how ItemImgs does it? // TODO: make it work with plugins (via Concatenate?) -/// To be used with ItemDesc::l10n +/// To be used with ItemDesc::i18n /// /// NOTE: there is a limitation to this manifest, as it uses ItemKey and /// ItemKey isn't uniquely identifies Item, when it comes to modular items. @@ -501,19 +501,23 @@ type I18nId = String; /// Translations currently do the same, but *maybe* they shouldn't in which case /// we should either extend ItemKey or use new identifier. We could use /// ItemDefinitionId, but it's very generic and cumbersome. -pub struct ItemL10n { +pub struct ItemI18n { /// maps ItemKey to i18n identifier map: HashMap, } -impl assets::Asset for ItemL10n { +impl assets::Asset for ItemI18n { type Loader = assets::RonLoader; const EXTENSION: &'static str = "ron"; } -impl ItemL10n { - pub fn new_expect() -> Self { ItemL10n::load_expect("common.item_l10n").read().clone() } +impl ItemI18n { + pub fn new_expect() -> Self { + ItemI18n::load_expect("common.item_i18n_manifest") + .read() + .clone() + } /// Returns (name, description) in Content form. // TODO: after we remove legacy text from ItemDef, consider making this @@ -1482,11 +1486,11 @@ pub trait ItemDesc { } /// Return name's and description's localization descriptors - fn l10n(&self, l10n: &ItemL10n) -> (Content, Content) { + fn i18n(&self, i18n: &ItemI18n) -> (Content, Content) { let item_key: ItemKey = self.into(); #[allow(deprecated)] - l10n.item_text_opt(item_key).unwrap_or_else(|| { + i18n.item_text_opt(item_key).unwrap_or_else(|| { ( Content::Plain(self.name().to_string()), Content::Plain(self.description().to_string()), @@ -1743,7 +1747,7 @@ mod tests { } #[test] - fn test_item_l10n() { let _ = ItemL10n::new_expect(); } + fn test_item_i18n() { let _ = ItemI18n::new_expect(); } #[test] // Probably can't fail, but better safe than crashing production server @@ -1753,7 +1757,7 @@ mod tests { // All items in Veloren should have localization. // If no, add some common dummy i18n id. fn ensure_item_localization() { - let manifest = ItemL10n::new_expect(); + let manifest = ItemI18n::new_expect(); let items = all_items_expect(); for item in items { let item_key: ItemKey = (&item).into(); diff --git a/voxygen/src/hud/bag.rs b/voxygen/src/hud/bag.rs index 2c1e50a0a4..c3f793fd86 100644 --- a/voxygen/src/hud/bag.rs +++ b/voxygen/src/hud/bag.rs @@ -21,7 +21,7 @@ use common::{ combat::{combat_rating, perception_dist_multiplier_from_stealth, Damage}, comp::{ inventory::InventorySortOrder, - item::{ItemDef, ItemDesc, ItemL10n, MaterialStatManifest, Quality}, + item::{ItemDef, ItemDesc, ItemI18n, MaterialStatManifest, Quality}, Body, Energy, Health, Inventory, Poise, SkillSet, Stats, }, }; @@ -81,7 +81,7 @@ pub struct InventoryScroller<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, show_stats: bool, show_bag_inv: bool, on_right: bool, @@ -106,7 +106,7 @@ impl<'a> InventoryScroller<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, show_stats: bool, show_bag_inv: bool, on_right: bool, @@ -129,7 +129,7 @@ impl<'a> InventoryScroller<'a> { slot_manager, pulse, localized_strings, - item_l10n, + item_i18n, show_stats, show_bag_inv, on_right, @@ -374,7 +374,7 @@ impl<'a> InventoryScroller<'a> { { // TODO: we do double the work here, optimize? let (name, _) = - util::item_text(i, self.localized_strings, self.item_l10n); + util::item_text(i, self.localized_strings, self.item_i18n); name }, i.amount(), @@ -470,7 +470,7 @@ impl<'a> InventoryScroller<'a> { .set(state.ids.inv_slots[i], ui); } if self.details_mode { - let (name, _) = util::item_text(item, self.localized_strings, self.item_l10n); + let (name, _) = util::item_text(item, self.localized_strings, self.item_i18n); Text::new(&name) .top_left_with_margins_on( state.ids.inv_alignment, @@ -652,7 +652,7 @@ pub struct Bag<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, stats: &'a Stats, skill_set: &'a SkillSet, health: &'a Health, @@ -678,7 +678,7 @@ impl<'a> Bag<'a> { slot_manager: &'a mut SlotManager, pulse: f32, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, stats: &'a Stats, skill_set: &'a SkillSet, health: &'a Health, @@ -702,7 +702,7 @@ impl<'a> Bag<'a> { slot_manager, pulse, localized_strings, - item_l10n, + item_i18n, stats, skill_set, energy, @@ -822,7 +822,7 @@ impl<'a> Widget for Bag<'a> { self.pulse, self.msm, self.localized_strings, - self.item_l10n, + self.item_i18n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -839,7 +839,7 @@ impl<'a> Widget for Bag<'a> { self.slot_manager, self.pulse, self.localized_strings, - self.item_l10n, + self.item_i18n, self.show.stats, self.show.bag_inv, true, diff --git a/voxygen/src/hud/crafting.rs b/voxygen/src/hud/crafting.rs index db74ca7941..af7439ba8b 100644 --- a/voxygen/src/hud/crafting.rs +++ b/voxygen/src/hud/crafting.rs @@ -19,7 +19,7 @@ use common::{ item_key::ItemKey, modular::{self, ModularComponent}, tool::{AbilityMap, ToolKind}, - Item, ItemBase, ItemDef, ItemDesc, ItemKind, ItemL10n, ItemTag, MaterialStatManifest, + Item, ItemBase, ItemDef, ItemDesc, ItemI18n, ItemKind, ItemTag, MaterialStatManifest, Quality, TagExampleInfo, }, slot::{InvSlotId, Slot}, @@ -151,7 +151,7 @@ pub struct Crafting<'a> { imgs: &'a Imgs, fonts: &'a Fonts, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, pulse: f32, rot_imgs: &'a ImgsRot, item_tooltip_manager: &'a mut ItemTooltipManager, @@ -172,7 +172,7 @@ impl<'a> Crafting<'a> { imgs: &'a Imgs, fonts: &'a Fonts, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, pulse: f32, rot_imgs: &'a ImgsRot, item_tooltip_manager: &'a mut ItemTooltipManager, @@ -189,7 +189,7 @@ impl<'a> Crafting<'a> { imgs, fonts, localized_strings, - item_l10n, + item_i18n, pulse, rot_imgs, item_tooltip_manager, @@ -358,7 +358,7 @@ impl<'a> Widget for Crafting<'a> { self.pulse, self.msm, self.localized_strings, - self.item_l10n, + self.item_i18n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -745,7 +745,7 @@ impl<'a> Widget for Crafting<'a> { (title, _) = util::item_text( recipe.output.0.as_ref(), self.localized_strings, - self.item_l10n, + self.item_i18n, ); &title }; @@ -874,7 +874,7 @@ impl<'a> Widget for Crafting<'a> { (title, _) = util::item_text( recipe.output.0.as_ref(), self.localized_strings, - self.item_l10n, + self.item_i18n, ); &title }; @@ -1239,7 +1239,7 @@ impl<'a> Widget for Crafting<'a> { if let Some(output_item) = output_item { let (name, _) = - util::item_text(&output_item, self.localized_strings, self.item_l10n); + util::item_text(&output_item, self.localized_strings, self.item_i18n); Button::image(animate_by_pulse( &self .item_imgs @@ -1994,7 +1994,7 @@ impl<'a> Widget for Crafting<'a> { let (name, _) = util::item_text( item_def.as_ref(), self.localized_strings, - self.item_l10n, + self.item_i18n, ); Text::new(&name) .right_from(state.ids.ingredient_frame[i], 10.0) @@ -2009,7 +2009,7 @@ impl<'a> Widget for Crafting<'a> { let (name, _) = util::item_text( item_def.as_ref(), self.localized_strings, - self.item_l10n, + self.item_i18n, ); name @@ -2028,7 +2028,7 @@ impl<'a> Widget for Crafting<'a> { let (name, _) = util::item_text( def.as_ref(), self.localized_strings, - self.item_l10n, + self.item_i18n, ); name diff --git a/voxygen/src/hud/loot_scroller.rs b/voxygen/src/hud/loot_scroller.rs index 232dbe8c6b..36893e4308 100644 --- a/voxygen/src/hud/loot_scroller.rs +++ b/voxygen/src/hud/loot_scroller.rs @@ -6,7 +6,7 @@ use super::{ }; use crate::ui::{fonts::Fonts, ImageFrame, ItemTooltip, ItemTooltipManager, ItemTooltipable}; use client::Client; -use common::comp::inventory::item::{Item, ItemDesc, ItemL10n, MaterialStatManifest, Quality}; +use common::comp::inventory::item::{Item, ItemDesc, ItemI18n, MaterialStatManifest, Quality}; use conrod_core::{ color, position::Dimension, @@ -58,7 +58,7 @@ pub struct LootScroller<'a> { rot_imgs: &'a ImgsRot, fonts: &'a Fonts, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, msm: &'a MaterialStatManifest, item_tooltip_manager: &'a mut ItemTooltipManager, pulse: f32, @@ -77,7 +77,7 @@ impl<'a> LootScroller<'a> { rot_imgs: &'a ImgsRot, fonts: &'a Fonts, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, msm: &'a MaterialStatManifest, item_tooltip_manager: &'a mut ItemTooltipManager, pulse: f32, @@ -92,7 +92,7 @@ impl<'a> LootScroller<'a> { rot_imgs, fonts, localized_strings, - item_l10n, + item_i18n, msm, item_tooltip_manager, pulse, @@ -156,7 +156,7 @@ impl<'a> Widget for LootScroller<'a> { self.pulse, self.msm, self.localized_strings, - self.item_l10n, + self.item_i18n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -357,7 +357,7 @@ impl<'a> Widget for LootScroller<'a> { "amount" => amount, "item" => { let (name, _) = - util::item_text(&item, self.localized_strings, self.item_l10n); + util::item_text(&item, self.localized_strings, self.item_i18n); name }, }, diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 5394a0e2a0..e21609c4e3 100755 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -98,7 +98,7 @@ use common::{ }, item::{ tool::{AbilityContext, ToolKind}, - ItemDefinitionIdOwned, ItemDesc, ItemL10n, MaterialStatManifest, Quality, + ItemDefinitionIdOwned, ItemDesc, ItemI18n, MaterialStatManifest, Quality, }, loot_owner::LootOwnerKind, pet::is_mountable, @@ -1286,7 +1286,7 @@ pub struct Hud { world_map: (/* Id */ Vec, Vec2), imgs: Imgs, item_imgs: ItemImgs, - item_l10n: ItemL10n, + item_i18n: ItemI18n, fonts: Fonts, rot_imgs: ImgsRot, failed_block_pickups: HashMap, @@ -1343,7 +1343,7 @@ impl Hud { // Load item images. let item_imgs = ItemImgs::new(&mut ui, imgs.not_found); // Load item text ("reference" to name and description) - let item_l10n = ItemL10n::new_expect(); + let item_i18n = ItemI18n::new_expect(); // Load fonts. let fonts = Fonts::load(global_state.i18n.read().fonts(), &mut ui) .expect("Impossible to load fonts!"); @@ -1383,7 +1383,7 @@ impl Hud { world_map, rot_imgs, item_imgs, - item_l10n, + item_i18n, fonts, ids, failed_block_pickups: HashMap::default(), @@ -2012,7 +2012,7 @@ impl Hud { // Item overitem::Overitem::new( - util::describe(item, i18n, &self.item_l10n).into(), + util::describe(item, i18n, &self.item_i18n).into(), quality, distance, fonts, @@ -2096,13 +2096,13 @@ impl Hud { }, BlockInteraction::Unlock(kind) => { let item_name = |item_id: &ItemDefinitionIdOwned| { - // TODO: get ItemKey and use it with l10n? + // TODO: get ItemKey and use it with i18n? item_id .as_ref() .itemdef_id() .map(|id| { let item = Item::new_from_asset_expect(id); - util::describe(&item, i18n, &self.item_l10n) + util::describe(&item, i18n, &self.item_i18n) }) .unwrap_or_else(|| "modular item".to_string()) }; @@ -3178,7 +3178,7 @@ impl Hud { item_tooltip_manager, &mut self.slot_manager, i18n, - &self.item_l10n, + &self.item_i18n, &msm, self.floaters.combo_floater, &context, @@ -3226,7 +3226,7 @@ impl Hud { &mut self.slot_manager, self.pulse, i18n, - &self.item_l10n, + &self.item_i18n, player_stats, skill_set, health, @@ -3271,7 +3271,7 @@ impl Hud { item_tooltip_manager, &mut self.slot_manager, i18n, - &self.item_l10n, + &self.item_i18n, &msm, self.pulse, &mut self.show, @@ -3352,7 +3352,7 @@ impl Hud { &self.imgs, &self.fonts, i18n, - &self.item_l10n, + &self.item_i18n, self.pulse, &self.rot_imgs, item_tooltip_manager, @@ -3519,7 +3519,7 @@ impl Hud { &self.rot_imgs, &self.fonts, i18n, - &self.item_l10n, + &self.item_i18n, &msm, item_tooltip_manager, self.pulse, diff --git a/voxygen/src/hud/skillbar.rs b/voxygen/src/hud/skillbar.rs index 5ba88056d1..d7f4ce6cf2 100644 --- a/voxygen/src/hud/skillbar.rs +++ b/voxygen/src/hud/skillbar.rs @@ -26,7 +26,7 @@ use common::comp::{ ability::{AbilityInput, Stance}, item::{ tool::{AbilityContext, ToolKind}, - ItemDesc, ItemL10n, MaterialStatManifest, + ItemDesc, ItemI18n, MaterialStatManifest, }, skillset::SkillGroupKind, Ability, ActiveAbilities, Body, CharacterState, Combo, Energy, Health, Inventory, Poise, @@ -307,7 +307,7 @@ pub struct Skillbar<'a> { item_tooltip_manager: &'a mut ItemTooltipManager, slot_manager: &'a mut slots::SlotManager, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, pulse: f32, #[conrod(common_builder)] common: widget::CommonBuilder, @@ -344,7 +344,7 @@ impl<'a> Skillbar<'a> { item_tooltip_manager: &'a mut ItemTooltipManager, slot_manager: &'a mut slots::SlotManager, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, msm: &'a MaterialStatManifest, combo_floater: Option, context: &'a AbilityContext, @@ -376,7 +376,7 @@ impl<'a> Skillbar<'a> { item_tooltip_manager, slot_manager, localized_strings, - item_l10n, + item_i18n, msm, combo_floater, context, @@ -1010,7 +1010,7 @@ impl<'a> Skillbar<'a> { self.pulse, self.msm, self.localized_strings, - self.item_l10n, + self.item_i18n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -1033,7 +1033,7 @@ impl<'a> Skillbar<'a> { hotbar.get(slot).and_then(|content| match content { hotbar::SlotContents::Inventory(i, _) => inventory.get_by_hash(i).map(|item| { let (title, desc) = - util::item_text(item, self.localized_strings, self.item_l10n); + util::item_text(item, self.localized_strings, self.item_i18n); (title.into(), desc.into()) }), diff --git a/voxygen/src/hud/trade.rs b/voxygen/src/hud/trade.rs index 4f0f8bb450..ce27f4997a 100644 --- a/voxygen/src/hud/trade.rs +++ b/voxygen/src/hud/trade.rs @@ -10,7 +10,7 @@ use vek::*; use client::Client; use common::{ comp::{ - inventory::item::{ItemDesc, ItemL10n, MaterialStatManifest, Quality}, + inventory::item::{ItemDesc, ItemI18n, MaterialStatManifest, Quality}, Inventory, Stats, }, trade::{PendingTrade, SitePrices, TradeAction, TradePhase}, @@ -99,7 +99,7 @@ pub struct Trade<'a> { common: widget::CommonBuilder, slot_manager: &'a mut SlotManager, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, msm: &'a MaterialStatManifest, pulse: f32, show: &'a mut Show, @@ -118,7 +118,7 @@ impl<'a> Trade<'a> { item_tooltip_manager: &'a mut ItemTooltipManager, slot_manager: &'a mut SlotManager, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, msm: &'a MaterialStatManifest, pulse: f32, show: &'a mut Show, @@ -135,7 +135,7 @@ impl<'a> Trade<'a> { common: widget::CommonBuilder::default(), slot_manager, localized_strings, - item_l10n, + item_i18n, msm, pulse, show, @@ -349,7 +349,7 @@ impl<'a> Trade<'a> { self.pulse, self.msm, self.localized_strings, - self.item_l10n, + self.item_i18n, ) .title_font_size(self.fonts.cyri.scale(20)) .parent(ui.window) @@ -367,7 +367,7 @@ impl<'a> Trade<'a> { self.slot_manager, self.pulse, self.localized_strings, - self.item_l10n, + self.item_i18n, false, true, false, @@ -537,7 +537,7 @@ impl<'a> Trade<'a> { .invslot .and_then(|i| inventory.get(i)) .map(|i| { - let (name, _) = util::item_text(&i, self.localized_strings, self.item_l10n); + let (name, _) = util::item_text(&i, self.localized_strings, self.item_i18n); Cow::Owned(name) }) diff --git a/voxygen/src/hud/util.rs b/voxygen/src/hud/util.rs index ed4dd034ea..7b3eae7894 100644 --- a/voxygen/src/hud/util.rs +++ b/voxygen/src/hud/util.rs @@ -5,7 +5,7 @@ use common::{ item::{ armor::{Armor, ArmorKind, Protection}, tool::{Hands, Tool, ToolKind}, - Effects, Item, ItemDefinitionId, ItemDesc, ItemKind, ItemL10n, MaterialKind, + Effects, Item, ItemDefinitionId, ItemDesc, ItemI18n, ItemKind, MaterialKind, MaterialStatManifest, }, BuffKind, @@ -64,9 +64,9 @@ pub fn price_desc<'a>( pub fn item_text<'a, I: ItemDesc + ?Sized>( item: &I, i18n: &'a Localization, - l10n_spec: &'a ItemL10n, + i18n_spec: &'a ItemI18n, ) -> (String, String) { - let (title, desc) = item.l10n(l10n_spec); + let (title, desc) = item.i18n(i18n_spec); (i18n.get_content(&title), i18n.get_content(&desc)) } @@ -74,9 +74,9 @@ pub fn item_text<'a, I: ItemDesc + ?Sized>( pub fn describe<'a, I: ItemDesc + ?Sized>( item: &I, i18n: &'a Localization, - l10n_spec: &'a ItemL10n, + i18n_spec: &'a ItemI18n, ) -> String { - let (title, _) = item_text(item, i18n, l10n_spec); + let (title, _) = item_text(item, i18n, i18n_spec); let amount = item.amount(); if amount.get() > 1 { diff --git a/voxygen/src/ui/widgets/item_tooltip.rs b/voxygen/src/ui/widgets/item_tooltip.rs index 087d73ccfb..b6d74bae37 100644 --- a/voxygen/src/ui/widgets/item_tooltip.rs +++ b/voxygen/src/ui/widgets/item_tooltip.rs @@ -10,7 +10,7 @@ use common::{ comp::{ item::{ armor::Protection, item_key::ItemKey, modular::ModularComponent, Item, ItemDesc, - ItemKind, ItemL10n, ItemTag, MaterialStatManifest, Quality, + ItemI18n, ItemKind, ItemTag, MaterialStatManifest, Quality, }, Energy, }, @@ -296,7 +296,7 @@ pub struct ItemTooltip<'a> { item_imgs: &'a ItemImgs, pulse: f32, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, } #[derive(Clone, Debug, Default, PartialEq, WidgetStyle)] @@ -361,7 +361,7 @@ impl<'a> ItemTooltip<'a> { pulse: f32, msm: &'a MaterialStatManifest, localized_strings: &'a Localization, - item_l10n: &'a ItemL10n, + item_i18n: &'a ItemI18n, ) -> Self { ItemTooltip { common: widget::CommonBuilder::default(), @@ -379,7 +379,7 @@ impl<'a> ItemTooltip<'a> { item_imgs, pulse, localized_strings, - item_l10n, + item_i18n, } } @@ -453,7 +453,7 @@ impl<'a> Widget for ItemTooltip<'a> { } = args; let i18n = &self.localized_strings; - let item_l10n = &self.item_l10n; + let item_i18n = &self.item_i18n; let inventories = self.client.inventories(); let inventory = match inventories.get(self.info.viewpoint_entity) { @@ -469,7 +469,7 @@ impl<'a> Widget for ItemTooltip<'a> { let equipped_item = inventory.equipped_items_replaceable_by(item_kind).next(); - let (title, desc) = util::item_text(item, i18n, item_l10n); + let (title, desc) = util::item_text(item, i18n, item_i18n); let item_kind = util::kind_text(item_kind, i18n).to_string(); @@ -1271,7 +1271,7 @@ impl<'a> Widget for ItemTooltip<'a> { let item = &self.item; // TODO: we do double work here, does it need optimization? - let (_, desc) = util::item_text(item, self.localized_strings, self.item_l10n); + let (_, desc) = util::item_text(item, self.localized_strings, self.item_i18n); let (text_w, _image_w) = self.text_image_width(260.0);