shoe_description2.qsrc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # shoe_description2
  2. $description = ''
  3. if ShoQuality = 1:
  4. $description = 'This is a crappy cheap '
  5. elseif ShoQuality = 2:
  6. $description = 'This is a low quality '
  7. elseif ShoQuality = 3:
  8. $description = 'This is an average quality '
  9. elseif ShoQuality = 4:
  10. $description = 'This is a reasonable quality '
  11. elseif ShoQuality = 5:
  12. $description = 'This is a high quality '
  13. elseif ShoQuality = 6:
  14. $description = 'This is a very well made '
  15. elseif ShoQuality = 7:
  16. $description = 'This is a beautifully made '
  17. end
  18. if $ARGS[0] = 'danilovich':
  19. $description += 'training shoe.'
  20. else
  21. if ShoHeels = 1:
  22. $description += 'flat '
  23. elseif ShoHeels = 2:
  24. $description += 'low heel '
  25. elseif ShoHeels = 3:
  26. $description += 'mid heel '
  27. elseif ShoHeels = 4:
  28. $description += 'high heel '
  29. elseif ShoHeels = 5:
  30. $description += 'ultra high heel '
  31. elseif ShoHeels = 6:
  32. $description += 'fetish heel '
  33. end
  34. if ShoCut = 1:
  35. $description += 'shoe.'
  36. elseif ShoCut = 2:
  37. $description += 'ankle boot.'
  38. elseif ShoCut = 3:
  39. $description += 'calf high boot.'
  40. elseif ShoCut = 4:
  41. $description += 'knee high boot.'
  42. elseif ShoCut = 5:
  43. $description += 'thigh high boot.'
  44. elseif ShoCut = 6:
  45. $description += 'groin high boot.'
  46. end
  47. end
  48. *nl
  49. if ShoStlye = 1:
  50. 'These shoes are considered stripper shoes.'
  51. elseif ShoStlye = 2:
  52. 'These shoes are considered bimbo shoes.'
  53. elseif ShoStlye = 3:
  54. 'These shoes are considered alternative shoes.'
  55. end
  56. --- shoe_description2 ---------------------------------