_clothing_name 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # $clothing_name
  2. !! returns the name of the clothing (only used for coats and swimwear)
  3. !! ARGS 0 - clothing type
  4. !! ARGS 1 - clothing index
  5. if $ARGS[0] = 'swimwear':
  6. if ARGS[1] = 1:$RESULT = 'A baby-blue lacy one-piece barely covering the tummy, ending just short of the bottom of the ass.'
  7. if ARGS[1] = 2:$RESULT = 'A black one-piece swimsuit with straps for support, cut so the fabric shows off nearly all of the thighs in a seductive manner.'
  8. if ARGS[1] = 3:$RESULT = 'A two-piece black-and-red design showing off a little midriff, the bottom piece the size of a normal pair of panties.'
  9. if ARGS[1] = 4:$RESULT = 'A one-piece bathing suit in complete black, with white lines going across and accentuating the wearer''s figure.'
  10. if ARGS[1] = 5:$RESULT = 'A tribal designed two-piece in white and maroon, with leather straps, the top half showing off a bit of chest.'
  11. if ARGS[1] = 6:$RESULT = 'A tiny bikini in light orange and white, outlined with frilly fabric.'
  12. if ARGS[1] = 7:$RESULT = 'A black one-piece with highlighted cups for extra support and more emphasis on the chest area.'
  13. if ARGS[1] = 8:$RESULT = 'A small floral design bikini, with tiny straps that barely cover everything and show plenty of skin, perfect for a tan.'
  14. if ARGS[1] = 9:$RESULT = 'A unique two-piece with a simple knot-top and a tiny miniskirt, all in red.'
  15. if ARGS[1] = 10:$RESULT = 'A crimson bikini with white lace, the bottom is designed in a grid pattern to seductively show off your pubic area.'
  16. if ARGS[1] = 11:$RESULT = 'A classic two-piece bikini in pink white white polka dots covering it.'
  17. if ARGS[1] = 12:$RESULT = 'A vibrant yellow bikini with a halter top design.'
  18. if ARGS[1] = 13:$RESULT = 'A sexily-designed swimming suit with adjustments made to accent the backside of any girl.'
  19. if ARGS[1] = 14:$RESULT = 'A fashionable one-piece connected on one side to show off a large swath of stomach.'
  20. if ARGS[1] = 15:$RESULT = 'A slutty bikini designed off of a sling bikini, connected with tiny pieces of fabric and covering only the minimal needed.'
  21. if ARGS[1] = 16:$RESULT = 'A silver bikini bottom designed to highlight everything apart from the important thing.'
  22. if ARGS[1] = 17:$RESULT = 'A tiny red and black bikini dotted with diamonds, made for the girl who loves to show off her body.'
  23. if ARGS[1] = 18:$RESULT = 'Made for a whore, with tiny shiny red triangles of fabric covering the important parts.'
  24. if ARGS[1] = 19:$RESULT = 'A black bikini bottom seductively connected by chains.'
  25. if ARGS[1] = 20:$RESULT = 'A small white bikini bottom held by a knot.'
  26. if ARGS[1] = 21:$RESULT = 'A tiny white bikini bottom held by a knot, with frilly designs on it.'
  27. if ARGS[1] = 22:$RESULT = 'An incredibly slutty one-piece, with fabric covering only the bare minimum needed.'
  28. if ARGS[1] = 23:$RESULT = 'A lime-green slutty fishnet bikini made for sexual encounters, openly showing off the nude form.'
  29. if ARGS[1] = 24:$RESULT = 'A semi-transparent slutty white bikini, the top designed as a tube top.'
  30. if ARGS[1] = 25:$RESULT = 'A slutty pink fishnet bikini outlined in black, the top designed as at tube top.'
  31. if ARGS[1] = 26:$RESULT = 'A whorish two-piece that can barely be called clothes, with tiny little pink bows covering the nipples and a little triangle covering the entrance.'
  32. if ARGS[1] = 27:$RESULT = 'A two-piece black leather design, the top made as a halter top with a mesh design.'
  33. if ARGS[1] = 28:$RESULT = 'A slutty striped bikini, switching in between cyan blue and a semi transparent mesh.'
  34. if ARGS[1] = 29:$RESULT = 'A sexual bikini covering the made minimum assets in hot pink and neon black.'
  35. if ARGS[1] = 30:$RESULT = 'A bikini made for a whore, with a silver triangular design where the top of the triangle barely covers the nipple of the breast.'
  36. elseif $ARGS[0] = 'coat':
  37. if ARGS[1] = 1:$RESULT = 'A light jacket.'
  38. if ARGS[1] = 2:$RESULT = 'A shiny leather jacket.'
  39. if ARGS[1] = 3:$RESULT = 'A stylish fur vest of a coat.'
  40. if ARGS[1] = 4:$RESULT = 'A wool lined red coat.'
  41. if ARGS[1] = 5:$RESULT = 'A cheap kids coat.'
  42. if ARGS[1] = 6:$RESULT = 'A sleek warm coat.'
  43. if ARGS[1] = 7:$RESULT = 'A big warm coat.'
  44. if ARGS[1] = 8:$RESULT = 'A classic raincoat.'
  45. if ARGS[1] = 9:$RESULT = 'A full-length winter jacket.'
  46. if ARGS[1] = 10:$RESULT = 'A modern winter coat.'
  47. if ARGS[1] = 11:$RESULT = 'A high fashion coat.'
  48. if ARGS[1] = 12:$RESULT = 'A bright warm coat.'
  49. end
  50. --- $clothing_name ---------------------------------