Skip to content

Instantly share code, notes, and snippets.

@NearHuscarl
Created March 8, 2022 18:11
Show Gist options
  • Save NearHuscarl/63db2421720ab479d3c387200e64f0f3 to your computer and use it in GitHub Desktop.
Save NearHuscarl/63db2421720ab479d3c387200e64f0f3 to your computer and use it in GitHub Desktop.
Superfighters Deluxe item database
// this file is auto generated. Do not touch.
import { PaletteName } from "./palettes";
export type Gender = 0 | 1 | 2;
export type Item = {
id: ItemID;
gameName: string;
fileName: ItemID;
equipmentLayer: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
jacketUnderBelt: boolean;
colorPalette: PaletteName;
data: number[][];
gender: Gender;
colorSlot: [primary: boolean, secondary: boolean, tertiary: boolean];
};
export const NULL_ITEM: Item = {
gameName: "None",
fileName: "None" as any,
equipmentLayer: 0,
id: "None" as any,
jacketUnderBelt: false,
colorPalette: "Clothing1",
data: [[], [], [], [], [], []],
gender: 2,
colorSlot: [false, false, false],
};
// @ts-ignore: nullItem is added right below
export const items: Record<ItemID, Item> = {
AgentSunglasses: {
gameName: "Agent Sunglasses",
fileName: "AgentSunglasses",
equipmentLayer: 6,
id: "AgentSunglasses",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [false, true, false],
},
Armband_fem: {
gameName: "Armband",
fileName: "Armband_fem",
equipmentLayer: 6,
id: "Armband_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[], [], [0, 1, 2, 3, 5, 6, 8, 14, 15, 16], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, false, false],
},
Armband: {
gameName: "Armband",
fileName: "Armband",
equipmentLayer: 6,
id: "Armband",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [], [0, 1, 2, 3, 5, 6, 8, 13, 16], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
Balaclava: {
gameName: "Balaclava",
fileName: "Balaclava",
equipmentLayer: 6,
id: "Balaclava",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Cigar: {
gameName: "Cigar",
fileName: "Cigar",
equipmentLayer: 6,
id: "Cigar",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
ClownMakeup_fem: {
gameName: "Clown Makeup",
fileName: "ClownMakeup_fem",
equipmentLayer: 6,
id: "ClownMakeup_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 1,
colorSlot: [true, false, false],
},
ClownMakeup: {
gameName: "Clown Makeup",
fileName: "ClownMakeup",
equipmentLayer: 6,
id: "ClownMakeup",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
DogTag: {
gameName: "Dog Tag",
fileName: "DogTag",
equipmentLayer: 6,
id: "DogTag",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 6, 8, 9], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [false, false, false],
},
DominoMask: {
gameName: "Domino Mask",
fileName: "DominoMask",
equipmentLayer: 6,
id: "DominoMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [false, true, false],
},
Earpiece: {
gameName: "Earpiece",
fileName: "Earpiece",
equipmentLayer: 6,
id: "Earpiece",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [false, false, false],
},
GasMask: {
gameName: "Gas Mask",
fileName: "GasMask",
equipmentLayer: 6,
id: "GasMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
GasMask2: {
gameName: "Gas Mask 2",
fileName: "GasMask2",
equipmentLayer: 6,
id: "GasMask2",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Glasses: {
gameName: "Glasses",
fileName: "Glasses",
equipmentLayer: 6,
id: "Glasses",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
GoalieMask: {
gameName: "Goalie Mask",
fileName: "GoalieMask",
equipmentLayer: 6,
id: "GoalieMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [false, false, false],
},
Goggles: {
gameName: "Goggles",
fileName: "Goggles",
equipmentLayer: 6,
id: "Goggles",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Mask: {
gameName: "Mask",
fileName: "Mask",
equipmentLayer: 6,
id: "Mask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Moustache: {
gameName: "Moustache",
fileName: "Moustache",
equipmentLayer: 6,
id: "Moustache",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 4, 5, 7, 8], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [true, false, false],
},
RestraintMask: {
gameName: "Restraint Mask",
fileName: "RestraintMask",
equipmentLayer: 6,
id: "RestraintMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
SantaMask: {
gameName: "Santa Mask",
fileName: "SantaMask",
equipmentLayer: 6,
id: "SantaMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [false, false, false],
},
Scarf: {
gameName: "Scarf",
fileName: "Scarf",
equipmentLayer: 6,
id: "Scarf",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 5, 6, 8, 9], [], [8], [], []],
gender: 2,
colorSlot: [true, false, false],
},
SmallMoustache: {
gameName: "Small Moustache",
fileName: "SmallMoustache",
equipmentLayer: 6,
id: "SmallMoustache",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 2, 3, 4, 7], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [true, false, false],
},
StuddedLeatherMask: {
gameName: "Studded Leather Mask",
fileName: "StuddedLeatherMask",
equipmentLayer: 6,
id: "StuddedLeatherMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [true, false, false],
},
SunGlasses: {
gameName: "Sunglasses",
fileName: "SunGlasses",
equipmentLayer: 6,
id: "SunGlasses",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [false, true, false],
},
Vizor: {
gameName: "Vizor",
fileName: "Vizor",
equipmentLayer: 6,
id: "Vizor",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
AmmoBelt_fem: {
gameName: "Ammo Belt",
fileName: "AmmoBelt_fem",
equipmentLayer: 5,
id: "AmmoBelt_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, false, false],
},
AmmoBelt: {
gameName: "Ammo Belt",
fileName: "AmmoBelt",
equipmentLayer: 5,
id: "AmmoBelt",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
Apron_fem: {
gameName: "Apron",
fileName: "Apron_fem",
equipmentLayer: 5,
id: "Apron_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 9, 10, 18, 19, 20],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
Apron: {
gameName: "Apron",
fileName: "Apron",
equipmentLayer: 5,
id: "Apron",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 9, 10, 18, 19, 20],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
AviatorJacket_fem: {
gameName: "Aviator Jacket",
fileName: "AviatorJacket_fem",
equipmentLayer: 5,
id: "AviatorJacket_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
AviatorJacket: {
gameName: "Aviator Jacket",
fileName: "AviatorJacket",
equipmentLayer: 5,
id: "AviatorJacket",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
BlazerWithShirt_fem: {
gameName: "Blazer with Shirt",
fileName: "BlazerWithShirt_fem",
equipmentLayer: 5,
id: "BlazerWithShirt_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
BlazerWithShirt: {
gameName: "Blazer with Shirt",
fileName: "BlazerWithShirt",
equipmentLayer: 5,
id: "BlazerWithShirt",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
Coat_fem: {
gameName: "Coat",
fileName: "Coat_fem",
equipmentLayer: 5,
id: "Coat_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[0, 1],
],
gender: 1,
colorSlot: [true, true, false],
},
Coat: {
gameName: "Coat",
fileName: "Coat",
equipmentLayer: 5,
id: "Coat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[0, 1],
],
gender: 0,
colorSlot: [true, true, false],
},
CoatBlack_fem: {
gameName: "Coat (Black)",
fileName: "CoatBlack_fem",
equipmentLayer: 5,
id: "CoatBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[0, 1],
],
gender: 1,
colorSlot: [true, true, false],
},
CoatBlack: {
gameName: "Coat (Black)",
fileName: "CoatBlack",
equipmentLayer: 5,
id: "CoatBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[0, 1],
],
gender: 0,
colorSlot: [true, true, false],
},
GrenadeBelt_fem: {
gameName: "Grenade Belt",
fileName: "GrenadeBelt_fem",
equipmentLayer: 5,
id: "GrenadeBelt_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [false, false, false],
},
GrenadeBelt: {
gameName: "Grenade Belt",
fileName: "GrenadeBelt",
equipmentLayer: 5,
id: "GrenadeBelt",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [false, false, false],
},
Jacket_fem: {
gameName: "Jacket",
fileName: "Jacket_fem",
equipmentLayer: 5,
id: "Jacket_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
Jacket: {
gameName: "Jacket",
fileName: "Jacket",
equipmentLayer: 5,
id: "Jacket",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
JacketBlack_fem: {
gameName: "Jacket (Black)",
fileName: "JacketBlack_fem",
equipmentLayer: 5,
id: "JacketBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
JacketBlack: {
gameName: "Jacket (Black)",
fileName: "JacketBlack",
equipmentLayer: 5,
id: "JacketBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
KevlarVest_fem: {
gameName: "Kevlar Vest",
fileName: "KevlarVest_fem",
equipmentLayer: 5,
id: "KevlarVest_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, false, false],
},
KevlarVest: {
gameName: "Kevlar Vest",
fileName: "KevlarVest",
equipmentLayer: 5,
id: "KevlarVest",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
MetroLawJacket_fem: {
gameName: "MetroLaw Jacket",
fileName: "MetroLawJacket_fem",
equipmentLayer: 5,
id: "MetroLawJacket_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
MetroLawJacket: {
gameName: "MetroLaw Jacket",
fileName: "MetroLawJacket",
equipmentLayer: 5,
id: "MetroLawJacket",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
MilitaryJacket_fem: {
gameName: "Military Jacket",
fileName: "MilitaryJacket_fem",
equipmentLayer: 5,
id: "MilitaryJacket_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
MilitaryJacket: {
gameName: "Military Jacket",
fileName: "MilitaryJacket",
equipmentLayer: 5,
id: "MilitaryJacket",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
OfficerJacket_fem: {
gameName: "Officer's Jacket",
fileName: "OfficerJacket_fem",
equipmentLayer: 5,
id: "OfficerJacket_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
OfficerJacket: {
gameName: "Officer's Jacket",
fileName: "OfficerJacket",
equipmentLayer: 5,
id: "OfficerJacket",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
Poncho_fem: {
gameName: "Poncho",
fileName: "Poncho_fem",
equipmentLayer: 5,
id: "Poncho_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
Poncho: {
gameName: "Poncho",
fileName: "Poncho",
equipmentLayer: 5,
id: "Poncho",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [0, 1, 2, 3], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
Poncho2_fem: {
gameName: "Poncho 2",
fileName: "Poncho2_fem",
equipmentLayer: 5,
id: "Poncho2_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
Poncho2: {
gameName: "Poncho 2",
fileName: "Poncho2",
equipmentLayer: 5,
id: "Poncho2",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [0, 1, 2, 3], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
Robe_fem: {
gameName: "Robe",
fileName: "Robe_fem",
equipmentLayer: 5,
id: "Robe_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
Robe: {
gameName: "Robe",
fileName: "Robe",
equipmentLayer: 5,
id: "Robe",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
ShoulderHolster_fem: {
gameName: "Shoulder Holster",
fileName: "ShoulderHolster_fem",
equipmentLayer: 5,
id: "ShoulderHolster_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, true, false],
},
ShoulderHolster: {
gameName: "Shoulder Holster",
fileName: "ShoulderHolster",
equipmentLayer: 5,
id: "ShoulderHolster",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
StripedSuitJacket_fem: {
gameName: "Striped Suit Jacket",
fileName: "StripedSuitJacket_fem",
equipmentLayer: 5,
id: "StripedSuitJacket_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
StripedSuitJacket: {
gameName: "Striped Suit Jacket",
fileName: "StripedSuitJacket",
equipmentLayer: 5,
id: "StripedSuitJacket",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
StuddedJacket_fem: {
gameName: "Studded Jacket",
fileName: "StuddedJacket_fem",
equipmentLayer: 5,
id: "StuddedJacket_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
StuddedJacket: {
gameName: "Studded Jacket",
fileName: "StuddedJacket",
equipmentLayer: 5,
id: "StuddedJacket",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
StuddedVest_fem: {
gameName: "Studded Vest",
fileName: "StuddedVest_fem",
equipmentLayer: 5,
id: "StuddedVest_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
StuddedVest: {
gameName: "Studded Vest",
fileName: "StuddedVest",
equipmentLayer: 5,
id: "StuddedVest",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [0, 1, 2, 3], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
SuitJacket_fem: {
gameName: "Suit Jacket",
fileName: "SuitJacket_fem",
equipmentLayer: 5,
id: "SuitJacket_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
SuitJacket: {
gameName: "Suit Jacket",
fileName: "SuitJacket",
equipmentLayer: 5,
id: "SuitJacket",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
SuitJacketBlack_fem: {
gameName: "Suit Jacket (Black)",
fileName: "SuitJacketBlack_fem",
equipmentLayer: 5,
id: "SuitJacketBlack_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
SuitJacketBlack: {
gameName: "Suit Jacket (Black)",
fileName: "SuitJacketBlack",
equipmentLayer: 5,
id: "SuitJacketBlack",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
Suspenders_fem: {
gameName: "Suspenders",
fileName: "Suspenders_fem",
equipmentLayer: 5,
id: "Suspenders_fem",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, true, false],
},
Suspenders: {
gameName: "Suspenders",
fileName: "Suspenders",
equipmentLayer: 5,
id: "Suspenders",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
Vest_fem: {
gameName: "Vest",
fileName: "Vest_fem",
equipmentLayer: 5,
id: "Vest_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
Vest: {
gameName: "Vest",
fileName: "Vest",
equipmentLayer: 5,
id: "Vest",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [0, 1, 2, 3], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
VestBlack_fem: {
gameName: "Vest (Black)",
fileName: "VestBlack_fem",
equipmentLayer: 5,
id: "VestBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
VestBlack: {
gameName: "Vest (Black)",
fileName: "VestBlack",
equipmentLayer: 5,
id: "VestBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [0, 1, 2, 3], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
BodyArmor_fem: {
gameName: "Body Armor",
fileName: "BodyArmor_fem",
equipmentLayer: 1,
id: "BodyArmor_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
BodyArmor: {
gameName: "Body Armor",
fileName: "BodyArmor",
equipmentLayer: 1,
id: "BodyArmor",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
HawaiiShirt_fem: {
gameName: "Hawaii Shirt",
fileName: "HawaiiShirt_fem",
equipmentLayer: 1,
id: "HawaiiShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
HawaiiShirt: {
gameName: "Hawaii Shirt",
fileName: "HawaiiShirt",
equipmentLayer: 1,
id: "HawaiiShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
LeatherJacket_fem: {
gameName: "Leather Jacket",
fileName: "LeatherJacket_fem",
equipmentLayer: 1,
id: "LeatherJacket_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
LeatherJacket: {
gameName: "Leather Jacket",
fileName: "LeatherJacket",
equipmentLayer: 1,
id: "LeatherJacket",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
LeatherJacketBlack_fem: {
gameName: "Leather Jacket (black)",
fileName: "LeatherJacketBlack_fem",
equipmentLayer: 1,
id: "LeatherJacketBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
LeatherJacketBlack: {
gameName: "Leather Jacket (black)",
fileName: "LeatherJacketBlack",
equipmentLayer: 1,
id: "LeatherJacketBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
LumberjackShirt_fem: {
gameName: "Lumberjack Shirt",
fileName: "LumberjackShirt_fem",
equipmentLayer: 1,
id: "LumberjackShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
LumberjackShirt: {
gameName: "Lumberjack Shirt",
fileName: "LumberjackShirt",
equipmentLayer: 1,
id: "LumberjackShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
LumberjackShirt2_fem: {
gameName: "Short-sleeved Lumberjack Shirt",
fileName: "LumberjackShirt2_fem",
equipmentLayer: 1,
id: "LumberjackShirt2_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
LumberjackShirt2: {
gameName: "Short-sleeved Lumberjack Shirt",
fileName: "LumberjackShirt2",
equipmentLayer: 1,
id: "LumberjackShirt2",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
MilitaryShirt_fem: {
gameName: "Military Shirt",
fileName: "MilitaryShirt_fem",
equipmentLayer: 1,
id: "MilitaryShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
MilitaryShirt: {
gameName: "Military Shirt",
fileName: "MilitaryShirt",
equipmentLayer: 1,
id: "MilitaryShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
PoliceShirt_fem: {
gameName: "Police Shirt",
fileName: "PoliceShirt_fem",
equipmentLayer: 1,
id: "PoliceShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
PoliceShirt: {
gameName: "Police Shirt",
fileName: "PoliceShirt",
equipmentLayer: 1,
id: "PoliceShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
Shirt_fem: {
gameName: "Shirt",
fileName: "Shirt_fem",
equipmentLayer: 1,
id: "Shirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
Shirt: {
gameName: "Shirt",
fileName: "Shirt",
equipmentLayer: 1,
id: "Shirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
ShirtAb: {
gameName: "ShirtAb",
fileName: "ShirtAb",
equipmentLayer: 1,
id: "ShirtAb",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
ShirtWithBowtie_fem: {
gameName: "Shirt With Bowtie",
fileName: "ShirtWithBowtie_fem",
equipmentLayer: 1,
id: "ShirtWithBowtie_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
ShirtWithBowtie: {
gameName: "Shirt With Bowtie",
fileName: "ShirtWithBowtie",
equipmentLayer: 1,
id: "ShirtWithBowtie",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
ShirtWithTie_fem: {
gameName: "Shirt With Tie",
fileName: "ShirtWithTie_fem",
equipmentLayer: 1,
id: "ShirtWithTie_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
ShirtWithTie: {
gameName: "Shirt With Tie",
fileName: "ShirtWithTie",
equipmentLayer: 1,
id: "ShirtWithTie",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
SleevelessShirt_fem: {
gameName: "Sleeveless Shirt",
fileName: "SleevelessShirt_fem",
equipmentLayer: 1,
id: "SleevelessShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, false, false],
},
SleevelessShirt: {
gameName: "Sleeveless Shirt",
fileName: "SleevelessShirt",
equipmentLayer: 1,
id: "SleevelessShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
SleevelessShirtBlack_fem: {
gameName: "Sleeveless Shirt (Black)",
fileName: "SleevelessShirtBlack_fem",
equipmentLayer: 1,
id: "SleevelessShirtBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, false, false],
},
SleevelessShirtBlack: {
gameName: "Sleeveless Shirt (Black)",
fileName: "SleevelessShirtBlack",
equipmentLayer: 1,
id: "SleevelessShirtBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
StuddedLeatherSuit_fem: {
gameName: "Studded Leather Suit",
fileName: "StuddedLeatherSuit_fem",
equipmentLayer: 1,
id: "StuddedLeatherSuit_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
StuddedLeatherSuit: {
gameName: "Studded Leather Suit",
fileName: "StuddedLeatherSuit",
equipmentLayer: 1,
id: "StuddedLeatherSuit",
jacketUnderBelt: true,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
Sweater_fem: {
gameName: "Sweater",
fileName: "Sweater_fem",
equipmentLayer: 1,
id: "Sweater_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
Sweater: {
gameName: "Sweater",
fileName: "Sweater",
equipmentLayer: 1,
id: "Sweater",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
SweaterBlack_fem: {
gameName: "Sweater (Black)",
fileName: "SweaterBlack_fem",
equipmentLayer: 1,
id: "SweaterBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
SweaterBlack: {
gameName: "Sweater (Black)",
fileName: "SweaterBlack",
equipmentLayer: 1,
id: "SweaterBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
TornShirt_fem: {
gameName: "Torn Shirt",
fileName: "TornShirt_fem",
equipmentLayer: 1,
id: "TornShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
TornShirt: {
gameName: "Torn Shirt",
fileName: "TornShirt",
equipmentLayer: 1,
id: "TornShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
TrainingShirt_fem: {
gameName: "Training Shirt",
fileName: "TrainingShirt_fem",
equipmentLayer: 1,
id: "TrainingShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
TrainingShirt: {
gameName: "Training Shirt",
fileName: "TrainingShirt",
equipmentLayer: 1,
id: "TrainingShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
TShirt_fem: {
gameName: "T-shirt",
fileName: "TShirt_fem",
equipmentLayer: 1,
id: "TShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
TShirt: {
gameName: "T-shirt",
fileName: "TShirt",
equipmentLayer: 1,
id: "TShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
UnbuttonedShirt_fem: {
gameName: "Unbuttoned Shirt",
fileName: "UnbuttonedShirt_fem",
equipmentLayer: 1,
id: "UnbuttonedShirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17],
[9, 10, 11],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
UnbuttonedShirt: {
gameName: "Unbuttoned Shirt",
fileName: "UnbuttonedShirt",
equipmentLayer: 1,
id: "UnbuttonedShirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17],
[],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
Boots: {
gameName: "Boots",
fileName: "Boots",
equipmentLayer: 4,
id: "Boots",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
BootsBlack: {
gameName: "Boots (black)",
fileName: "BootsBlack",
equipmentLayer: 4,
id: "BootsBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
HighHeels: {
gameName: "High Heels",
fileName: "HighHeels",
equipmentLayer: 4,
id: "HighHeels",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
RidingBoots: {
gameName: "Riding Boots",
fileName: "RidingBoots",
equipmentLayer: 4,
id: "RidingBoots",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
RidingBootsBlack: {
gameName: "Riding Boots (black)",
fileName: "RidingBootsBlack",
equipmentLayer: 4,
id: "RidingBootsBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
Shoes: {
gameName: "Shoes",
fileName: "Shoes",
equipmentLayer: 4,
id: "Shoes",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
ShoesBlack: {
gameName: "Shoes (black)",
fileName: "ShoesBlack",
equipmentLayer: 4,
id: "ShoesBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
Sneakers: {
gameName: "Sneakers",
fileName: "Sneakers",
equipmentLayer: 4,
id: "Sneakers",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[],
[9, 10, 11],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20],
[],
],
gender: 2,
colorSlot: [true, true, false],
},
FingerlessGloves: {
gameName: "Fingerless Gloves",
fileName: "FingerlessGloves",
equipmentLayer: 7,
id: "FingerlessGloves",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [], [11, 12], [0, 1, 2, 3, 4, 5, 6, 7], [], []],
gender: 2,
colorSlot: [true, false, false],
},
FingerlessGlovesBlack: {
gameName: "Fingerless Gloves (Black)",
fileName: "FingerlessGlovesBlack",
equipmentLayer: 7,
id: "FingerlessGlovesBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [], [11, 12], [0, 1, 2, 3, 4, 5, 6, 7], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Gloves: {
gameName: "Gloves",
fileName: "Gloves",
equipmentLayer: 7,
id: "Gloves",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [], [11, 12], [0, 1, 2, 3, 4, 5, 6, 7], [], []],
gender: 2,
colorSlot: [true, false, false],
},
GlovesBlack: {
gameName: "Gloves (Black)",
fileName: "GlovesBlack",
equipmentLayer: 7,
id: "GlovesBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [], [11, 12], [0, 1, 2, 3, 4, 5, 6, 7], [], []],
gender: 2,
colorSlot: [true, false, false],
},
SafetyGloves_fem: {
gameName: "Safety Gloves",
fileName: "SafetyGloves_fem",
equipmentLayer: 7,
id: "SafetyGloves_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
SafetyGloves: {
gameName: "Safety Gloves",
fileName: "SafetyGloves",
equipmentLayer: 7,
id: "SafetyGloves",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
SafetyGlovesBlack_fem: {
gameName: "Safety Gloves (Black)",
fileName: "SafetyGlovesBlack_fem",
equipmentLayer: 7,
id: "SafetyGlovesBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7],
[],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
SafetyGlovesBlack: {
gameName: "Safety Gloves (Black)",
fileName: "SafetyGlovesBlack",
equipmentLayer: 7,
id: "SafetyGlovesBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7],
[],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
Afro: {
gameName: "Afro",
fileName: "Afro",
equipmentLayer: 8,
id: "Afro",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [true, false, false],
},
AviatorHat: {
gameName: "Aviator Hat",
fileName: "AviatorHat",
equipmentLayer: 8,
id: "AviatorHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
AviatorHat2_fem: {
gameName: "Aviator Hat 2",
fileName: "AviatorHat2_fem",
equipmentLayer: 8,
id: "AviatorHat2_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 1,
colorSlot: [true, true, false],
},
AviatorHat2: {
gameName: "Aviator Hat 2",
fileName: "AviatorHat2",
equipmentLayer: 8,
id: "AviatorHat2",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
BaseballCap: {
gameName: "Baseball Cap",
fileName: "BaseballCap",
equipmentLayer: 8,
id: "BaseballCap",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Beret: {
gameName: "Beret",
fileName: "Beret",
equipmentLayer: 8,
id: "Beret",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
BucketHat: {
gameName: "Bucket Hat",
fileName: "BucketHat",
equipmentLayer: 8,
id: "BucketHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Buzzcut: {
gameName: "Buzzcut",
fileName: "Buzzcut",
equipmentLayer: 8,
id: "Buzzcut",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Cap: {
gameName: "Cap",
fileName: "Cap",
equipmentLayer: 8,
id: "Cap",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
ChefHat: {
gameName: "Chef Hat",
fileName: "ChefHat",
equipmentLayer: 8,
id: "ChefHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
CowboyHat: {
gameName: "Cowboy Hat",
fileName: "CowboyHat",
equipmentLayer: 8,
id: "CowboyHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Fedora: {
gameName: "Fedora",
fileName: "Fedora",
equipmentLayer: 8,
id: "Fedora",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Fedora2: {
gameName: "Fedora 2",
fileName: "Fedora2",
equipmentLayer: 8,
id: "Fedora2",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
FedoraBlack: {
gameName: "Fedora (Black)",
fileName: "FedoraBlack",
equipmentLayer: 8,
id: "FedoraBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Flatcap: {
gameName: "Flatcap",
fileName: "Flatcap",
equipmentLayer: 8,
id: "Flatcap",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
FLDisguise: {
gameName: "Glasses and Cigarette Holder",
fileName: "FLDisguise",
equipmentLayer: 8,
id: "FLDisguise",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
GeneralHat: {
gameName: "General's Hat",
fileName: "GeneralHat",
equipmentLayer: 8,
id: "GeneralHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
GermanHelmet: {
gameName: "Stahlhelm",
fileName: "GermanHelmet",
equipmentLayer: 8,
id: "GermanHelmet",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
HazmatMask: {
gameName: "Hazmat Mask",
fileName: "HazmatMask",
equipmentLayer: 8,
id: "HazmatMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Headband: {
gameName: "Headband",
fileName: "Headband",
equipmentLayer: 8,
id: "Headband",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Helmet: {
gameName: "Helmet",
fileName: "Helmet",
equipmentLayer: 8,
id: "Helmet",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Helmet2: {
gameName: "Helmet 2",
fileName: "Helmet2",
equipmentLayer: 8,
id: "Helmet2",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Hood: {
gameName: "Hood",
fileName: "Hood",
equipmentLayer: 8,
id: "Hood",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 6, 8, 9],
[],
[9, 10, 11],
[],
[],
],
gender: 2,
colorSlot: [true, false, false],
},
MetroLawGasMask: {
gameName: "MetroLaw Gas Mask",
fileName: "MetroLawGasMask",
equipmentLayer: 8,
id: "MetroLawGasMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
MetroLawMask: {
gameName: "MetroLaw Mask",
fileName: "MetroLawMask",
equipmentLayer: 8,
id: "MetroLawMask",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Mohawk: {
gameName: "Mohawk",
fileName: "Mohawk",
equipmentLayer: 8,
id: "Mohawk",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [true, false, false],
},
MotorcycleHelmet: {
gameName: "Motorcycle Helmet",
fileName: "MotorcycleHelmet",
equipmentLayer: 8,
id: "MotorcycleHelmet",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
OfficerHat: {
gameName: "Officer's Hat",
fileName: "OfficerHat",
equipmentLayer: 8,
id: "OfficerHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
PithHelmet: {
gameName: "Pith Helmet",
fileName: "PithHelmet",
equipmentLayer: 8,
id: "PithHelmet",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
PoliceHat: {
gameName: "Police Hat",
fileName: "PoliceHat",
equipmentLayer: 8,
id: "PoliceHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
RiceHat: {
gameName: "Rice Hat",
fileName: "RiceHat",
equipmentLayer: 8,
id: "RiceHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [false, false, false],
},
SantaHat: {
gameName: "Santa Hat",
fileName: "SantaHat",
equipmentLayer: 8,
id: "SantaHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
SergeantHat: {
gameName: "Sergeant's Hat",
fileName: "SergeantHat",
equipmentLayer: 8,
id: "SergeantHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
Sombrero: {
gameName: "Sombrero",
fileName: "Sombrero",
equipmentLayer: 8,
id: "Sombrero",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
Sombrero2: {
gameName: "Sombrero 2",
fileName: "Sombrero2",
equipmentLayer: 8,
id: "Sombrero2",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
SpikedHelmet: {
gameName: "Spiked Helmet",
fileName: "SpikedHelmet",
equipmentLayer: 8,
id: "SpikedHelmet",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
StylishHat: {
gameName: "Stylish Hat",
fileName: "StylishHat",
equipmentLayer: 8,
id: "StylishHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
TopHat: {
gameName: "Tophat",
fileName: "TopHat",
equipmentLayer: 8,
id: "TopHat",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, true, false],
},
WeldingHelmet: {
gameName: "Welding Helmet",
fileName: "WeldingHelmet",
equipmentLayer: 8,
id: "WeldingHelmet",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
WoolCap: {
gameName: "Wool Cap",
fileName: "WoolCap",
equipmentLayer: 8,
id: "WoolCap",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[0, 1, 2, 3, 4, 5, 6, 7, 8], [], [], [], [], []],
gender: 2,
colorSlot: [true, false, false],
},
HurtLevel1: {
gameName: "HurtLevel1",
fileName: "HurtLevel1",
equipmentLayer: 9,
id: "HurtLevel1",
jacketUnderBelt: false,
canEquip: false,
canScript: false,
colorPalette: "Skin",
width: 16,
height: 16,
data: [[0, 1, 2, 4, 5, 7, 8], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [false, false, false],
},
HurtLevel2: {
gameName: "HurtLevel2",
fileName: "HurtLevel2",
equipmentLayer: 9,
id: "HurtLevel2",
jacketUnderBelt: false,
canEquip: false,
canScript: false,
colorPalette: "Skin",
width: 16,
height: 16,
data: [[0, 1, 2, 4, 5, 7, 8], [], [], [9, 10, 11], [], []],
gender: 2,
colorSlot: [false, false, false],
},
CamoPants_fem: {
gameName: "Camo Pants",
fileName: "CamoPants_fem",
equipmentLayer: 2,
id: "CamoPants_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
CamoPants: {
gameName: "Camo Pants",
fileName: "CamoPants",
equipmentLayer: 2,
id: "CamoPants",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
Pants_fem: {
gameName: "Pants",
fileName: "Pants_fem",
equipmentLayer: 2,
id: "Pants_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
Pants: {
gameName: "Pants",
fileName: "Pants",
equipmentLayer: 2,
id: "Pants",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
PantsBlack_fem: {
gameName: "Pants (Black)",
fileName: "PantsBlack_fem",
equipmentLayer: 2,
id: "PantsBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
PantsBlack: {
gameName: "Pants (Black)",
fileName: "PantsBlack",
equipmentLayer: 2,
id: "PantsBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
Shorts_fem: {
gameName: "Shorts",
fileName: "Shorts_fem",
equipmentLayer: 2,
id: "Shorts_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
Shorts: {
gameName: "Shorts",
fileName: "Shorts",
equipmentLayer: 2,
id: "Shorts",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
ShortsBlack_fem: {
gameName: "Shorts (Black)",
fileName: "ShortsBlack_fem",
equipmentLayer: 2,
id: "ShortsBlack_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
ShortsBlack: {
gameName: "Shorts (Black)",
fileName: "ShortsBlack",
equipmentLayer: 2,
id: "ShortsBlack",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
Skirt_fem: {
gameName: "Skirt",
fileName: "Skirt_fem",
equipmentLayer: 2,
id: "Skirt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
Skirt: {
gameName: "Skirt",
fileName: "Skirt",
equipmentLayer: 2,
id: "Skirt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
StripedPants_fem: {
gameName: "Striped Pants",
fileName: "StripedPants_fem",
equipmentLayer: 2,
id: "StripedPants_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
StripedPants: {
gameName: "Striped Pants",
fileName: "StripedPants",
equipmentLayer: 2,
id: "StripedPants",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
TornPants_fem: {
gameName: "Torn Pants",
fileName: "TornPants_fem",
equipmentLayer: 2,
id: "TornPants_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, false, false],
},
TornPants: {
gameName: "Torn Pants",
fileName: "TornPants",
equipmentLayer: 2,
id: "TornPants",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[],
[0, 1, 2, 3, 4, 5, 6, 8, 9],
[],
[9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, false, false],
},
BearSkin: {
gameName: "Bear",
fileName: "BearSkin",
equipmentLayer: 0,
id: "BearSkin",
jacketUnderBelt: false,
canEquip: false,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 2,
colorSlot: [false, false, false],
},
Burnt_fem: {
gameName: "Burnt",
fileName: "Burnt_fem",
equipmentLayer: 0,
id: "Burnt_fem",
jacketUnderBelt: false,
canEquip: false,
canScript: false,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [false, false, false],
},
Burnt: {
gameName: "Burnt",
fileName: "Burnt",
equipmentLayer: 0,
id: "Burnt",
jacketUnderBelt: false,
canEquip: false,
canScript: false,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [false, false, false],
},
BurntSkin: {
gameName: "BurntSkin",
fileName: "BurntSkin",
equipmentLayer: 0,
id: "BurntSkin",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 2,
colorSlot: [false, false, false],
},
FrankenbearSkin: {
gameName: "Frankenbear",
fileName: "FrankenbearSkin",
equipmentLayer: 0,
id: "FrankenbearSkin",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingGoggles1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 2,
colorSlot: [false, true, false],
},
MechSkin: {
gameName: "Mech",
fileName: "MechSkin",
equipmentLayer: 0,
id: "MechSkin",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 2,
colorSlot: [true, true, false],
},
Normal_fem: {
gameName: "NormalFem",
fileName: "Normal_fem",
equipmentLayer: 0,
id: "Normal_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
Normal: {
gameName: "Normal",
fileName: "Normal",
equipmentLayer: 0,
id: "Normal",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
Tattoos_fem: {
gameName: "Tattoos",
fileName: "Tattoos_fem",
equipmentLayer: 0,
id: "Tattoos_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
Tattoos: {
gameName: "Tattoos",
fileName: "Tattoos",
equipmentLayer: 0,
id: "Tattoos",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
Warpaint_fem: {
gameName: "Warpaint",
fileName: "Warpaint_fem",
equipmentLayer: 0,
id: "Warpaint_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [true, true, false],
},
Warpaint: {
gameName: "Warpaint",
fileName: "Warpaint",
equipmentLayer: 0,
id: "Warpaint",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [true, true, false],
},
Zombie_fem: {
gameName: "Zombie",
fileName: "Zombie_fem",
equipmentLayer: 0,
id: "Zombie_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 1,
colorSlot: [false, false, false],
},
Zombie: {
gameName: "Zombie",
fileName: "Zombie",
equipmentLayer: 0,
id: "Zombie",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Skin",
width: 16,
height: 16,
data: [
[0, 1, 2, 3, 4, 5, 6, 7, 8],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
[0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11],
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
],
[],
],
gender: 0,
colorSlot: [false, false, false],
},
AmmoBeltWaist_fem: {
gameName: "Ammo Belt",
fileName: "AmmoBeltWaist_fem",
equipmentLayer: 3,
id: "AmmoBeltWaist_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 1,
colorSlot: [true, false, false],
},
AmmoBeltWaist: {
gameName: "Ammo Belt",
fileName: "AmmoBeltWaist",
equipmentLayer: 3,
id: "AmmoBeltWaist",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
Belt_fem: {
gameName: "Belt",
fileName: "Belt_fem",
equipmentLayer: 3,
id: "Belt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 1,
colorSlot: [true, true, false],
},
Belt: {
gameName: "Belt",
fileName: "Belt",
equipmentLayer: 3,
id: "Belt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
CombatBelt_fem: {
gameName: "Combat Belt",
fileName: "CombatBelt_fem",
equipmentLayer: 3,
id: "CombatBelt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [9, 10, 11], [], []],
gender: 1,
colorSlot: [true, false, false],
},
CombatBelt: {
gameName: "Combat Belt",
fileName: "CombatBelt",
equipmentLayer: 3,
id: "CombatBelt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
Sash_fem: {
gameName: "Sash",
fileName: "Sash_fem",
equipmentLayer: 3,
id: "Sash_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 1,
colorSlot: [true, false, false],
},
Sash: {
gameName: "Sash",
fileName: "Sash",
equipmentLayer: 3,
id: "Sash",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
SatchelBelt_fem: {
gameName: "Satchel Belt",
fileName: "SatchelBelt_fem",
equipmentLayer: 3,
id: "SatchelBelt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 1,
colorSlot: [true, false, false],
},
SatchelBelt: {
gameName: "Satchel Belt",
fileName: "SatchelBelt",
equipmentLayer: 3,
id: "SatchelBelt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "ClothingDark1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, false, false],
},
SmallBelt_fem: {
gameName: "Small Belt",
fileName: "SmallBelt_fem",
equipmentLayer: 3,
id: "SmallBelt_fem",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 1,
colorSlot: [true, true, false],
},
SmallBelt: {
gameName: "Small Belt",
fileName: "SmallBelt",
equipmentLayer: 3,
id: "SmallBelt",
jacketUnderBelt: false,
canEquip: true,
canScript: true,
colorPalette: "Clothing1",
width: 16,
height: 16,
data: [[], [0, 1, 2, 3, 4, 5, 6, 8, 9], [], [], [], []],
gender: 0,
colorSlot: [true, true, false],
},
};
items[NULL_ITEM.id] = NULL_ITEM;
export type ItemID =
| "None"
| "AgentSunglasses"
| "Armband_fem"
| "Armband"
| "Balaclava"
| "Cigar"
| "ClownMakeup_fem"
| "ClownMakeup"
| "DogTag"
| "DominoMask"
| "Earpiece"
| "GasMask"
| "GasMask2"
| "Glasses"
| "GoalieMask"
| "Goggles"
| "Mask"
| "Moustache"
| "RestraintMask"
| "SantaMask"
| "Scarf"
| "SmallMoustache"
| "StuddedLeatherMask"
| "SunGlasses"
| "Vizor"
| "AmmoBelt_fem"
| "AmmoBelt"
| "Apron_fem"
| "Apron"
| "AviatorJacket_fem"
| "AviatorJacket"
| "BlazerWithShirt_fem"
| "BlazerWithShirt"
| "Coat_fem"
| "Coat"
| "CoatBlack_fem"
| "CoatBlack"
| "GrenadeBelt_fem"
| "GrenadeBelt"
| "Jacket_fem"
| "Jacket"
| "JacketBlack_fem"
| "JacketBlack"
| "KevlarVest_fem"
| "KevlarVest"
| "MetroLawJacket_fem"
| "MetroLawJacket"
| "MilitaryJacket_fem"
| "MilitaryJacket"
| "OfficerJacket_fem"
| "OfficerJacket"
| "Poncho_fem"
| "Poncho"
| "Poncho2_fem"
| "Poncho2"
| "Robe_fem"
| "Robe"
| "ShoulderHolster_fem"
| "ShoulderHolster"
| "StripedSuitJacket_fem"
| "StripedSuitJacket"
| "StuddedJacket_fem"
| "StuddedJacket"
| "StuddedVest_fem"
| "StuddedVest"
| "SuitJacket_fem"
| "SuitJacket"
| "SuitJacketBlack_fem"
| "SuitJacketBlack"
| "Suspenders_fem"
| "Suspenders"
| "Vest_fem"
| "Vest"
| "VestBlack_fem"
| "VestBlack"
| "BodyArmor_fem"
| "BodyArmor"
| "HawaiiShirt_fem"
| "HawaiiShirt"
| "LeatherJacket_fem"
| "LeatherJacket"
| "LeatherJacketBlack_fem"
| "LeatherJacketBlack"
| "LumberjackShirt_fem"
| "LumberjackShirt"
| "LumberjackShirt2_fem"
| "LumberjackShirt2"
| "MilitaryShirt_fem"
| "MilitaryShirt"
| "PoliceShirt_fem"
| "PoliceShirt"
| "Shirt_fem"
| "Shirt"
| "ShirtAb"
| "ShirtWithBowtie_fem"
| "ShirtWithBowtie"
| "ShirtWithTie_fem"
| "ShirtWithTie"
| "SleevelessShirt_fem"
| "SleevelessShirt"
| "SleevelessShirtBlack_fem"
| "SleevelessShirtBlack"
| "StuddedLeatherSuit_fem"
| "StuddedLeatherSuit"
| "Sweater_fem"
| "Sweater"
| "SweaterBlack_fem"
| "SweaterBlack"
| "TornShirt_fem"
| "TornShirt"
| "TrainingShirt_fem"
| "TrainingShirt"
| "TShirt_fem"
| "TShirt"
| "UnbuttonedShirt_fem"
| "UnbuttonedShirt"
| "Boots"
| "BootsBlack"
| "HighHeels"
| "RidingBoots"
| "RidingBootsBlack"
| "Shoes"
| "ShoesBlack"
| "Sneakers"
| "FingerlessGloves"
| "FingerlessGlovesBlack"
| "Gloves"
| "GlovesBlack"
| "SafetyGloves_fem"
| "SafetyGloves"
| "SafetyGlovesBlack_fem"
| "SafetyGlovesBlack"
| "Afro"
| "AviatorHat"
| "AviatorHat2_fem"
| "AviatorHat2"
| "BaseballCap"
| "Beret"
| "BucketHat"
| "Buzzcut"
| "Cap"
| "ChefHat"
| "CowboyHat"
| "Fedora"
| "Fedora2"
| "FedoraBlack"
| "Flatcap"
| "FLDisguise"
| "GeneralHat"
| "GermanHelmet"
| "HazmatMask"
| "Headband"
| "Helmet"
| "Helmet2"
| "Hood"
| "MetroLawGasMask"
| "MetroLawMask"
| "Mohawk"
| "MotorcycleHelmet"
| "OfficerHat"
| "PithHelmet"
| "PoliceHat"
| "RiceHat"
| "SantaHat"
| "SergeantHat"
| "Sombrero"
| "Sombrero2"
| "SpikedHelmet"
| "StylishHat"
| "TopHat"
| "WeldingHelmet"
| "WoolCap"
| "HurtLevel1"
| "HurtLevel2"
| "CamoPants_fem"
| "CamoPants"
| "Pants_fem"
| "Pants"
| "PantsBlack_fem"
| "PantsBlack"
| "Shorts_fem"
| "Shorts"
| "ShortsBlack_fem"
| "ShortsBlack"
| "Skirt_fem"
| "Skirt"
| "StripedPants_fem"
| "StripedPants"
| "TornPants_fem"
| "TornPants"
| "BearSkin"
| "Burnt_fem"
| "Burnt"
| "BurntSkin"
| "FrankenbearSkin"
| "MechSkin"
| "Normal_fem"
| "Normal"
| "Tattoos_fem"
| "Tattoos"
| "Warpaint_fem"
| "Warpaint"
| "Zombie_fem"
| "Zombie"
| "AmmoBeltWaist_fem"
| "AmmoBeltWaist"
| "Belt_fem"
| "Belt"
| "CombatBelt_fem"
| "CombatBelt"
| "Sash_fem"
| "Sash"
| "SatchelBelt_fem"
| "SatchelBelt"
| "SmallBelt_fem"
| "SmallBelt";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment