1
0

_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 ---------------------------------