coat_attributes.qsrc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # coat_attributes
  2. !! **Coat Variables
  3. !!
  4. !! CoatQuality = 1-6 scale, based on the general expensiveness of the coat. Higher is more expensive.
  5. !! Ex: 6-5 are the higher and lower levels of the expensive category
  6. !! 4-3 are the same for average category
  7. !! 2-1 are the same for cheap category.
  8. !! CoatWarm = 1-3 scale, with higher values being warmer.
  9. !! 1 is thin or small enough that is provides minimal warmth, a summer coat
  10. !! 2 is warm enough for most conditions but not suited to deep winter
  11. !! 1 is a full winter coat and will keep you warm even when really cold out
  12. CoatQuality = 0
  13. CoatWarm = 0
  14. $coat_description = ''
  15. if $ARGS[0] = 'gm':
  16. *P FUNC('$attributes_gm_coats', $ARGS[0], ARGS[1])
  17. elseif $ARGS[0] = 'cats':
  18. *P FUNC('$attributes_cats_coats', $ARGS[0], ARGS[1])
  19. elseif $ARGS[0] = 'moncheri':
  20. *P FUNC('$attributes_moncheri_coats', $ARGS[0], ARGS[1])
  21. elseif $ARGS[0] = 'danilovich':
  22. *P FUNC('$attributes_danilovich_coats', $ARGS[0], ARGS[1])
  23. elseif $ARGS[0] = 'dolls':
  24. *P FUNC('$attributes_dolls_coats', $ARGS[0], ARGS[1])
  25. elseif $ARGS[0] = 'bomba':
  26. *P FUNC('$attributes_bomba_coats', $ARGS[0], ARGS[1])
  27. end
  28. --- coat_attributes ---------------------------------