shop_fancy_pancy.qsrc 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # shop_fancy_pancy
  2. !!2021/04/15
  3. if $ARGS[0] = 'start':
  4. $loc_arg = $ARGS[0]
  5. $loc = 'shop_fancy_pancy'
  6. $location_type = 'public_indoors'
  7. $menu_loc = 'shop_fancy_pancy'
  8. $menu_arg = 'start'
  9. menu_off = 0
  10. *clr & cla
  11. mag = 1
  12. gs 'stat'
  13. gs 'themes', 'indoors'
  14. '<center><b><font color="maroon">Fancy Pancy</font></b></center>'
  15. '<center><img <<$set_imgh>> src="images/locations/pushkin/fancypancy/shop_name.png"></center>'
  16. *nl
  17. 'This small boutique shop looks more like a dressing room at the burlesque club nearby. Satin, leather, ruffles and glamour make it clear this is not a place to buy a practical outfit. It is the only place to buy outfits suitable for the burlesque club or perhaps spice up things in the bedroom.'
  18. *nl
  19. 'The boutique sells designer winter coats, burlesque clothing, beautiful shoes and exquisite handbags.'
  20. act 'Leave the boutique': minut += 3 & gt 'liames'
  21. act 'View clothing': minut += 5 & gt 'shop_fancy_pancy', 'clothes'
  22. end
  23. if $ARGS[0] = 'clothes':
  24. $loc_arg = 'clothes'
  25. $loc = 'shop_fancy_pancy'
  26. $menu_loc = 'shop_fancy_pancy'
  27. $menu_arg = 'clothes'
  28. menu_off = 0
  29. *clr & cla
  30. gs'stat'
  31. '<center><b><font color="maroon">Viewing Fancy Pancy outfits</font></b></center>'
  32. *nl
  33. gs 'clothing_QV', 'shop_header'
  34. act 'Return': minut += 1 & gt 'shop_fancy_pancy', 'start'
  35. clothingfilter['qualitycheck'] = 7
  36. :loopquality
  37. if Clothingstock > 11:
  38. i = 1
  39. else
  40. i = 2
  41. end
  42. :loopfancy_burlesque
  43. if fancy_burlesque[i] = 0:
  44. gs 'clothing_attributes', 'fancy_burlesque', i
  45. gs 'clothing_QV', 'shop_filter'
  46. if clothingfilter['quality'] = 0 or clothingfilter['qualitycheck'] = CloQuality:
  47. if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''shop_fancy_pancy'', ''fancy_burlesque''"><img src="images/pc/items/fancy/burlesque/<<i>>.jpg" height="250" /></a>'
  48. end
  49. end
  50. i += 2
  51. if i <= 22:jump 'loopfancy_burlesque'
  52. if clothingfilter['quality'] = 1 and clothingfilter['qualitycheck'] > 0: clothingfilter['qualitycheck'] -=1 & jump 'loopquality'
  53. end
  54. if $ARGS[0] = 'fancy_burlesque':
  55. cla
  56. menu_off = 1
  57. if fancy_burlesque[i] ! 0:
  58. msg 'You already own these clothes.'
  59. gt 'shop_fancy_pancy', 'clothes'
  60. end
  61. gt 'clothing', 'view_clothing_item', 'shop', 'fancy_burlesque',i, 20000
  62. end
  63. --- shop_fancy_pancy ---------------------------------