scripts.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /// <reference path="../../npcs/_system/NPCAccessor.ts" />
  2. /// <reference path="../../playerCharacter/_submodules/mood/moodlet.ts" />
  3. setup.npcs.abduction_master = {
  4. firstname:'Miroslav',
  5. lastname:'Nosov',
  6. usedname:'Your Captor',
  7. image:'locations/shared/abduction/abductor_profile.webp',
  8. gender:EGender.MALE,
  9. thdick:'thicker than average',
  10. dick:17,
  11. rel: 0,
  12. preference:{
  13. },
  14. defaults:['defaults'],
  15. }
  16. setup.moodlets.abducted=new Moodlet({
  17. title: "Abducted",
  18. description:'You have been abducted.',
  19. groupId:'victim',
  20. effect: -30,
  21. timeMode: 2,
  22. });
  23. setup.moodlets.assaulted=new Moodlet({
  24. title: "Sexually Assaulted",
  25. description:'Somebody has touched your privates without your consent.',
  26. groupId:'victim',
  27. effect: -50,
  28. timeMode: 1,
  29. duration: 1440
  30. });
  31. setup.moodlets.rape=new Moodlet({
  32. title: "Rape",
  33. description:'Somebody has penetrated you without your consent. To overcome this traumatic experience you will need to either forgive your rapist or see a psychologist.',
  34. groupId:'victim',
  35. effect: -80,
  36. timeMode: 2
  37. });