Fixed regex mistake in changing name of item assets.

This commit is contained in:
Sam 2021-11-20 20:08:27 -05:00
parent 62632318fe
commit eecc1b42c3
639 changed files with 639 additions and 639 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
ItemDef(
name: "Cultist Amulet"
name: "Cultist Amulet",
description: "You can still feel the Mindflayer's presence within this amulet...",
kind: Armor((
kind: Neck("Cultist"),

View File

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

View File

@ -1,5 +1,5 @@
ItemDef(
name: "Cultist Signet Ring"
name: "Cultist Signet Ring",
description: "Once belonged to a cultist.",
kind: Armor((
kind: Ring("Cultist"),

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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