_attributes_danilovich_coats.qsrc 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # $attributes_danilovich_coats
  2. !2020/12/28
  3. !Price ranges from 3 to 6, please avoid adding too many 5s and 6s
  4. if ARGS[1] = 1:
  5. CoatQuality = 5
  6. CoatWarm = 2
  7. $coat_description = 'Moderate: A light sports coat that offers decent insulation.'
  8. elseif ARGS[1] = 2:
  9. CoatQuality = 6
  10. CoatWarm = 3
  11. $coat_description = 'Great: A light sports coat that offers great insulation.'
  12. elseif ARGS[1] = 3:
  13. CoatQuality = 5
  14. CoatWarm = 3
  15. $coat_description = 'Great: A sports coat that offers great insulation.'
  16. elseif ARGS[1] = 4:
  17. CoatQuality = 4
  18. CoatWarm = 1
  19. $coat_description = 'Low: A stylish sports coat that is both water- and wind-resistant.'
  20. elseif ARGS[1] = 5:
  21. CoatQuality = 5
  22. CoatWarm = 1
  23. $coat_description = 'Low: A sports coat designed for runners.'
  24. elseif ARGS[1] = 6:
  25. CoatQuality = 5
  26. CoatWarm = 2
  27. $coat_description = 'Moderate: A winter sports coat.'
  28. elseif ARGS[1] = 7:
  29. CoatQuality = 4
  30. CoatWarm = 1
  31. $coat_description = 'Low: A light sports coat that is both water- and wind-resistant.'
  32. elseif ARGS[1] = 8:
  33. CoatQuality = 5
  34. CoatWarm = 1
  35. $coat_description = 'Low: A water- and wind-resistant sports coat in the color rose.'
  36. elseif ARGS[1] = 9:
  37. CoatQuality = 5
  38. CoatWarm = 3
  39. $coat_description = 'Great: A very decent quality, ivory coloured sports coat.'
  40. elseif ARGS[1] = 10:
  41. CoatQuality = 5
  42. CoatWarm = 3
  43. $coat_description = 'Great: A great quality winter sports coat in the color resin gold.'
  44. elseif ARGS[1] = 11:
  45. CoatQuality = 4
  46. CoatWarm = 1
  47. $coat_description = 'Low: A light sports jacket designed for hiking in the color of ballet slipper.'
  48. elseif ARGS[1] = 12:
  49. CoatQuality = 5
  50. CoatWarm = 1
  51. $coat_description = 'Low: A thin and trendy sports coat in stripe prints.'
  52. elseif ARGS[1] = 13:
  53. CoatQuality = 6
  54. CoatWarm = 3
  55. $coat_description = 'Great: A thick sports coat in the color black.'
  56. elseif ARGS[1] = 14:
  57. CoatQuality = 5
  58. CoatWarm = 1
  59. $coat_description = 'Low: A thin and trendy sports coat in the color off-white.'
  60. elseif ARGS[1] = 15:
  61. CoatQuality = 5
  62. CoatWarm = 3
  63. $coat_description = 'Great: A inner wind proof winter sports jacket in rose color.'
  64. elseif ARGS[1] = 16:
  65. CoatQuality = 4
  66. CoatWarm = 2
  67. $coat_description = 'Moderate: A sports jacket for running in the color celery.'
  68. elseif ARGS[1] = 17:
  69. CoatQuality = 3
  70. CoatWarm = 1
  71. $coat_description = 'Low: A multicolor runner''s sports coat.'
  72. elseif ARGS[1] = 18:
  73. CoatQuality = 4
  74. CoatWarm = 2
  75. $coat_description = 'Moderate: A waterproof running jacket in the color Maya.'
  76. elseif ARGS[1] = 19:
  77. CoatQuality = 4
  78. CoatWarm = 1
  79. $coat_description = 'Low: A waterproof and windproof sports coat with multicolor dotted print.'
  80. elseif ARGS[1] = 20:
  81. CoatQuality = 4
  82. CoatWarm = 1
  83. $coat_description = 'Low: A waterproof and windproof sports coat in the color black.'
  84. end
  85. --- $attributes_danilovich_coats ---------------------------------