_clothing_image.qsrc 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # $clothing_image
  2. !! get the image for clothing
  3. !! ARGS 0 - clothing group name
  4. !! ARGS 1 - clothing index
  5. if $ARGS[0] = 'cheap':
  6. $RESULT = 'images/pc/clothing/1cheap/<<ARGS[1]>>.jpg'
  7. elseif $ARGS[0] = 'average':
  8. $RESULT = 'images/pc/clothing/2average/<<ARGS[1]>>.jpg'
  9. elseif $ARGS[0] = 'expensive':
  10. $RESULT = 'images/pc/clothing/3expensive/<<ARGS[1]>>.jpg'
  11. elseif $ARGS[0] = 'formal':
  12. $RESULT = 'images/pc/clothing/4formal/<<ARGS[1]>>.jpg'
  13. elseif $ARGS[0] = 'office':
  14. $RESULT = 'images/pc/clothing/5office/<<ARGS[1]>>.jpg'
  15. elseif $ARGS[0] = 'school':
  16. $RESULT = 'images/pc/clothing/6school/<<ARGS[1]>>.jpg'
  17. elseif $ARGS[0] = 'exercise':
  18. $RESULT = 'images/pc/clothing/7exercise/<<ARGS[1]>>.jpg'
  19. elseif $ARGS[0] = 'fetish':
  20. $RESULT = 'images/pc/clothing/8fetish/<<ARGS[1]>>.jpg'
  21. elseif $ARGS[0] = 'exhibit':
  22. $RESULT = 'images/pc/clothing/9exhibit/<<ARGS[1]>>.jpg'
  23. elseif $ARGS[0] = 'uniform':
  24. $RESULT = 'images/pc/clothing/10uniform/<<ARGS[1]>>.jpg'
  25. elseif $ARGS[0] = 'coat':
  26. $RESULT = 'images/pc/clothing/11coat/<<ARGS[1]>>.jpg'
  27. elseif $ARGS[0] = 'swimwear':
  28. $RESULT = 'images/pc/clothing/12swimwear/<<ARGS[1]>>.jpg'
  29. elseif $ARGS[0] = 'burlesque':
  30. $RESULT = 'images/pc/clothing/13burlesque/<<ARGS[1]>>.jpg'
  31. elseif $ARGS[0] = 'alternative':
  32. $RESULT = 'images/pc/clothing/14alternative/<<ARGS[1]>>.jpg'
  33. elseif $ARGS[0] = 'beach':
  34. $RESULT = 'images/pc/clothing/15beachbabe/<<ARGS[1]>>.jpg'
  35. end
  36. --- $clothing_image ---------------------------------