Added test functions to assist in fixing unit tests that broke from changed functionality.

This commit is contained in:
Sam
2021-07-31 17:03:51 -05:00
parent f9256ecd62
commit 4e89bc7485
824 changed files with 892 additions and 847 deletions

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Assassin Belt", name: Direct("Assassin Belt"),
description: "Only the best for a member of the creed.", description: "Only the best for a member of the creed.",
kind: Armor(( kind: Armor((
kind: Belt("Assassin"), kind: Belt("Assassin"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Assassin Chest", name: Direct("Assassin Chest"),
description: "Only the best for a member of the creed.", description: "Only the best for a member of the creed.",
kind: Armor(( kind: Armor((
kind: Chest("Assassin"), kind: Chest("Assassin"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Assassin Boots", name: Direct("Assassin Boots"),
description: "Only the best for a member of the creed.", description: "Only the best for a member of the creed.",
kind: Armor(( kind: Armor((
kind: Foot("Assassin"), kind: Foot("Assassin"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Assassin Gloves", name: Direct("Assassin Gloves"),
description: "Only the best for a member of the creed.", description: "Only the best for a member of the creed.",
kind: Armor(( kind: Armor((
kind: Hand("Assassin"), kind: Hand("Assassin"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Dark Assassin Mask", name: Direct("Dark Assassin Mask"),
description: "A general assassination mask preventing the wearer from being identified.", description: "A general assassination mask preventing the wearer from being identified.",
kind: Armor(( kind: Armor((
kind: Head("AssaMask0"), kind: Head("AssaMask0"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Assassin Pants", name: Direct("Assassin Pants"),
description: "Only the best for a member of the creed.", description: "Only the best for a member of the creed.",
kind: Armor(( kind: Armor((
kind: Pants("Assassin"), kind: Pants("Assassin"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Assassin Shoulder Guard", name: Direct("Assassin Shoulder Guard"),
description: "Only the best for a member of the creed.", description: "Only the best for a member of the creed.",
kind: Armor(( kind: Armor((
kind: Shoulder("Assassin"), kind: Shoulder("Assassin"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Bonerattler Belt", name: Direct("Bonerattler Belt"),
description: "Sections of vertebrae fastened together with hide and a bonerattler eye for the buckle.", description: "Sections of vertebrae fastened together with hide and a bonerattler eye for the buckle.",
kind: Armor(( kind: Armor((
kind: Belt("Bonerattler"), kind: Belt("Bonerattler"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Bonerattler Cuirass", name: Direct("Bonerattler Cuirass"),
description: "The spiny back and hide of a bonerattler fastened together into a protective cuirass.", description: "The spiny back and hide of a bonerattler fastened together into a protective cuirass.",
kind: Armor(( kind: Armor((
kind: Chest("Bonerattler"), kind: Chest("Bonerattler"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Bonerattler Boots", name: Direct("Bonerattler Boots"),
description: "Boots made from the claws and hide of a bonerattler.", description: "Boots made from the claws and hide of a bonerattler.",
kind: Armor(( kind: Armor((
kind: Foot("Bonerattler"), kind: Foot("Bonerattler"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Bonerattler Gauntlets", name: Direct("Bonerattler Gauntlets"),
description: "The hide and bone from a bonerattler provide strong protection for the wearer.", description: "The hide and bone from a bonerattler provide strong protection for the wearer.",
kind: Armor(( kind: Armor((
kind: Hand("Bonerattler"), kind: Hand("Bonerattler"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Bonerattler Chausses", name: Direct("Bonerattler Chausses"),
description: "Assorted bones and hide from a bonerattler provide protection around the wearer's legs.", description: "Assorted bones and hide from a bonerattler provide protection around the wearer's legs.",
kind: Armor(( kind: Armor((
kind: Pants("Bonerattler"), kind: Pants("Bonerattler"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Bonerattler Shoulder Pad", name: Direct("Bonerattler Shoulder Pad"),
description: "Roughly formed bonerattler hide provide some strong protection.", description: "Roughly formed bonerattler hide provide some strong protection.",
kind: Armor(( kind: Armor((
kind: Shoulder("Bonerattler"), kind: Shoulder("Bonerattler"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Druid Cape", name: Direct("Druid Cape"),
description: "Incredibly light, with the essence of nature.", description: "Incredibly light, with the essence of nature.",
kind: Armor(( kind: Armor((
kind: Back("Druid"), kind: Back("Druid"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Druid Sash", name: Direct("Druid Sash"),
description: "Incredibly light, with the essence of nature.", description: "Incredibly light, with the essence of nature.",
kind: Armor(( kind: Armor((
kind: Belt("Druid"), kind: Belt("Druid"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Druid Chestguard", name: Direct("Druid Chestguard"),
description: "Incredibly light, with the essence of nature.", description: "Incredibly light, with the essence of nature.",
kind: Armor(( kind: Armor((
kind: Chest("Druid"), kind: Chest("Druid"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Druid Kickers", name: Direct("Druid Kickers"),
description: "Incredibly light, with the essence of nature.", description: "Incredibly light, with the essence of nature.",
kind: Armor(( kind: Armor((
kind: Foot("Druid"), kind: Foot("Druid"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Druid Handwraps", name: Direct("Druid Handwraps"),
description: "Incredibly light, with the essence of nature.", description: "Incredibly light, with the essence of nature.",
kind: Armor(( kind: Armor((
kind: Hand("Druid"), kind: Hand("Druid"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Druid Leggings", name: Direct("Druid Leggings"),
description: "Incredibly light, with the essence of nature.", description: "Incredibly light, with the essence of nature.",
kind: Armor(( kind: Armor((
kind: Pants("Druid"), kind: Pants("Druid"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Druid Shoulderpads", name: Direct("Druid Shoulderpads"),
description: "Incredibly light, with the essence of nature.", description: "Incredibly light, with the essence of nature.",
kind: Armor(( kind: Armor((
kind: Shoulder("Druid"), kind: Shoulder("Druid"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Linen Shawl", name: Direct("Linen Shawl"),
description: "Roughly stitched, but it seems to hold.", description: "Roughly stitched, but it seems to hold.",
kind: Armor(( kind: Armor((
kind: Back("Linen"), kind: Back("Linen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Linen Sash", name: Direct("Linen Sash"),
description: "Roughly stitched, but it seems to hold.", description: "Roughly stitched, but it seems to hold.",
kind: Armor(( kind: Armor((
kind: Belt("Linen"), kind: Belt("Linen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Linen Vest", name: Direct("Linen Vest"),
description: "Roughly stitched, but it seems to hold.", description: "Roughly stitched, but it seems to hold.",
kind: Armor(( kind: Armor((
kind: Chest("Linen"), kind: Chest("Linen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Linen Feet", name: Direct("Linen Feet"),
description: "Roughly stitched, but it seems to hold.", description: "Roughly stitched, but it seems to hold.",
kind: Armor(( kind: Armor((
kind: Foot("Linen"), kind: Foot("Linen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Linen Handwraps", name: Direct("Linen Handwraps"),
description: "Roughly stitched, but it seems to hold.", description: "Roughly stitched, but it seems to hold.",
kind: Armor(( kind: Armor((
kind: Hand("Linen"), kind: Hand("Linen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Linen Pants", name: Direct("Linen Pants"),
description: "Roughly stitched, but it seems to hold.", description: "Roughly stitched, but it seems to hold.",
kind: Armor(( kind: Armor((
kind: Pants("Linen"), kind: Pants("Linen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Linen Shoulders", name: Direct("Linen Shoulders"),
description: "Roughly stitched, but it seems to hold.", description: "Roughly stitched, but it seems to hold.",
kind: Armor(( kind: Armor((
kind: Shoulder("Linen"), kind: Shoulder("Linen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Moonweave Cape", name: Direct("Moonweave Cape"),
description: "The fabric dances silently, like moonlight.", description: "The fabric dances silently, like moonlight.",
kind: Armor(( kind: Armor((
kind: Back("Moonweave"), kind: Back("Moonweave"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Moonweave Belt", name: Direct("Moonweave Belt"),
description: "The fabric dances silently, like moonlight.", description: "The fabric dances silently, like moonlight.",
kind: Armor(( kind: Armor((
kind: Belt("Moonweave"), kind: Belt("Moonweave"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Moonweave Vest", name: Direct("Moonweave Vest"),
description: "The fabric dances silently, like moonlight.", description: "The fabric dances silently, like moonlight.",
kind: Armor(( kind: Armor((
kind: Chest("Moonweave"), kind: Chest("Moonweave"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Moonweave Boots", name: Direct("Moonweave Boots"),
description: "The fabric dances silently, like moonlight.", description: "The fabric dances silently, like moonlight.",
kind: Armor(( kind: Armor((
kind: Foot("Moonweave"), kind: Foot("Moonweave"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Moonweave Gloves", name: Direct("Moonweave Gloves"),
description: "The fabric dances silently, like moonlight.", description: "The fabric dances silently, like moonlight.",
kind: Armor(( kind: Armor((
kind: Hand("Moonweave"), kind: Hand("Moonweave"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Moonweave Legs", name: Direct("Moonweave Legs"),
description: "The fabric dances silently, like moonlight.", description: "The fabric dances silently, like moonlight.",
kind: Armor(( kind: Armor((
kind: Pants("Moonweave"), kind: Pants("Moonweave"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Moonweave Shoulders", name: Direct("Moonweave Shoulders"),
description: "The fabric dances silently, like moonlight.", description: "The fabric dances silently, like moonlight.",
kind: Armor(( kind: Armor((
kind: Shoulder("Moonweave"), kind: Shoulder("Moonweave"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Silken Cape", name: Direct("Silken Cape"),
description: "Weaved with care by a skilled tailor.", description: "Weaved with care by a skilled tailor.",
kind: Armor(( kind: Armor((
kind: Back("Silken"), kind: Back("Silken"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Silken Sash", name: Direct("Silken Sash"),
description: "Weaved with care by a skilled tailor.", description: "Weaved with care by a skilled tailor.",
kind: Armor(( kind: Armor((
kind: Belt("Silken"), kind: Belt("Silken"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Silken Robe", name: Direct("Silken Robe"),
description: "Weaved with care by a skilled tailor.", description: "Weaved with care by a skilled tailor.",
kind: Armor(( kind: Armor((
kind: Chest("Silken"), kind: Chest("Silken"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Silken Feet", name: Direct("Silken Feet"),
description: "Weaved with care by a skilled tailor.", description: "Weaved with care by a skilled tailor.",
kind: Armor(( kind: Armor((
kind: Foot("Silken"), kind: Foot("Silken"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Silken Wraps", name: Direct("Silken Wraps"),
description: "Weaved with care by a skilled tailor.", description: "Weaved with care by a skilled tailor.",
kind: Armor(( kind: Armor((
kind: Hand("Silken"), kind: Hand("Silken"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Silken Skirt", name: Direct("Silken Skirt"),
description: "Weaved with care by a skilled tailor.", description: "Weaved with care by a skilled tailor.",
kind: Armor(( kind: Armor((
kind: Pants("Silken"), kind: Pants("Silken"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Silken Shoulders", name: Direct("Silken Shoulders"),
description: "Weaved with care by a skilled tailor.", description: "Weaved with care by a skilled tailor.",
kind: Armor(( kind: Armor((
kind: Shoulder("Silken"), kind: Shoulder("Silken"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Sunsilk Cape", name: Direct("Sunsilk Cape"),
description: "It radiates with the sun's power, and the grace to harness it.", description: "It radiates with the sun's power, and the grace to harness it.",
kind: Armor(( kind: Armor((
kind: Back("Sunsilk"), kind: Back("Sunsilk"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Sunsilk Sash", name: Direct("Sunsilk Sash"),
description: "It radiates with the sun's power, and the grace to harness it.", description: "It radiates with the sun's power, and the grace to harness it.",
kind: Armor(( kind: Armor((
kind: Belt("Sunsilk"), kind: Belt("Sunsilk"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Sunsilk Tunic", name: Direct("Sunsilk Tunic"),
description: "It radiates with the sun's power, and the grace to harness it.", description: "It radiates with the sun's power, and the grace to harness it.",
kind: Armor(( kind: Armor((
kind: Chest("Sunsilk"), kind: Chest("Sunsilk"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Sunsilk Footwraps", name: Direct("Sunsilk Footwraps"),
description: "It radiates with the sun's power, and the grace to harness it.", description: "It radiates with the sun's power, and the grace to harness it.",
kind: Armor(( kind: Armor((
kind: Foot("Sunsilk"), kind: Foot("Sunsilk"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Sunsilk Handwraps", name: Direct("Sunsilk Handwraps"),
description: "It radiates with the sun's power, and the grace to harness it.", description: "It radiates with the sun's power, and the grace to harness it.",
kind: Armor(( kind: Armor((
kind: Hand("Sunsilk"), kind: Hand("Sunsilk"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Sunsilk Kilt", name: Direct("Sunsilk Kilt"),
description: "It radiates with the sun's power, and the grace to harness it.", description: "It radiates with the sun's power, and the grace to harness it.",
kind: Armor(( kind: Armor((
kind: Pants("Sunsilk"), kind: Pants("Sunsilk"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Sunsilk Shoulderwraps", name: Direct("Sunsilk Shoulderwraps"),
description: "It radiates with the sun's power, and the grace to harness it.", description: "It radiates with the sun's power, and the grace to harness it.",
kind: Armor(( kind: Armor((
kind: Shoulder("Sunsilk"), kind: Shoulder("Sunsilk"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Woolen Cloak", name: Direct("Woolen Cloak"),
description: "Thick and ready for the snow.", description: "Thick and ready for the snow.",
kind: Armor(( kind: Armor((
kind: Back("Woolen"), kind: Back("Woolen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Woolen Belt", name: Direct("Woolen Belt"),
description: "Thick and ready for the snow.", description: "Thick and ready for the snow.",
kind: Armor(( kind: Armor((
kind: Belt("Woolen"), kind: Belt("Woolen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Woolen Parka", name: Direct("Woolen Parka"),
description: "Thick and ready for the snow.", description: "Thick and ready for the snow.",
kind: Armor(( kind: Armor((
kind: Chest("Woolen"), kind: Chest("Woolen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Woolen Boots", name: Direct("Woolen Boots"),
description: "Thick and ready for the snow.", description: "Thick and ready for the snow.",
kind: Armor(( kind: Armor((
kind: Foot("Woolen"), kind: Foot("Woolen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Woolen Mittens", name: Direct("Woolen Mittens"),
description: "Thick and ready for the snow.", description: "Thick and ready for the snow.",
kind: Armor(( kind: Armor((
kind: Hand("Woolen"), kind: Hand("Woolen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Woolen Pants", name: Direct("Woolen Pants"),
description: "Thick and ready for the snow.", description: "Thick and ready for the snow.",
kind: Armor(( kind: Armor((
kind: Pants("Woolen"), kind: Pants("Woolen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Woolen Shoulders", name: Direct("Woolen Shoulders"),
description: "Thick and ready for the snow.", description: "Thick and ready for the snow.",
kind: Armor(( kind: Armor((
kind: Shoulder("Woolen"), kind: Shoulder("Woolen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Blue Linen Belt", name: Direct("Blue Linen Belt"),
description: "A stylish rough fabric belt, dyed blue.", description: "A stylish rough fabric belt, dyed blue.",
kind: Armor(( kind: Armor((
kind: Belt("ClothBlue"), kind: Belt("ClothBlue"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Blue Linen Chest", name: Direct("Blue Linen Chest"),
description: "A stylish rough fabric surcoat, dyed blue.", description: "A stylish rough fabric surcoat, dyed blue.",
kind: Armor(( kind: Armor((
kind: Chest("ClothBlue"), kind: Chest("ClothBlue"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Blue Linen Boots", name: Direct("Blue Linen Boots"),
description: "Cobbled rough fabric boots, dyed blue.", description: "Cobbled rough fabric boots, dyed blue.",
kind: Armor(( kind: Armor((
kind: Foot("ClothBlue"), kind: Foot("ClothBlue"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Blue Linen Wrists", name: Direct("Blue Linen Wrists"),
description: "Rough cloth bracelets provide a stylish fashion statement, dyed blue.", description: "Rough cloth bracelets provide a stylish fashion statement, dyed blue.",
kind: Armor(( kind: Armor((
kind: Hand("ClothBlue"), kind: Hand("ClothBlue"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Blue Linen Skirt", name: Direct("Blue Linen Skirt"),
description: "A stylish, rough fabric skirt, dyed blue.", description: "A stylish, rough fabric skirt, dyed blue.",
kind: Armor(( kind: Armor((
kind: Pants("ClothBlue"), kind: Pants("ClothBlue"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Blue Linen Coat", name: Direct("Blue Linen Coat"),
description: "A rough fabric coat, dyed blue.", description: "A rough fabric coat, dyed blue.",
kind: Armor(( kind: Armor((
kind: Shoulder("ClothBlue0"), kind: Shoulder("ClothBlue0"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Blue Cloth Pads", name: Direct("Blue Cloth Pads"),
description: "Simple shoulderpads made from blue cloth.", description: "Simple shoulderpads made from blue cloth.",
kind: Armor(( kind: Armor((
kind: Shoulder("ClothBlue1"), kind: Shoulder("ClothBlue1"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Green Linen Belt", name: Direct("Green Linen Belt"),
description: "A stylish rough fabric belt, dyed green.", description: "A stylish rough fabric belt, dyed green.",
kind: Armor(( kind: Armor((
kind: Belt("ClothGreen"), kind: Belt("ClothGreen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Green Linen Chest", name: Direct("Green Linen Chest"),
description: "A stylish rough fabric surcoat, dyed green.", description: "A stylish rough fabric surcoat, dyed green.",
kind: Armor(( kind: Armor((
kind: Chest("ClothGreen"), kind: Chest("ClothGreen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Green Linen Boots", name: Direct("Green Linen Boots"),
description: "Cobbled rough fabric boots, dyed green.", description: "Cobbled rough fabric boots, dyed green.",
kind: Armor(( kind: Armor((
kind: Foot("ClothGreen"), kind: Foot("ClothGreen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Green Linen Wrists", name: Direct("Green Linen Wrists"),
description: "Rough cloth bracelets provide a stylish fashion statement, dyed green.", description: "Rough cloth bracelets provide a stylish fashion statement, dyed green.",
kind: Armor(( kind: Armor((
kind: Hand("ClothGreen"), kind: Hand("ClothGreen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Green Linen Skirt", name: Direct("Green Linen Skirt"),
description: "A stylish, rough fabric skirt, dyed green.", description: "A stylish, rough fabric skirt, dyed green.",
kind: Armor(( kind: Armor((
kind: Pants("ClothGreen"), kind: Pants("ClothGreen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Green Linen Coat", name: Direct("Green Linen Coat"),
description: "A rough fabric coat, dyed green.", description: "A rough fabric coat, dyed green.",
kind: Armor(( kind: Armor((
kind: Shoulder("ClothGreen"), kind: Shoulder("ClothGreen"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Purple Linen Belt", name: Direct("Purple Linen Belt"),
description: "A stylish rough fabric belt, dyed purple.", description: "A stylish rough fabric belt, dyed purple.",
kind: Armor(( kind: Armor((
kind: Belt("ClothPurple"), kind: Belt("ClothPurple"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Purple Linen Chest", name: Direct("Purple Linen Chest"),
description: "A stylish rough fabric surcoat, dyed purple.", description: "A stylish rough fabric surcoat, dyed purple.",
kind: Armor(( kind: Armor((
kind: Chest("ClothPurple"), kind: Chest("ClothPurple"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Purple Linen Boots", name: Direct("Purple Linen Boots"),
description: "Cobbled rough fabric boots, dyed purple.", description: "Cobbled rough fabric boots, dyed purple.",
kind: Armor(( kind: Armor((
kind: Foot("ClothPurple"), kind: Foot("ClothPurple"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Purple Linen Wrists", name: Direct("Purple Linen Wrists"),
description: "Rough cloth bracelets provide a stylish fashion statement, dyed purple.", description: "Rough cloth bracelets provide a stylish fashion statement, dyed purple.",
kind: Armor(( kind: Armor((
kind: Hand("ClothPurple"), kind: Hand("ClothPurple"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Purple Linen Skirt", name: Direct("Purple Linen Skirt"),
description: "A stylish, rough fabric skirt, dyed purple.", description: "A stylish, rough fabric skirt, dyed purple.",
kind: Armor(( kind: Armor((
kind: Pants("ClothPurple"), kind: Pants("ClothPurple"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Purple Linen Coat", name: Direct("Purple Linen Coat"),
description: "A rough fabric coat, dyed purple.", description: "A rough fabric coat, dyed purple.",
kind: Armor(( kind: Armor((
kind: Shoulder("ClothPurple"), kind: Shoulder("ClothPurple"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Cultist Belt", name: Direct("Cultist Belt"),
description: "Ceremonial attire used by members.", description: "Ceremonial attire used by members.",
kind: Armor(( kind: Armor((
kind: Belt("Cultist"), kind: Belt("Cultist"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Cultist Chest", name: Direct("Cultist Chest"),
description: "Ceremonial attire used by members.", description: "Ceremonial attire used by members.",
kind: Armor(( kind: Armor((
kind: Chest("Cultist"), kind: Chest("Cultist"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Cultist Boots", name: Direct("Cultist Boots"),
description: "Ceremonial attire used by members.", description: "Ceremonial attire used by members.",
kind: Armor(( kind: Armor((
kind: Foot("Cultist"), kind: Foot("Cultist"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Cultist Gloves", name: Direct("Cultist Gloves"),
description: "Ceremonial attire used by members.", description: "Ceremonial attire used by members.",
kind: Armor(( kind: Armor((
kind: Hand("Cultist"), kind: Hand("Cultist"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Cultist Skirt", name: Direct("Cultist Skirt"),
description: "Ceremonial attire used by members.", description: "Ceremonial attire used by members.",
kind: Armor(( kind: Armor((
kind: Pants("Cultist"), kind: Pants("Cultist"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Cultist Mantle", name: Direct("Cultist Mantle"),
description: "Ceremonial attire used by members.", description: "Ceremonial attire used by members.",
kind: Armor(( kind: Armor((
kind: Shoulder("Cultist"), kind: Shoulder("Cultist"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Ferocious Mantle", name: Direct("Ferocious Mantle"),
description: "The dark side of nature", description: "The dark side of nature",
kind: Armor(( kind: Armor((
kind: Back("Ferocious"), kind: Back("Ferocious"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Ferocious Sash", name: Direct("Ferocious Sash"),
description: "The dark side of nature", description: "The dark side of nature",
kind: Armor(( kind: Armor((
kind: Belt("Ferocious"), kind: Belt("Ferocious"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Ferocious Shirt", name: Direct("Ferocious Shirt"),
description: "The dark side of nature", description: "The dark side of nature",
kind: Armor(( kind: Armor((
kind: Chest("Ferocious"), kind: Chest("Ferocious"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Ferocious Waraji", name: Direct("Ferocious Waraji"),
description: "The dark side of nature", description: "The dark side of nature",
kind: Armor(( kind: Armor((
kind: Foot("Ferocious"), kind: Foot("Ferocious"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Ferocious Wraps", name: Direct("Ferocious Wraps"),
description: "The dark side of nature", description: "The dark side of nature",
kind: Armor(( kind: Armor((
kind: Hand("Ferocious"), kind: Hand("Ferocious"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Ferocious Shorts", name: Direct("Ferocious Shorts"),
description: "The dark side of nature", description: "The dark side of nature",
kind: Armor(( kind: Armor((
kind: Pants("Ferocious"), kind: Pants("Ferocious"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Ferocious Guards", name: Direct("Ferocious Guards"),
description: "The dark side of nature", description: "The dark side of nature",
kind: Armor(( kind: Armor((
kind: Shoulder("Ferocious"), kind: Shoulder("Ferocious"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Carapace Cape", name: Direct("Carapace Cape"),
description: "Shell that once shielded a beast.", description: "Shell that once shielded a beast.",
kind: Armor(( kind: Armor((
kind: Back("Carapace"), kind: Back("Carapace"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Carapace Belt", name: Direct("Carapace Belt"),
description: "Shell that once shielded a beast.", description: "Shell that once shielded a beast.",
kind: Armor(( kind: Armor((
kind: Belt("Carapace"), kind: Belt("Carapace"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Carapace Cuirass", name: Direct("Carapace Cuirass"),
description: "Shell that once shielded a beast.", description: "Shell that once shielded a beast.",
kind: Armor(( kind: Armor((
kind: Chest("Carapace"), kind: Chest("Carapace"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Carapace Treads", name: Direct("Carapace Treads"),
description: "Shell that once shielded a beast.", description: "Shell that once shielded a beast.",
kind: Armor(( kind: Armor((
kind: Foot("Carapace"), kind: Foot("Carapace"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Carapace Grips", name: Direct("Carapace Grips"),
description: "Shell that once shielded a beast.", description: "Shell that once shielded a beast.",
kind: Armor(( kind: Armor((
kind: Hand("Carapace"), kind: Hand("Carapace"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Carapace Leggings", name: Direct("Carapace Leggings"),
description: "Shell that once shielded a beast.", description: "Shell that once shielded a beast.",
kind: Armor(( kind: Armor((
kind: Pants("Carapace"), kind: Pants("Carapace"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Carapace Shoulderpads", name: Direct("Carapace Shoulderpads"),
description: "Shell that once shielded a beast.", description: "Shell that once shielded a beast.",
kind: Armor(( kind: Armor((
kind: Shoulder("Carapace"), kind: Shoulder("Carapace"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Dragonscale Cape", name: Direct("Dragonscale Cape"),
description: "Power pulses through it.", description: "Power pulses through it.",
kind: Armor(( kind: Armor((
kind: Back("Dragonscale"), kind: Back("Dragonscale"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Dragonscale Sash", name: Direct("Dragonscale Sash"),
description: "Power pulses through it.", description: "Power pulses through it.",
kind: Armor(( kind: Armor((
kind: Belt("Dragonscale"), kind: Belt("Dragonscale"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Dragonscale Chestplate", name: Direct("Dragonscale Chestplate"),
description: "Power pulses through it.", description: "Power pulses through it.",
kind: Armor(( kind: Armor((
kind: Chest("Dragonscale"), kind: Chest("Dragonscale"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Dragonscale Spurs", name: Direct("Dragonscale Spurs"),
description: "Power pulses through it.", description: "Power pulses through it.",
kind: Armor(( kind: Armor((
kind: Foot("Dragonscale"), kind: Foot("Dragonscale"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Dragonscale Gloves", name: Direct("Dragonscale Gloves"),
description: "Power pulses through it.", description: "Power pulses through it.",
kind: Armor(( kind: Armor((
kind: Hand("Dragonscale"), kind: Hand("Dragonscale"),

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Dragonscale Leggings", name: Direct("Dragonscale Leggings"),
description: "Power pulses through it.", description: "Power pulses through it.",
kind: Armor(( kind: Armor((
kind: Pants("Dragonscale"), kind: Pants("Dragonscale"),

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