mod_extended_succubus_pav_lair_entrance.qsrc 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # mod_extended_succubus_pav_lair_entrance
  2. if $ARGS[0] = 'start':
  3. 'You observe the small coin encased in the rock.'
  4. *nl
  5. 'The creature carved on it seems ' + iif(succubusflag, 'appealing and familiar', 'scary and dangerous') + '.'
  6. *nl
  7. '<center><img <<$set_imgh>> src="mod\extended_succubus\images\locations\pavlovsk\park\deep\succubus_carving.jpg"></center>'
  8. act 'Touch the coin': gt 'mod_extended_succubus_pav_lair_entrance', 'touch'
  9. elseif $ARGS[0] = 'touch':
  10. if succubusflag:
  11. 'As you touch the coin, you see the rock wall opening itself, like a mouth.'
  12. *nl
  13. 'You smile, not remotely afraid from what you''re seeing.'
  14. *nl
  15. '<center><img <<$set_imgh>> src="mod\extended_succubus\images\locations\pavlovsk\park\deep\lair_entrance.jpg"></center>'
  16. if ExtSucMod['hasfoundlair'] = 0:
  17. $cave_destination = 'mod_extended_succubus_pav_lair_first_time'
  18. else
  19. $cave_destination = 'mod_extended_succubus_pav_lair'
  20. end
  21. act 'Get in the cave':gt $cave_destination
  22. else
  23. 'You''re wondering if you''ve found something magical and eager to try your discovery, you softly touch the coin.'
  24. *nl
  25. 'Suddenly, well... nothing happens...'
  26. *nl
  27. '<center><img <<$set_imgh>> src="mod\extended_succubus\images\locations\misc\shrugging_woman.jpg"></center>'
  28. end
  29. end
  30. act 'Leave':gt 'pav_park', 'deeper_park'
  31. --- mod_extended_succubus_pav_lair_entrance ---------------------------------