_clothing_image 1.1 KB

123456789101112131415161718192021
  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':$RESULT = 'images/Clothing/1cheap/Cheap<<ARGS[1]>>.jpg'
  6. if $ARGS[0] = 'average':$RESULT = 'images/Clothing/2average/Average<<ARGS[1]>>.jpg'
  7. if $ARGS[0] = 'expensive':$RESULT = 'images/Clothing/3expensive/Expensive<<ARGS[1]>>.jpg'
  8. if $ARGS[0] = 'formal':$RESULT = 'images/Clothing/4formal/Formal<<ARGS[1]>>.jpg'
  9. if $ARGS[0] = 'office':$RESULT = 'images/Clothing/5office/Office<<ARGS[1]>>.jpg'
  10. if $ARGS[0] = 'school':$RESULT = 'images/Clothing/6school/School<<ARGS[1]>>.jpg'
  11. if $ARGS[0] = 'exercise':$RESULT = 'images/Clothing/7exercise/Exercise<<ARGS[1]>>.jpg'
  12. if $ARGS[0] = 'naughty':$RESULT = 'images/Clothing/8naughty/Naughty<<ARGS[1]>>.jpg'
  13. if $ARGS[0] = 'exhibit':$RESULT = 'images/Clothing/9exhibit/Exhibit<<ARGS[1]>>.jpg'
  14. if $ARGS[0] = 'uniform':$RESULT = 'images/Clothing/10uniform/Uniform<<ARGS[1]>>.jpg'
  15. if $ARGS[0] = 'coat':$RESULT = 'images/Clothing/11coat/Coat<<ARGS[1]>>.jpg'
  16. if $ARGS[0] = 'swimwear':$RESULT = 'images/Clothing/12swimwear/Swimwear<<ARGS[1]>>.jpg'
  17. end
  18. --- $clothing_image ---------------------------------