mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Merge branch 'juliancoffee/item-i18n' into 'master'
Add Item i18n Closes #903 See merge request veloren/veloren!4250
This commit is contained in:
commit
4f084506c0
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -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"
|
||||
|
@ -5,6 +5,7 @@ resolver = "2"
|
||||
members = [
|
||||
"common",
|
||||
"common/assets",
|
||||
"common/i18n",
|
||||
"common/base",
|
||||
"common/dynlib",
|
||||
"common/ecs",
|
||||
|
6886
assets/common/item_i18n_manifest.ron
Normal file
6886
assets/common/item_i18n_manifest.ron
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Alchemist Belt",
|
||||
description: "",
|
||||
legacy_name: "Alchemist Belt",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Belt,
|
||||
stats: FromSet("Alchemist"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Alchemist Jacket",
|
||||
description: "",
|
||||
legacy_name: "Alchemist Jacket",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Chest,
|
||||
stats: FromSet("Alchemist"),
|
||||
|
@ -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"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Alchemist Pants",
|
||||
description: "",
|
||||
legacy_name: "Alchemist Pants",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Pants,
|
||||
stats: FromSet("Alchemist"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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((
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Blacksmith Belt",
|
||||
description: "",
|
||||
legacy_name: "Blacksmith Belt",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Belt,
|
||||
stats: FromSet("Blacksmith"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Blacksmith Jacket",
|
||||
description: "",
|
||||
legacy_name: "Blacksmith Jacket",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Chest,
|
||||
stats: FromSet("Blacksmith"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Blacksmith Gloves",
|
||||
description: "",
|
||||
legacy_name: "Blacksmith Gloves",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Hand,
|
||||
stats: FromSet("Blacksmith"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Blacksmith Hat",
|
||||
description: "",
|
||||
legacy_name: "Blacksmith Hat",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Head,
|
||||
stats: FromSet("Blacksmith"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Blacksmith Pants",
|
||||
description: "",
|
||||
legacy_name: "Blacksmith Pants",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Pants,
|
||||
stats: FromSet("Blacksmith"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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((
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Chef Belt",
|
||||
description: "",
|
||||
legacy_name: "Chef Belt",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Belt,
|
||||
stats: FromSet("Chef"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Chef Jacket",
|
||||
description: "",
|
||||
legacy_name: "Chef Jacket",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Chest,
|
||||
stats: FromSet("Chef"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Chef Hat",
|
||||
description: "",
|
||||
legacy_name: "Chef Hat",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Head,
|
||||
stats: FromSet("Chef"),
|
||||
|
@ -1,6 +1,6 @@
|
||||
ItemDef(
|
||||
name: "Chef Pants",
|
||||
description: "",
|
||||
legacy_name: "Chef Pants",
|
||||
legacy_description: "",
|
||||
kind: Armor((
|
||||
kind: Pants,
|
||||
stats: FromSet("Chef"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
@ -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"),
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user