home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 125 / DPPCZ0203B.7z / DPPCZ0203B.ISO / Demos / Neverwinter / data1.cab / override / nw_t1_elecstrc.nss < prev    next >
Text File  |  2002-09-10  |  641b  |  22 lines

  1. //::///////////////////////////////////////////////
  2. //:: Electrical Trap
  3. //:: NW_T1_ElecStrC.nss
  4. //:: Copyright (c) 2001 Bioware Corp.
  5. //:://////////////////////////////////////////////
  6. /*
  7.     The creature setting off the trap is struck by
  8.     a strong electrical current that arcs to 5 other
  9.     targets doing 20d6 damage.  Can make a Reflex
  10.     save for half damage.
  11. */
  12. //:://////////////////////////////////////////////
  13. //:: Created By: Preston Watamaniuk
  14. //:: Created On: July 30, 2001
  15. //:://////////////////////////////////////////////
  16. #include "NW_I0_SPELLS"
  17.  
  18. void main()
  19. {
  20.  TrapDoElectricalDamage(d6(20),26,5);
  21. }
  22.