_clothing_image 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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/clothing/1cheap/cheap<<ARGS[1]>>.jpg'
  7. elseif $ARGS[0] = 'average':
  8. $RESULT = 'images/clothing/2average/average<<ARGS[1]>>.jpg'
  9. elseif $ARGS[0] = 'expensive':
  10. $RESULT = 'images/clothing/3expensive/expensive<<ARGS[1]>>.jpg'
  11. elseif $ARGS[0] = 'formal':
  12. $RESULT = 'images/clothing/4formal/formal<<ARGS[1]>>.jpg'
  13. elseif $ARGS[0] = 'office':
  14. $RESULT = 'images/clothing/5office/office<<ARGS[1]>>.jpg'
  15. elseif $ARGS[0] = 'school':
  16. $RESULT = 'images/clothing/6school/school<<ARGS[1]>>.jpg'
  17. elseif $ARGS[0] = 'exercise':
  18. $RESULT = 'images/clothing/7exercise/exercise<<ARGS[1]>>.jpg'
  19. elseif $ARGS[0] = 'naughty':
  20. $RESULT = 'images/clothing/8naughty/naughty<<ARGS[1]>>.jpg'
  21. elseif $ARGS[0] = 'exhibit':
  22. $RESULT = 'images/clothing/9exhibit/exhibit<<ARGS[1]>>.jpg'
  23. elseif $ARGS[0] = 'uniform':
  24. $RESULT = 'images/clothing/10uniform/uniform<<ARGS[1]>>.jpg'
  25. elseif $ARGS[0] = 'coat':
  26. $RESULT = 'images/clothing/11coat/coat<<ARGS[1]>>.jpg'
  27. elseif $ARGS[0] = 'swimwear':
  28. $RESULT = 'images/clothing/12swimwear/swimwear<<ARGS[1]>>.jpg'
  29. end
  30. --- $clothing_image ---------------------------------