Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Questions about outfits

A topic by hacksider created Dec 26, 2023 Views: 111 Replies: 2
Viewing posts 1 to 3

Just downloaded the demo but there's only one outfit options. Is there a way I can see some screenshot of the available outfits? I am aiming to have some modern RPG, just want to see if there's some tshirts and normal pants in there.

Developer

I'll make sure to get you a list with available outfit options tomorrow 😊

Developer

There you go:

characterData["outfit"] = [
  { value: "outfit2", name: "Skeleton Armor", category: "Armors" },
  { value: "outfit1", name: "Soldier Armor", category: "Armors" },
  { value: "outfit3", name: "Knight Armor", category: "Armors" },
  { value: "outfit4", name: "Captain Armor", category: "Armors" },
  { value: "outfit5", name: "General Armor", category: "Armors" },
  { value: "outfit16", name: "Dragoon Armor", category: "Armors" },
  { value: "outfit17", name: "Dragoon Captain", category: "Armors" },
  { value: "outfit23", name: "Roman Armor", category: "Armors" },
  { value: "outfit9", name: "Long Coat", category: "Coats" },
  { value: "outfit10", name: "Short Coat", category: "Coats" },
  { value: "outfit11", name: "Long Coat & Cape", category: "Coats"},
  { value: "outfit12", name: "Military Coat", category: "Coats" },
  { value: "outfit33", name: "Plague Doctor", category: "Coats" },
  { value: "outfit13", name: "Adventurer 1", category: "Adventure" },
  { value: "outfit14", name: "Adventurer 2", category: "Adventure" },
  { value: "outfit15", name: "Villain", category: "Adventure" },
  { value: "outfit7", name: "Festive Tunic", category: "Festive" },
  { value: "outfit8", name: "Official Tunic", category: "Festive" },
  { value: "outfit19", name: "Festive Clothing", category: "Festive" },
  { value: "outfit6", name: "Simple Tunic", category: "Simple" },
  { value: "outfit18", name: "Simple Clothing 1", category: "Simple" },
  { value: "outfit20", name: "Simple Clothing 2", category: "Simple" },
  { value: "outfit21", name: "Slave Clothing", category: "Simple" },
  { value: "outfit34", name: "Tattered Clothing", category: "Simple" },
  { value: "outfit24", name: "T-Shirt", category: "Modern" },
  { value: "outfit25", name: "Hoodie", category: "Modern" },
  { value: "outfit26", name: "Suit", category: "Modern" },
  { value: "outfit27", name: "Suit Open", category: "Modern" },
  { value: "outfit28", name: "Officer", category: "Modern" },
  { value: "outfit29", name: "Army", category: "Modern" },
  { value: "outfit30", name: "Party", category: "Modern" },
  { value: "outfit31", name: "School", category: "Modern" },
  { value: "outfit32", name: "Kimono", category: "Modern" },
  { value: "outfit35", name: "Firefighter", category: "Modern" },
  { value: "outfit36", name: "Futuristic", category: "Modern" },
  { value: "none", name: "None", category: "None" },
];
characterData["bottoms"] = [
  { value: "bottoms3", name: "Long w Shoes", category: "Long" },
  { value: "bottoms5", name: "Long w Boots", category: "Long" },
  { value: "bottoms7", name: "Armored", category: "Long" },
  { value: "bottoms8", name: "Army", category: "Long" },
  { value: "bottoms10", name: "Long w Sandals", category: "Long" },
  { value: "bottoms11", name: "Festive", category: "Long" },
  { value: "bottoms12", name: "Tattered", category: "Long" },
  { value: "bottoms1", name: "Shorts", category: "Short" },
  { value: "bottoms2", name: "Ripped Shorts", category: "Short" },
  { value: "bottoms13", name: "Socks w Sandals", category: "Short" },
  { value: "bottoms4", name: "Boots", category: "Just Boots" },
  { value: "bottoms6", name: "Military Boots", category: "Just Boots" },
  { value: "none", name: "None", category: 'None' },
]