brothel.ts 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /// <reference path="../../../items/consumables/consumableMenus.ts" />
  2. /// <reference path="../../../npcs/_system/NPCAccessor.ts" />
  3. setup.consumableMenus.brothel = {
  4. payment:'both',
  5. categories:{
  6. drinks:{
  7. label:'Drinks',
  8. items:{
  9. bev_bla:{price: (n)=>n/2},
  10. bev_vod:{price: (n)=>n/2},
  11. bev_bee:{price: (n)=>n/2},
  12. beer_wheat:{price: (n)=>n/2},
  13. bev_win:{},
  14. bev_wat:{price: 200}
  15. }
  16. },
  17. snacks:{
  18. label:'Snacks',
  19. items:{
  20. ryesna:{price: 30}
  21. }
  22. },
  23. }
  24. };
  25. setup.npcs["brothel_bar"] = {
  26. firstname:'Mirchik',
  27. lastname:'Zhukov',
  28. usedname:'The barman',
  29. notes:'The barman of the hotel near the main road of Pavlovsk',
  30. hotcat_rating:6,
  31. intel:60,
  32. defaults:['defaults'],
  33. //nameknown: false,
  34. rel: 50,
  35. image: 'locations/shared/brothel/barman.jpg',
  36. gender:EGender.MALE
  37. }
  38. setup.npcs["brothel_rec"] = {
  39. firstname:'Nikolai',
  40. lastname:'Zhukov',
  41. usedname:'Receptionist',
  42. notes:'',
  43. hotcat_rating:4,
  44. intel:70,
  45. defaults:['defaults'],
  46. //nameknown: false,
  47. rel: 50,
  48. image: 'locations/shared/brothel/receptionist.jpg',
  49. gender:0
  50. }
  51. setup.npcs["brothel_sec"] = {
  52. firstname:'Kristian',
  53. lastname:'Chomski',
  54. usedname:'Bouncer',
  55. notes:'',
  56. hotcat_rating:9,
  57. intel:60,
  58. defaults:['defaults'],
  59. //nameknown: false,
  60. rel: 50,
  61. image: 'locations/shared/brothel/bouncer.jpg',
  62. gender:0
  63. }