1
0

_clothing_image 1.2 KB

123456789101112131415161718192021222324
  1. # $clothing_image
  2. !! get the image for clothing
  3. !! ARGS 0 - clothing group name
  4. !! ARGS 1 - clothing index
  5. if $ARGS[0] = 'vatnik':$RESULT = 'images/clothes/vatnik.jpg'
  6. if $ARGS[0] = 'sforma':$RESULT = 'images/clothes/newclo/131.jpg'
  7. if $ARGS[0] = 'jeans':$RESULT = 'images/clothes/jeans<<ARGS[1]>>.jpg'
  8. if $ARGS[0] = 'yoga':$RESULT = 'images/clothes/yoga<<ARGS[1]>>.jpg'
  9. if $ARGS[0] = 'sarafan':$RESULT = 'images/clothes/sarafan<<ARGS[1]>>.jpg'
  10. if $ARGS[0] = 'short':$RESULT = 'images/clothes/short<<ARGS[1]>>.jpg'
  11. if $ARGS[0] = 'skirt':$RESULT = 'images/clothes/skirt<<ARGS[1]>>.jpg'
  12. if $ARGS[0] = 'dress':$RESULT = 'images/clothes/dress<<ARGS[1]>>.jpg'
  13. if $ARGS[0] = 'profi':$RESULT = 'images/clothes/profi<<ARGS[1]>>.jpg'
  14. if $ARGS[0] = 'pants':$RESULT = 'images/clothes/pants<<ARGS[1]>>.jpg'
  15. if $ARGS[0] = 'latex':$RESULT = 'images/clothes/latex<<ARGS[1]>>.jpg'
  16. if $ARGS[0] = 'hooker':$RESULT = 'images/clothes/hooker<<ARGS[1]>>.jpg'
  17. if $ARGS[0] = 'odekis':$RESULT = 'images/clothes/k<<ARGS[1]>>.jpg'
  18. if $ARGS[0] = 'newclo':$RESULT = 'images/clothes/newclo/<<ARGS[1]>>.jpg'
  19. if $ARGS[0] = 'ero':$RESULT = 'images/img/dress/ero<<ARGS[1]>>.jpg'
  20. end
  21. --- $clothing_image ---------------------------------