123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- # shoe_description2
- $description = ''
- if ShoQuality = 1:
- $description = 'This is a crappy cheap '
- elseif ShoQuality = 2:
- $description = 'This is a low quality '
- elseif ShoQuality = 3:
- $description = 'This is an average quality '
- elseif ShoQuality = 4:
- $description = 'This is a reasonable quality '
- elseif ShoQuality = 5:
- $description = 'This is a high quality '
- elseif ShoQuality = 6:
- $description = 'This is a very well made '
- elseif ShoQuality = 7:
- $description = 'This is a beautifully made '
- end
- if $ARGS[0] = 'danilovich':
- $description += 'training shoe.'
- else
- if ShoHeels = 1:
- $description += 'flat '
- elseif ShoHeels = 2:
- $description += 'low heel '
- elseif ShoHeels = 3:
- $description += 'mid heel '
- elseif ShoHeels = 4:
- $description += 'high heel '
- elseif ShoHeels = 5:
- $description += 'ultra high heel '
- elseif ShoHeels = 6:
- $description += 'fetish heel '
- end
- if ShoCut = 1:
- $description += 'shoe.'
- elseif ShoCut = 2:
- $description += 'ankle boot.'
- elseif ShoCut = 3:
- $description += 'calf high boot.'
- elseif ShoCut = 4:
- $description += 'knee high boot.'
- elseif ShoCut = 5:
- $description += 'thigh high boot.'
- elseif ShoCut = 6:
- $description += 'groin high boot.'
- end
- end
- *nl
- if ShoStlye = 1:
- 'These shoes are considered stripper shoes.'
- elseif ShoStlye = 2:
- 'These shoes are considered bimbo shoes.'
- elseif ShoStlye = 3:
- 'These shoes are considered alternative shoes.'
- end
- --- shoe_description2 ---------------------------------
|