Added protection stat to admin armor hidden in debug folder. Removed blue cultist armor set from drop table as it is an admin set.

This commit is contained in:
Samuel Keiffer 2020-07-18 00:05:28 +00:00 committed by Justin Shipsey
parent 8c1854f22a
commit 6cce09be85
146 changed files with 1515 additions and 733 deletions

View File

@ -44,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Creature specific stats - Creature specific stats
- Minimap compass - Minimap compass
- Initial crafting system implementation - Initial crafting system implementation
- Protection stat to armor that reduces incoming damage
### Changed ### Changed

50
Cargo.lock generated
View File

@ -108,6 +108,18 @@ dependencies = [
"syn 1.0.33", "syn 1.0.33",
] ]
[[package]]
name = "arraygen"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc755b23c19211c270ef000fa7ce871377825e6cc7d1bfd0311076f22c5e6ba1"
dependencies = [
"proc-macro-error",
"proc-macro2 1.0.18",
"quote 1.0.7",
"syn 1.0.33",
]
[[package]] [[package]]
name = "arrayref" name = "arrayref"
version = "0.3.6" version = "0.3.6"
@ -2945,6 +2957,32 @@ version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea" checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea"
[[package]]
name = "proc-macro-error"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7"
dependencies = [
"proc-macro-error-attr",
"proc-macro2 1.0.18",
"quote 1.0.7",
"syn 1.0.33",
"version_check 0.9.2",
]
[[package]]
name = "proc-macro-error-attr"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de"
dependencies = [
"proc-macro2 1.0.18",
"quote 1.0.7",
"syn 1.0.33",
"syn-mid",
"version_check 0.9.2",
]
[[package]] [[package]]
name = "proc-macro-hack" name = "proc-macro-hack"
version = "0.5.16" version = "0.5.16"
@ -3827,6 +3865,17 @@ dependencies = [
"unicode-xid 0.2.0", "unicode-xid 0.2.0",
] ]
[[package]]
name = "syn-mid"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a"
dependencies = [
"proc-macro2 1.0.18",
"quote 1.0.7",
"syn 1.0.33",
]
[[package]] [[package]]
name = "synstructure" name = "synstructure"
version = "0.12.4" version = "0.12.4"
@ -4373,6 +4422,7 @@ dependencies = [
name = "veloren-common" name = "veloren-common"
version = "0.6.0" version = "0.6.0"
dependencies = [ dependencies = [
"arraygen",
"authc", "authc",
"criterion", "criterion",
"crossbeam", "crossbeam",

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Admin's Cape", name: "Admin's Cape",
description: "Back\n\nArmor: 0\n\nWith great power comes\ngreat responsibility.\n\n<Right-Click to use>", description: "With great power comes\ngreat responsibility.",
kind: Armor( kind: Armor(
kind: Back(Admin), (
stats: (20), kind: Back(Admin),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Short leather Cape", name: "Short leather Cape",
description: "Back\n\nArmor: 0\n\n<Right-Click to use>", description: "Probably made of the finest leather.",
kind: Armor( kind: Armor(
kind: Back(Short0), (
stats: (20), kind: Back(Short0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Assassin Belt", name: "Assassin Belt",
description: "Belt\n\nArmor: 0\n\nOnly the best for a member of the creed.\n\n<Right-Click to use>", description: "Only the best for a member of the creed.",
kind: Armor( kind: Armor(
kind: Belt(Assassin), (
stats: (20), kind: Belt(Assassin),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Linen Belt", name: "Blue Linen Belt",
description: "Belt\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm",
kind: Armor( kind: Armor(
kind: Belt(ClothBlue0), (
stats: (20), kind: Belt(ClothBlue0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Linen Belt", name: "Green Linen Belt",
description: "Belt\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Belt(ClothGreen0), (
stats: (20), kind: Belt(ClothGreen0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Linen Belt", name: "Purple Linen Belt",
description: "Belt\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Belt(ClothPurple0), (
stats: (20), kind: Belt(ClothPurple0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Cultist Belt", name: "Cultist Belt",
description: "Belt\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Belt(Cultist), (
stats: (20), kind: Belt(Cultist),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Druid's Belt", name: "Druid's Belt",
description: "Twisted vines to keep everything secure.\n\n<Right-Click to use>", description: "Twisted vines to keep everything secure.",
kind: Armor( kind: Armor(
kind: Belt(Druid), (
stats: (20), kind: Belt(Druid),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Swift Belt", name: "Swift Belt",
description: "Belt\n\nArmor: 0\n\nSwift like the wind.\n\n<Right-Click to use>", description: "Swift like the wind.",
kind: Armor( kind: Armor(
kind: Belt(Leather0), (
stats: (20), kind: Belt(Leather0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -2,7 +2,11 @@ Item(
name: "Leather Belt", name: "Leather Belt",
description: "A belt made from simple leather.", description: "A belt made from simple leather.",
kind: Armor( kind: Armor(
kind: Belt(Leather2), (
stats: (20), kind: Belt(Leather2),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Iron Belt", name: "Iron Belt",
description: "Belt\n\nArmor: 0\n\n<Right-Click to use>", description: "A belt with a buckle forged from iron.",
kind: Armor( kind: Armor(
kind: Belt(Plate0), (
stats: (20), kind: Belt(Plate0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Steel Belt", name: "Steel Belt",
description: "A belt made from Steel.", description: "A belt forged from steel.",
kind: Armor( kind: Armor(
kind: Belt(Steel0), (
stats: (20), kind: Belt(Steel0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Twig Belt", name: "Twig Belt",
description: "A belt made from woven from twigs.\n\n<Right-Click to use>", description: "A belt made from woven from twigs.",
kind: Armor( kind: Armor(
kind: Belt(Twig), (
stats: (20), kind: Belt(Twig),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Flowery Belt", name: "Flowery Belt",
description: "A belt woven from twigs and flowers.\n\n<Right-Click to use>", description: "A belt woven from twigs and flowers.",
kind: Armor( kind: Armor(
kind: Belt(Twigsflowers), (
stats: (20), kind: Belt(Twigsflowers),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leafy Belt", name: "Leafy Belt",
description: "A belt woven from twigs and leaves.\n\n<Right-Click to use>", description: "A belt woven from twigs and leaves.",
kind: Armor( kind: Armor(
kind: Belt(Twigsleaves), (
stats: (20), kind: Belt(Twigsleaves),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Assassin Chest", name: "Assassin Chest",
description: "Chest\n\nArmor: 0\n\nOnly the best for a member of the creed.\n\n<Right-Click to use>", description: "Only the best for a member of the creed.",
kind: Armor( kind: Armor(
kind: Chest(Assassin), (
stats: (20), kind: Chest(Assassin),
stats: (
protection: Normal(6.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Linen Chest", name: "Blue Linen Chest",
description: "Chest\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Chest(ClothBlue0), (
stats: (20), kind: Chest(ClothBlue0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Linen Chest", name: "Green Linen Chest",
description: "Chest\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Chest(ClothGreen0), (
stats: (20), kind: Chest(ClothGreen0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Linen Chest", name: "Purple Linen Chest",
description: "Chest\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Chest(ClothPurple0), (
stats: (20), kind: Chest(ClothPurple0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Cultist Chest", name: "Blue Cultist Chest",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Chest(CultistBlue), (
stats: (20), kind: Chest(CultistBlue),
stats: (
protection: Normal(5.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Cultist Chest", name: "Purple Cultist Chest",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Chest(CultistPurple), (
stats: (20), kind: Chest(CultistPurple),
stats: (
protection: Normal(5.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Druid's Vest", name: "Druid's Vest",
description: "Druidic chest wrappings.\n\n<Right-Click to use>", description: "Druidic chest wrappings.",
kind: Armor( kind: Armor(
kind: Chest(Druid), (
stats: (20), kind: Chest(Druid),
stats: (
protection: Normal(6.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Swift Chest", name: "Swift Chest",
description: "Chest\n\nArmor: 0\n\nSwift like the wind.\n\n<Right-Click to use>", description: "Swift like the wind.",
kind: Armor( kind: Armor(
kind: Chest(Leather0), (
stats: (20), kind: Chest(Leather0),
stats: (
protection: Normal(10.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leather Cuirass", name: "Leather Cuirass",
description: "A cuirass made of simple leather", description: "A cuirass made of simple leather.",
kind: Armor( kind: Armor(
kind: Chest(Leather2), (
stats: (20), kind: Chest(Leather2),
stats: (
protection: Normal(10.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Iron Chestplate", name: "Iron Chestplate",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "A chestplate forged from iron.",
kind: Armor( kind: Armor(
kind: Chest(PlateGreen0), (
stats: (20), kind: Chest(PlateGreen0),
stats: (
protection: Normal(20.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Steel Cuirass", name: "Steel Cuirass",
description: "A cuirass of steel plate", description: "A cuirass of steel plate.",
kind: Armor( kind: Armor(
kind: Chest(Steel0), (
stats: (20), kind: Chest(Steel0),
stats: (
protection: Normal(25.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Twig Shirt", name: "Twig Shirt",
description: "A shirt woven from twigs.\n\n<Right-Click to use>", description: "A shirt woven from twigs.",
kind: Armor( kind: Armor(
kind: Chest(Twig), (
stats: (20), kind: Chest(Twig),
stats: (
protection: Normal(15.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Flowery Shirt", name: "Flowery Shirt",
description: "A shirt woven from twigs and flowers.\n\n<Right-Click to use>", description: "A shirt woven from twigs and flowers.",
kind: Armor( kind: Armor(
kind: Chest(Twigsflowers), (
stats: (20), kind: Chest(Twigsflowers),
stats: (
protection: Normal(15.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leafy Shirt", name: "Leafy Shirt",
description: "A shirt woven from twigs and leaves.\n\n<Right-Click to use>", description: "A shirt woven from twigs and leaves.",
kind: Armor( kind: Armor(
kind: Chest(Twigsleaves), (
stats: (20), kind: Chest(Twigsleaves),
stats: (
protection: Normal(15.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Worker Shirt", name: "Green Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerGreen0), (
stats: (20), kind: Chest(WorkerGreen0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Worker Shirt", name: "Green Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerGreen1), (
stats: (20), kind: Chest(WorkerGreen1),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Orange Worker Shirt", name: "Orange Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerOrange0), (
stats: (20), kind: Chest(WorkerOrange0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Orange Worker Shirt", name: "Orange Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerOrange1), (
stats: (20), kind: Chest(WorkerOrange1),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Worker Shirt", name: "Purple Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerPurple0), (
stats: (20), kind: Chest(WorkerPurple0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Worker Shirt", name: "Purple Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerPurple1), (
stats: (20), kind: Chest(WorkerPurple1),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Red Worker Shirt", name: "Red Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerRed0), (
stats: (20), kind: Chest(WorkerRed0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Red Worker Shirt", name: "Red Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerRed1), (
stats: (20), kind: Chest(WorkerRed1),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Yellow Worker Shirt", name: "Yellow Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerYellow0), (
stats: (20), kind: Chest(WorkerYellow0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Yellow Worker Shirt", name: "Yellow Worker Shirt",
description: "Chest\n\nArmor: 0\n\n<Right-Click to use>", description: "Was used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Chest(WorkerYellow1), (
stats: (20), kind: Chest(WorkerYellow1),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Assassin Boots", name: "Assassin Boots",
description: "Feet\n\nArmor: 0\n\nOnly the best for a member of the creed.\n\n<Right-Click to use>", description: "Only the best for a member of the creed.",
kind: Armor( kind: Armor(
kind: Foot(Assassin), (
stats: (20), kind: Foot(Assassin),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Linen Boots", name: "Blue Linen Boots",
description: "Feet\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Foot(ClothBlue0), (
stats: (20), kind: Foot(ClothBlue0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Linen Boots", name: "Green Linen Boots",
description: "Feet\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Foot(ClothGreen0), (
stats: (20), kind: Foot(ClothGreen0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Linen Boots", name: "Purple Linen Boots",
description: "Feet\n\nArmor: 0\n\nSoft and warm\n\n<Right-Click to use>", description: "Soft and warm.",
kind: Armor( kind: Armor(
kind: Foot(ClothPurple0), (
stats: (20), kind: Foot(ClothPurple0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Cultist Boots", name: "Cultist Boots",
description: "Feet\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Foot(Cultist), (
stats: (20), kind: Foot(Cultist),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Druid's Slippers", name: "Druid's Slippers",
description: "For treading softly through the woods.\n\n<Right-Click to use>", description: "For treading softly through the woods.",
kind: Armor( kind: Armor(
kind: Foot(Druid), (
stats: (20), kind: Foot(Druid),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Fluffy Jackalope Slippers", name: "Fluffy Jackalope Slippers",
description: "So warm and cozy!\n\n<Right-Click to use>", description: "So warm and cozy!",
kind: Armor( kind: Armor(
kind: Foot(JackalopeSlips), (
stats: (20), kind: Foot(JackalopeSlips),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Swift Boots", name: "Swift Boots",
description: "Feet\n\nArmor: 0\n\nSwift like the wind.\nWon't make you run faster.\n\n<Right-Click to use>", description: "Swift like the wind.",
kind: Armor( kind: Armor(
kind: Foot(Leather0), (
stats: (20), kind: Foot(Leather0),
stats: (
protection: Normal(2.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leather Boots", name: "Leather Boots",
description: "Boots made of simple leather", description: "Boots made of simple leather.",
kind: Armor( kind: Armor(
kind: Foot(Leather2), (
stats: (20), kind: Foot(Leather2),
stats: (
protection: Normal(2.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Iron Feet", name: "Iron Feet",
description: "Feet\n\nArmor: 0\n\n<Right-Click to use>", description: "Boots forged from iron.",
kind: Armor( kind: Armor(
kind: Foot(Plate0), (
stats: (20), kind: Foot(Plate0),
stats: (
protection: Normal(4.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Steel Boots", name: "Steel Boots",
description: "Boots plated in steel", description: "Boots forged from steel.",
kind: Armor( kind: Armor(
kind: Foot(Steel0), (
stats: (20), kind: Foot(Steel0),
stats: (
protection: Normal(5.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Twig Boots", name: "Twig Boots",
description: "Boots woven from twigs.\n\n<Right-Click to use>", description: "Boots woven from twigs.",
kind: Armor( kind: Armor(
kind: Foot(Twig), (
stats: (20), kind: Foot(Twig),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Flowery Boots", name: "Flowery Boots",
description: "Boots woven from twigs and flowers.\n\n<Right-Click to use>", description: "Boots woven from twigs and flowers.",
kind: Armor( kind: Armor(
kind: Foot(Twigsflowers), (
stats: (20), kind: Foot(Twigsflowers),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leafy Boots", name: "Leafy Boots",
description: "Boots woven from twigs and leaves.\n\n<Right-Click to use>", description: "Boots woven from twigs and leaves.",
kind: Armor( kind: Armor(
kind: Foot(Twigsleaves), (
stats: (20), kind: Foot(Twigsleaves),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Assassin Gloves", name: "Assassin Gloves",
description: "Hands\n\nArmor: 0\n\nOnly the best for a member of the creed.\n\n<Right-Click to use>", description: "Only the best for a member of the creed.",
kind: Armor( kind: Armor(
kind: Hand(Assassin), (
stats: (20), kind: Hand(Assassin),
stats: (
protection: Normal(2.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Linen Wrists", name: "Blue Linen Wrists",
description: "Hands\n\nArmor: 0\n\n<Right-Click to use>", description: "A strip of cloth.",
kind: Armor( kind: Armor(
kind: Hand(ClothBlue0), (
stats: (20), kind: Hand(ClothBlue0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Linen Wrists", name: "Green Linen Wrists",
description: "Hands\n\nArmor: 0\n\n<Right-Click to use>", description: "A strip of cloth.",
kind: Armor( kind: Armor(
kind: Hand(ClothGreen0), (
stats: (20), kind: Hand(ClothGreen0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Silk Wrists", name: "Purple Silk Wrists",
description: "Hands\n\nArmor: 0\n\n<Right-Click to use>", description: "A strip of cloth.",
kind: Armor( kind: Armor(
kind: Hand(ClothPurple0), (
stats: (20), kind: Hand(ClothPurple0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Cultist Gloves", name: "Blue Cultist Gloves",
description: "Hands\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Hand(CultistBlue), (
stats: (20), kind: Hand(CultistBlue),
stats: (
protection: Normal(2.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Cultist Gloves", name: "Purple Cultist Gloves",
description: "Hands\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Hand(CultistPurple), (
stats: (20), kind: Hand(CultistPurple),
stats: (
protection: Normal(2.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Druid's Gloves", name: "Druid's Gloves",
description: "Soft, strong, and flexible.\n\n<Right-Click to use>", description: "Soft, strong, and flexible.",
kind: Armor( kind: Armor(
kind: Hand(Druid), (
stats: (20), kind: Hand(Druid),
stats: (
protection: Normal(2.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Swift Gloves", name: "Swift Gloves",
description: "Hands\n\nArmor: 0\n\nSwift like the wind.\n\n<Right-Click to use>", description: "Swift like the wind.",
kind: Armor( kind: Armor(
kind: Hand(Leather0), (
stats: (20), kind: Hand(Leather0),
stats: (
protection: Normal(4.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leather Gloves", name: "Leather Gloves",
description: "Gloves made of simple leather", description: "Gloves made of simple leather.",
kind: Armor( kind: Armor(
kind: Hand(Leather2), (
stats: (20), kind: Hand(Leather2),
stats: (
protection: Normal(4.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Iron Handguards", name: "Iron Handguards",
description: "Hands\n\nArmor: 0\n\n<Right-Click to use>", description: "Gauntlets forged from iron.",
kind: Armor( kind: Armor(
kind: Hand(Plate0), (
stats: (20), kind: Hand(Plate0),
stats: (
protection: Normal(8.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Steel Gauntlets", name: "Steel Gauntlets",
description: "Gauntlets made of steel", description: "Gauntlets forged from steel.",
kind: Armor( kind: Armor(
kind: Hand(Steel0), (
stats: (20), kind: Hand(Steel0),
stats: (
protection: Normal(10.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Twig Wraps", name: "Twig Wraps",
description: "Handwraps woven from twigs.\n\n<Right-Click to use>", description: "Handwraps woven from twigs.",
kind: Armor( kind: Armor(
kind: Hand(Twig), (
stats: (20), kind: Hand(Twig),
stats: (
protection: Normal(6.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Flowery Wraps", name: "Flowery Wraps",
description: "Handwraps woven from twigs and flowers.\n\n<Right-Click to use>", description: "Handwraps woven from twigs and flowers.",
kind: Armor( kind: Armor(
kind: Hand(Twigsflowers), (
stats: (20), kind: Hand(Twigsflowers),
stats: (
protection: Normal(6.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leafy Wraps", name: "Leafy Wraps",
description: "Handwraps woven from twigs and leaves.\n\n<Right-Click to use>", description: "Handwraps woven from twigs and leaves.",
kind: Armor( kind: Armor(
kind: Hand(Twigsleaves), (
stats: (20), kind: Hand(Twigsleaves),
stats: (
protection: Normal(6.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Dark Assassin Mask", name: "Dark Assassin Mask",
description: "Head\n\nArmor: 0\n\n<Right-Click to use>", description: "Used to obscure your face.",
kind: Armor( kind: Armor(
kind: Head(AssaMask0), (
stats: (20), kind: Head(AssaMask0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Swift Leather Cap", name: "Swift Leather Cap",
description: "Head\n\nArmor: 0\n\n<Right-Click to use>", description: "Swift like the wind.",
kind: Armor( kind: Armor(
kind: Head(Leather0), (
stats: (20), kind: Head(Leather0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Plain Necklace", name: "Plain Necklace",
description: "Neck\n\nArmor: 0\n\n<Right-Click to use>", description: "It's become tarnished with age.",
kind: Armor( kind: Armor(
kind: Neck(Neck0), (
stats: (20), kind: Neck(Neck0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Assassin Pants", name: "Assassin Pants",
description: "Legs\n\nArmor: 0\n\nOnly the best for a member of the creed.\n\n<Right-Click to use>", description: "Only the best for a member of the creed.",
kind: Armor( kind: Armor(
kind: Pants(Assassin), (
stats: (20), kind: Pants(Assassin),
stats: (
protection: Normal(5.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Linen Skirt", name: "Blue Linen Skirt",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "A skirt made from linen.",
kind: Armor( kind: Armor(
kind: Pants(ClothBlue0), (
stats: (20), kind: Pants(ClothBlue0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Linen Skirt", name: "Green Linen Skirt",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "A skirt made from linen.",
kind: Armor( kind: Armor(
kind: Pants(ClothGreen0), (
stats: (20), kind: Pants(ClothGreen0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Linen Skirt", name: "Purple Linen Skirt",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "A skirt made from linen.",
kind: Armor( kind: Armor(
kind: Pants(ClothPurple0), (
stats: (20), kind: Pants(ClothPurple0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Cultist Skirt", name: "Blue Cultist Skirt",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Pants(CultistBlue), (
stats: (20), kind: Pants(CultistBlue),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Cultist Skirt", name: "Purple Cultist Skirt",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Pants(CultistPurple), (
stats: (20), kind: Pants(CultistPurple),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Druid's Kilt", name: "Druid's Kilt",
description: "Feel the breeze!\n\n<Right-Click to use>", description: "Feel the breeze!",
kind: Armor( kind: Armor(
kind: Pants(Druid), (
stats: (20), kind: Pants(Druid),
stats: (
protection: Normal(4.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Hunting Pants", name: "Hunting Pants",
description: "Crafted from soft, supple leather\n\n<Right-Click to use>", description: "Crafted from soft, supple leather.",
kind: Armor( kind: Armor(
kind: Pants(Hunting), (
stats: (20), kind: Pants(Hunting),
stats: (
protection: Normal(8.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Swift Pants", name: "Swift Pants",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "Swift like the wind.",
kind: Armor( kind: Armor(
kind: Pants(Leather0), (
stats: (20), kind: Pants(Leather0),
stats: (
protection: Normal(8.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leather Leg Armour", name: "Leather Leg Armour",
description: "Leg armour made of simple leather", description: "Leg armour made of simple leather.",
kind: Armor( kind: Armor(
kind: Pants(Leather2), (
stats: (20), kind: Pants(Leather2),
stats: (
protection: Normal(8.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Iron Legguards", name: "Iron Legguards",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "Greaves forged from iron.",
kind: Armor( kind: Armor(
kind: Pants(PlateGreen0), (
stats: (20), kind: Pants(PlateGreen0),
stats: (
protection: Normal(16.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Steel Chausses", name: "Steel Chausses",
description: "Leg armour made of steel plates", description: "Greaves forged from steel.",
kind: Armor( kind: Armor(
kind: Pants(Steel0), (
stats: (20), kind: Pants(Steel0),
stats: (
protection: Normal(20.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Twig Pants", name: "Twig Pants",
description: "Pants woven from twigs. Chafey!\n\n<Right-Click to use>", description: "Pants woven from twigs. Chafey!",
kind: Armor( kind: Armor(
kind: Pants(Twig), (
stats: (20), kind: Pants(Twig),
stats: (
protection: Normal(12.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Flowery Pants", name: "Flowery Pants",
description: "Pants woven from twigs and flowers. Fragrant!\n\n<Right-Click to use>", description: "Pants woven from twigs and flowers. Fragrant!",
kind: Armor( kind: Armor(
kind: Pants(Twigsflowers), (
stats: (20), kind: Pants(Twigsflowers),
stats: (
protection: Normal(12.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leafy Pants", name: "Leafy Pants",
description: "Pants woven from twigs and leaves. Slightly less chafey than the twig pants!\n\n<Right-Click to use>", description: "Pants woven from twigs and leaves. Slightly less chafey than the twig pants!",
kind: Armor( kind: Armor(
kind: Pants(Twigsleaves), (
stats: (20), kind: Pants(Twigsleaves),
stats: (
protection: Normal(12.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Worker Pants", name: "Blue Worker Pants",
description: "Legs\n\nArmor: 0\n\n<Right-Click to use>", description: "Pants used by a farmer, until recently.",
kind: Armor( kind: Armor(
kind: Pants(WorkerBlue0), (
stats: (20), kind: Pants(WorkerBlue0),
stats: (
protection: Normal(1.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Scratched Ring", name: "Scratched Ring",
description: "Ring\n\nBarely fits your finger.\n\n<Right-Click to use>", description: "Barely fits your finger.",
kind: Armor( kind: Armor(
kind: Ring(Ring0), (
stats: (20), kind: Ring(Ring0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Assassin Shoulder Guard", name: "Assassin Shoulder Guard",
description: "Shoulders\n\nArmor: 0\n\nOnly the best for a member of the creed.\n\n<Right-Click to use>", description: "Only the best for a member of the creed.",
kind: Armor( kind: Armor(
kind: Shoulder(Assassin), (
stats: (20), kind: Shoulder(Assassin),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Linen Coat", name: "Blue Linen Coat",
description: "Shoulders\n\nArmor: 0\n\n<Right-Click to use>", description: "A warm coat.",
kind: Armor( kind: Armor(
kind: Shoulder(ClothBlue0), (
stats: (20), kind: Shoulder(ClothBlue0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Cloth Pads", name: "Blue Cloth Pads",
description: "Simple shoulderpads made from blue cloth.\n\n<Right-click to use>", description: "Simple shoulderpads made from blue cloth.",
kind: Armor( kind: Armor(
kind: Shoulder(ClothBlue1), (
stats: (20), kind: Shoulder(ClothBlue1),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Green Linen Coat", name: "Green Linen Coat",
description: "Shoulders\n\nArmor: 0\n\n<Right-Click to use>", description: "A warm coat.",
kind: Armor( kind: Armor(
kind: Shoulder(ClothGreen0), (
stats: (20), kind: Shoulder(ClothGreen0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Linen Coat", name: "Purple Linen Coat",
description: "Shoulders\n\nArmor: 0\n\n<Right-Click to use>", description: "A warm coat.",
kind: Armor( kind: Armor(
kind: Shoulder(ClothPurple0), (
stats: (20), kind: Shoulder(ClothPurple0),
stats: (
protection: Normal(0.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Blue Cultist Mantle", name: "Blue Cultist Mantle",
description: "Shoulders\n\nArmor: 0\n\nA strong shoulder to lean on.\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Shoulder(CultistBlue), (
stats: (20), kind: Shoulder(CultistBlue),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Purple Cultist Mantle", name: "Purple Cultist Mantle",
description: "Shoulders\n\nArmor: 0\n\nA strong shoulder to lean on.\n\n<Right-Click to use>", description: "Ceremonial attire used by members.",
kind: Armor( kind: Armor(
kind: Shoulder(CultistPurple), (
stats: (20), kind: Shoulder(CultistPurple),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Druid Shoulders", name: "Druid Shoulders",
description: "Forged for protectors of the wild.\n\n<Right-Click to use>", description: "Forged for protectors of the wild.",
kind: Armor( kind: Armor(
kind: Shoulder(DruidShoulder), (
stats: (20), kind: Shoulder(DruidShoulder),
stats: (
protection: Normal(3.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Iron Spiked Pauldrons", name: "Iron Spiked Pauldrons",
description: "Iron shoulder pads with spikes attached.\n\n<Right-click to use>", description: "Iron shoulder pads with spikes attached.",
kind: Armor( kind: Armor(
kind: Shoulder(IronSpikes), (
stats: (20), kind: Shoulder(IronSpikes),
stats: (
protection: Normal(12.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Leather Pauldrons", name: "Leather Pauldrons",
description: "Shoulders\n\nArmor: 0\n\n<Right-Click to use>", description: "Shoulder pads made of leather.",
kind: Armor( kind: Armor(
kind: Shoulder(Leather0), (
stats: (20), kind: Shoulder(Leather0),
stats: (
protection: Normal(6.0),
),
)
), ),
) )

View File

@ -1,8 +1,12 @@
Item( Item(
name: "Swift Shoulderpads", name: "Swift Shoulderpads",
description: "Shoulders\n\nArmor: 0\n\nSwift like the wind.\n\n<Right-Click to use>", description: "Swift like the wind.",
kind: Armor( kind: Armor(
kind: Shoulder(Leather1), (
stats: (20), kind: Shoulder(Leather1),
stats: (
protection: Normal(6.0),
),
)
), ),
) )

Some files were not shown because too many files have changed in this diff Show More