Skip to content
Snippets Groups Projects
Commit 2d4d3188 authored by Arndress's avatar Arndress
Browse files

Changed the weight of some player clothing to "important"

This doesn't appear to affect normal gameplay, as NPCs did not use
"major" reactions to these anyway. However, please let me know if any
problems arise.
parent 836cb9c7
No related branches found
No related tags found
No related merge requests found
......@@ -55,14 +55,14 @@ function loadClothing () {
clothingChoices.push(createNewClothing('Jacket', 'jacket', MINOR_ARTICLE, UPPER_ARTICLE, "player/male/jacket.png", 3, 2));
clothingChoices.push(createNewClothing('Shirt', 'shirt', MAJOR_ARTICLE, UPPER_ARTICLE, "player/male/shirt.png", 2, 3));
clothingChoices.push(createNewClothing('T-Shirt', 't-shirt', MAJOR_ARTICLE, UPPER_ARTICLE, "player/male/tshirt.png", 1, 4));
clothingChoices.push(createNewClothing('Undershirt', 'undershirt', MAJOR_ARTICLE, UPPER_ARTICLE, "player/male/undershirt.png", 0, 5));
clothingChoices.push(createNewClothing('Undershirt', 'undershirt', IMPORTANT_ARTICLE, UPPER_ARTICLE, "player/male/undershirt.png", 0, 5));
clothingChoices.push(createNewClothing('Glasses', 'glasses', EXTRA_ARTICLE, OTHER_ARTICLE, "player/male/glasses.png", 3, 6));
clothingChoices.push(createNewClothing('Belt', 'belt', EXTRA_ARTICLE, OTHER_ARTICLE, "player/male/belt.png", 4, 7));
clothingChoices.push(createNewClothing('Pants', 'pants', MAJOR_ARTICLE, LOWER_ARTICLE, "player/male/pants.png", 3, 8));
clothingChoices.push(createNewClothing('Shorts', 'shorts', MAJOR_ARTICLE, LOWER_ARTICLE, "player/male/shorts.png", 2, 9));
clothingChoices.push(createNewClothing('Kilt', 'kilt', MAJOR_ARTICLE, LOWER_ARTICLE, "player/male/kilt.png", 1, 10));
clothingChoices.push(createNewClothing('Boxers', 'boxers', MAJOR_ARTICLE, LOWER_ARTICLE, "player/male/boxers.png", 0, 11));
clothingChoices.push(createNewClothing('Boxers', 'boxers', IMPORTANT_ARTICLE, LOWER_ARTICLE, "player/male/boxers.png", 0, 11));
clothingChoices.push(createNewClothing('Necklace', 'necklace', EXTRA_ARTICLE, OTHER_ARTICLE, "player/male/necklace.png", 3, 12));
clothingChoices.push(createNewClothing('Tie', 'tie', EXTRA_ARTICLE, OTHER_ARTICLE, "player/male/tie.png", 3, 13));
......@@ -76,7 +76,7 @@ function loadClothing () {
clothingChoices.push(createNewClothing('Jacket', 'jacket', MINOR_ARTICLE, UPPER_ARTICLE, "player/female/jacket.png", 3, 2));
clothingChoices.push(createNewClothing('Shirt', 'shirt', MAJOR_ARTICLE, UPPER_ARTICLE, "player/female/shirt.png", 2, 3));
clothingChoices.push(createNewClothing('Tank Top', 'tank top', MAJOR_ARTICLE, UPPER_ARTICLE, "player/female/tanktop.png", 1, 4));
clothingChoices.push(createNewClothing('Bra', 'bra', MAJOR_ARTICLE, UPPER_ARTICLE, "player/female/bra.png", 0, 5));
clothingChoices.push(createNewClothing('Bra', 'bra', IMPORTANT_ARTICLE, UPPER_ARTICLE, "player/female/bra.png", 0, 5));
clothingChoices.push(createNewClothing('Glasses', 'glasses', EXTRA_ARTICLE, OTHER_ARTICLE, "player/female/glasses.png", 3, 6));
clothingChoices.push(createNewClothing('Belt', 'belt', EXTRA_ARTICLE, OTHER_ARTICLE, "player/female/belt.png", 4, 7));
......@@ -88,7 +88,7 @@ function loadClothing () {
clothingChoices.push(createNewClothing('Necklace', 'necklace', EXTRA_ARTICLE, OTHER_ARTICLE, "player/female/necklace.png", 3, 12));
clothingChoices.push(createNewClothing('Bracelet', 'bracelet', EXTRA_ARTICLE, OTHER_ARTICLE, "player/female/bracelet.png", 3, 13));
clothingChoices.push(createNewClothing('Gloves', 'gloves', EXTRA_ARTICLE, OTHER_ARTICLE, "player/female/gloves.png", 3, 14));
clothingChoices.push(createNewClothing('Stockings', 'stockings', EXTRA_ARTICLE, OTHER_ARTICLE, "player/female/stockings.png", 3, 15));
clothingChoices.push(createNewClothing('Stockings', 'stockings', MINOR_ARTICLE, OTHER_ARTICLE, "player/female/stockings.png", 3, 15));
clothingChoices.push(createNewClothing('Socks', 'socks', MINOR_ARTICLE, OTHER_ARTICLE, "player/female/socks.png", 2, 16));
clothingChoices.push(createNewClothing('Shoes', 'shoes', EXTRA_ARTICLE, OTHER_ARTICLE, "player/female/shoes.png", 3, 17));
}
......
......@@ -37,15 +37,15 @@
<!-- Other Clothing -->
<category label="other">
<clothing type="minor" img="player/male/shoes.jpg" default="yes">
<clothing type="extra" img="player/male/shoes.jpg" default="yes">
<proper>Shoes</proper>
<lower>shoes</lower>
</clothing>
<clothing type="extra" img="player/male/socks.jpg" default="yes">
<clothing type="minor" img="player/male/socks.jpg" default="yes">
<proper>Socks</proper>
<lower>socks</lower>
</clothing>
<clothing type="minor" img="player/male/belt.jpg" default="yes">
<clothing type="extra" img="player/male/belt.jpg" default="yes">
<proper>Belt</proper>
<lower>belt</lower>
</clothing>
......@@ -83,7 +83,7 @@
<!-- Accessories -->
<category label="other">
<clothing type="minor" img="player/female/boots.jpg" default="yes">
<clothing type="extra" img="player/female/boots.jpg" default="yes">
<proper>Boots</proper>
<lower>boots</lower>
</clothing>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment