_shoe_description.qsrc 603 B

12345678910111213141516171819202122
  1. # $shoe_description
  2. if $ARGS[0] = 'moncheri':
  3. $RESULT = 'Mon Chéri shoe number '
  4. elseif $ARGS[0] = 'cats':
  5. $RESULT = 'Pussy Cats shoe number '
  6. elseif $ARGS[0] = 'bomba':
  7. $RESULT = 'Tsar Bomba shoe number '
  8. elseif $ARGS[0] = 'dolls':
  9. $RESULT = 'Patchwork Dolls shoe number '
  10. elseif $ARGS[0] = 'eroto':
  11. $RESULT = 'Erotomaniac shoe number '
  12. elseif $ARGS[0] = 'scandalicious':
  13. $RESULT = 'Scandalicious shoe number '
  14. elseif $ARGS[0] = 'gm':
  15. $RESULT = 'G&M shoe number '
  16. elseif $ARGS[0] = 'danilovich':
  17. $RESULT = 'Training shoe number '
  18. end
  19. --- $shoe_description ---------------------------------